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/dccToplevel.cpp

50 lines
1.1 KiB

#include <tqvbox.h>
#include <tqpopupmenu.h>
#include <tdeaction.h>
#include <kstdaction.h>
#include <tdelocale.h>
#include <tdemenubar.h>
#include "dccManager.h"
#include "dccToplevel.h"
#include "displayMgr.h"
extern DisplayMgr *displayMgr;
#define DTL_WINDOW_ID 10
dccTopLevel::dccTopLevel(TQWidget *parent, const char *name)
: TDEMainWindow(parent, name, TQt::WDestructiveClose)
{
m_mgr = new dccManager(this, TQCString(TQT_TQOBJECT(this)->name()) + "_dccManager");
// m_mgr->show();
setCentralWidget(m_mgr);
connect(m_mgr, TQT_SIGNAL(changed(bool, TQString)), this, TQT_SIGNAL(changed(bool, TQString)));
TQPopupMenu *win = new TQPopupMenu(this, TQCString(TQT_TQOBJECT(this)->name()) + "_popup_window");
TDEAction *act = KStdAction::close(TQT_TQOBJECT(this), TQT_SLOT( close() ), actionCollection() );
act->plug(win);
menuBar()->insertItem(i18n("&File"), win, DTL_WINDOW_ID, -1);
menuBar()->setAccel(Key_F, DTL_WINDOW_ID);
}
dccTopLevel::~dccTopLevel()
{
}
void dccTopLevel::close()
{
displayMgr->hide(this);
}
#include "dccToplevel.moc"