summaryrefslogtreecommitdiffstats
path: root/kmyfirewall/ruleoptionplugins/limit_option/kmfruleeditorlimit.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmyfirewall/ruleoptionplugins/limit_option/kmfruleeditorlimit.h')
-rw-r--r--kmyfirewall/ruleoptionplugins/limit_option/kmfruleeditorlimit.h51
1 files changed, 51 insertions, 0 deletions
diff --git a/kmyfirewall/ruleoptionplugins/limit_option/kmfruleeditorlimit.h b/kmyfirewall/ruleoptionplugins/limit_option/kmfruleeditorlimit.h
new file mode 100644
index 0000000..27977bb
--- /dev/null
+++ b/kmyfirewall/ruleoptionplugins/limit_option/kmfruleeditorlimit.h
@@ -0,0 +1,51 @@
+/***************************************************************************
+ begin : Wed Mar 13 2002
+ copyright : (C) 2002 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 KMFRULEEDITORLIMIT_H
+#define KMFRULEEDITORLIMIT_H
+#include "kmyfirewallruleeditorlimit.h"
+
+#include <qwidget.h>
+
+/**
+ *@author Christian Hubinger
+ */
+ namespace KMF {
+class IPTRule;
+
+class KMFRuleEditorLimit : public KMyFirewallRuleEditorLimit {
+ Q_OBJECT
+public:
+ KMFRuleEditorLimit( QWidget *parent = 0, const char *name = 0, WFlags fl = 0 );
+ ~KMFRuleEditorLimit();
+
+ void loadRule( IPTRule* );
+
+public slots: // Public slots
+ void slotOk();
+ void readRuleConfig();
+ void slotHelp();
+ void reject();
+
+private:
+ IPTRule* m_rule;
+
+signals:
+/* void sigAddRuleOpt( QString*, QPtrList<QString>* );
+ void sigAddTargetOpt( QString*, QPtrList<QString>* );*/
+ void sigHideMe();
+};
+}
+#endif