Now the systrayicon change it's color when a download is in progress. I simply change...
[kdenetwork.git] / ksirc / displayMgrSDI.cpp
blobee5de75b9551534d7a9b1489847104a8456b96ed
1 #include "displayMgrSDI.h"
3 #include <qwidget.h>
5 DisplayMgrSDI::DisplayMgrSDI()
9 DisplayMgrSDI::~DisplayMgrSDI(){
12 void DisplayMgrSDI::newTopLevel(QWidget *w, bool show){
13 if(show == TRUE)
14 w->show();
17 void DisplayMgrSDI::removeTopLevel(QWidget *){
20 void DisplayMgrSDI::show(QWidget *w){
21 w->show();
24 void DisplayMgrSDI::hide(QWidget *w){
25 w->hide();
28 void DisplayMgrSDI::raise(QWidget *w, bool takefocus){
29 w->show();
30 w->raise();
31 if(takefocus)
32 w->setActiveWindow();
37 void DisplayMgrSDI::setCaption(QWidget *w, const QString& cap){
38 w->setCaption(cap);