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.
kmyfirewall/kmyfirewall/kmfwidgets/kmfdocumentinfo.h

60 lines
934 B

//
// C++ Interface:
//
// Description:
//
//
// Author: Christian Hubinger <chubinger@irrsinnig.org>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
// License: GPL
//
#ifndef KMFDOCUMENTINFO_H
#define KMFDOCUMENTINFO_H
#include "kmyfirewalldocumentinfo.h"
// TQt includes
// KDE includes
#include <kdemacros.h>
// project includes
namespace KMF {
class KMFDoc;
class TDE_EXPORT KMFDocumentInfo : public KMyFirewallDocumentInfo {
TQ_OBJECT
public:
KMFDocumentInfo(TQWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
~KMFDocumentInfo();
/*$PUBLIC_FUNCTIONS$*/
void loadDoc( KMFDoc* );
public slots:
/*$PUBLIC_SLOTS$*/
protected:
/*$PROTECTED_FUNCTIONS$*/
protected slots:
/*$PROTECTED_SLOTS$*/
virtual void accept();
void slotSaveAsTemplate();
void slotHelp();
private: // data
KMFDoc *m_doc;
signals:
void sigSaveAsTemplate();
};
}
#endif