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.
|
|
|
//
|
|
|
|
// C++ Interface: KmdrMainWindow
|
|
|
|
//
|
|
|
|
// Description:
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// Author: Andras Mantia <amantia@kdewebdev.org>, (C) 2008
|
|
|
|
//
|
|
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
|
|
//
|
|
|
|
//
|
|
|
|
#ifndef KmdrMainWindow_H
|
|
|
|
#define KmdrMainWindow_H
|
|
|
|
|
|
|
|
#include <kmainwindow.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
@author Andras Mantia <amantia@kdewebdev.org>
|
|
|
|
*/
|
|
|
|
class KmdrMainWindow : public KMainWindow
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
|
|
KmdrMainWindow(TQWidget *parent = 0, const char *name = 0, WFlags f = WType_TopLevel | WDestructiveClose);
|
|
|
|
|
|
|
|
~KmdrMainWindow();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual bool queryClose();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void initialize();
|
|
|
|
void destroy();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|