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/kmfnewdocdlg.h

54 lines
1.5 KiB

/***************************************************************************
begin : Thu Apr 17 2003
copyright : (C) 2003 by Christian Hubinger
email : chubinger@irrsinnig.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef KMFNEWDOCDLG_H
#define KMFNEWDOCDLG_H
#include <tqwidget.h>
#include <kdemacros.h>
#include "kmyfirewallnewdocument.h"
/**
*@author Christian Hubinger
*/
class TQKeyEvent;
namespace KMF {
class TDE_EXPORT KMFNewDocDlg : public KMyFirewallNewDocument {
TQ_OBJECT
public:
KMFNewDocDlg(TQWidget *parent=0, const char *name=0, WFlags fl = 0);
~KMFNewDocDlg();
private slots:
void reject();
void loadEmpty();
void loadWizard();
void loadTemplate();
void loadSaved();
void slotHelp();
signals:
void sigNewDocLoadWizard();
void sigNewDocLoadTemplate();
void sigNewDocLoadSaved();
void sigNewDocLoadEmpty();
};
}
#endif