blob: 059b514e1c859597a56ff3fc5979394fc4d744ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
//
// 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
public:
KmdrMainWindow(QWidget *parent = 0, const char *name = 0, WFlags f = WType_TopLevel | WDestructiveClose);
~KmdrMainWindow();
protected:
virtual bool queryClose();
signals:
void initialize();
void destroy();
};
#endif
|