summaryrefslogtreecommitdiffstats
path: root/kdelirc/kdelirc/iractions.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdelirc/kdelirc/iractions.h')
-rw-r--r--kdelirc/kdelirc/iractions.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/kdelirc/kdelirc/iractions.h b/kdelirc/kdelirc/iractions.h
new file mode 100644
index 0000000..24174d9
--- /dev/null
+++ b/kdelirc/kdelirc/iractions.h
@@ -0,0 +1,52 @@
+//
+//
+// C++ Interface: $MODULE$
+//
+// Description:
+//
+//
+// Author: Gav Wood <gav@kde.org>, (C) 2003
+//
+// Copyright: See COPYING file that comes with this distribution
+//
+//
+#ifndef IRACTIONS_H
+#define IRACTIONS_H
+
+#include <qvaluelist.h>
+#include <qpair.h>
+#include <qstring.h>
+#include <qmap.h>
+
+#include "iraction.h"
+#include "mode.h"
+
+/**
+@author Gav Wood
+*/
+
+class KConfig;
+
+typedef QValueListIterator<IRAction> IRAIt;
+typedef QValueList<IRAIt> IRAItList;
+
+class IRActions: protected QValueList<IRAction>
+{
+private:
+ void purgeAllBindings(KConfig &theConfig);
+
+public:
+ IRAIt addAction(const IRAction &theAction);
+ IRAItList findByButton(const QString &remote, const QString &button);
+ IRAItList findByMode(const Mode &mode);
+ IRAItList findByModeButton(const Mode &mode, const QString &button);
+
+ void erase(const IRAIt &action) { QValueList<IRAction>::erase(action); }
+ void renameMode(const Mode &mode, const QString &to);
+
+ void loadFromConfig(KConfig &theConfig);
+ void saveToConfig(KConfig &theConfig);
+};
+
+
+#endif