You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdenetwork/ksirc/displayMgrSDI.cpp

41 lines
601 B

#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);
}