summaryrefslogtreecommitdiffstats
path: root/kmyfirewall/ruleoptionplugins/limit_option/kmfruleeditorlimit.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 01:04:17 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 01:04:17 +0000
commitc3b707c026782768bd8c0e6ae6b574fe8a36802d (patch)
tree5ca6782031b1546c788290cc0b95524369ff01ea /kmyfirewall/ruleoptionplugins/limit_option/kmfruleeditorlimit.h
downloadkmyfirewall-c3b707c026782768bd8c0e6ae6b574fe8a36802d.tar.gz
kmyfirewall-c3b707c026782768bd8c0e6ae6b574fe8a36802d.zip
Added old abandoned KDE3 version of kmyfirewall
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmyfirewall@1091559 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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