21#ifndef MAINWINDOWBASE_H
22#define MAINWINDOWBASE_H
24#include <tdemainwindow.h>
34class MainWindowBase : public TDEMainWindow
40 explicit MainWindowBase(TQWidget* parent = 0, const char* name = 0, WFlags f = WType_TopLevel | WDestructiveClose)
41 : TDEMainWindow(parent, name, f), disableQuit( false) { }
44 virtual void closeEvent(TQCloseEvent*);
45 virtual bool queryExit();
|