blob: 5b59f8154c38424b32772ac8f0f111ecb769acb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#include "displayMgrSDI.h"
#include <tqwidget.h>
DisplayMgrSDI::DisplayMgrSDI()
{
}
DisplayMgrSDI::~DisplayMgrSDI(){
}
void DisplayMgrSDI::newTopLevel(TQWidget *w, bool show){
if(show == TRUE)
w->show();
}
void DisplayMgrSDI::removeTopLevel(TQWidget *){
}
void DisplayMgrSDI::show(TQWidget *w){
w->show();
}
void DisplayMgrSDI::hide(TQWidget *w){
w->hide();
}
void DisplayMgrSDI::raise(TQWidget *w, bool takefocus){
w->show();
w->raise();
if(takefocus)
w->setActiveWindow();
}
void DisplayMgrSDI::setCaption(TQWidget *w, const TQString& cap){
w->setCaption(cap);
}
|