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.
tdewebdev/kommander/widget/kmdrmainwindow.h

39 lines
637 B

//
// C++ Interface: KmdrMainWindow
//
// Description:
//
//
// Author: Andras Mantia <amantia@tdewebdev.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@tdewebdev.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