summaryrefslogtreecommitdiffstats
path: root/tdelirc/kcmlirc/addaction.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdelirc/kcmlirc/addaction.h')
-rw-r--r--tdelirc/kcmlirc/addaction.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/tdelirc/kcmlirc/addaction.h b/tdelirc/kcmlirc/addaction.h
new file mode 100644
index 0000000..3a3f22f
--- /dev/null
+++ b/tdelirc/kcmlirc/addaction.h
@@ -0,0 +1,74 @@
+/***************************************************************************
+ * Copyright (C) 2003 by Gav Wood *
+ * gav@kde.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 ADDACTION_H
+#define ADDACTION_H
+
+#include <tqvaluelist.h>
+#include <tqpair.h>
+
+#include <addactionbase.h>
+
+#include "mode.h"
+#include "arguments.h"
+
+/**
+@author Gav Wood
+*/
+
+class TQListViewItem;
+
+class AddAction : public AddActionBase
+{
+ Q_OBJECT
+
+
+ int curPage;
+ Mode theMode;
+
+public slots:
+ virtual void slotCorrectPage();
+ virtual void slotModeSelected();
+ virtual void slotNextParam();
+ virtual void slotParameterChanged();
+
+ // connected to KCMLirc class to receive DCOP calls to tell it what button has been pressed
+ virtual void updateForPageChange();
+ virtual void updateButton(const TQString &remote, const TQString &button);
+ virtual void updateButtons();
+ virtual void updateFunctions();
+ virtual void updateObjects();
+ virtual void updateButtonStates();
+ virtual void updateParameters();
+ virtual void updateParameter();
+ virtual void updateProfiles();
+ virtual void updateProfileFunctions();
+ virtual void updateOptions();
+
+public:
+ Arguments theArguments;
+ TQString program;
+ bool isUnique;
+
+ static const TQStringList getFunctions(const TQString app, const TQString obj);
+ void updateArgument(TQListViewItem *theItem);
+ void requestNextPress();
+ void cancelRequest();
+
+ TQMap<TQListViewItem *, TQString> profileMap;
+ TQMap<TQListViewItem *, TQString> profileFunctionMap;
+ TQMap<TQListViewItem *, TQString> buttonMap;
+ TQMap<TQListViewItem *, bool> uniqueProgramMap;
+ TQMap<TQListViewItem *, TQString> nameProgramMap;
+
+ AddAction(TQWidget *parent, const char *name, const Mode &mode);
+ ~AddAction();
+};
+
+#endif