summaryrefslogtreecommitdiffstats
path: root/kommander/widget/kmdrmainwindow.h
blob: 91be985d43d75187901cdf981bb17968b741f906 (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
38
//
// 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 <tdemainwindow.h>

/**
	@author Andras Mantia <amantia@kdewebdev.org>
*/
class KmdrMainWindow : public TDEMainWindow
{
Q_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