blob: ee5de75b9551534d7a9b1489847104a8456b96ed (
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 <qwidget.h>
DisplayMgrSDI::DisplayMgrSDI()
{
}
DisplayMgrSDI::~DisplayMgrSDI(){
}
void DisplayMgrSDI::newTopLevel(QWidget *w, bool show){
if(show == TRUE)
w->show();
}
void DisplayMgrSDI::removeTopLevel(QWidget *){
}
void DisplayMgrSDI::show(QWidget *w){
w->show();
}
void DisplayMgrSDI::hide(QWidget *w){
w->hide();
}
void DisplayMgrSDI::raise(QWidget *w, bool takefocus){
w->show();
w->raise();
if(takefocus)
w->setActiveWindow();
}
void DisplayMgrSDI::setCaption(QWidget *w, const QString& cap){
w->setCaption(cap);
}
|