diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 2bda8f7717adf28da4af0d34fb82f63d2868c31d (patch) | |
tree | 8d927b7b47a90c4adb646482a52613f58acd6f8c /kdelirc/kcmlirc/addaction.h | |
download | tdeutils-2bda8f7717adf28da4af0d34fb82f63d2868c31d.tar.gz tdeutils-2bda8f7717adf28da4af0d34fb82f63d2868c31d.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeutils@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kdelirc/kcmlirc/addaction.h')
-rw-r--r-- | kdelirc/kcmlirc/addaction.h | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/kdelirc/kcmlirc/addaction.h b/kdelirc/kcmlirc/addaction.h new file mode 100644 index 0000000..4d13659 --- /dev/null +++ b/kdelirc/kcmlirc/addaction.h @@ -0,0 +1,73 @@ +/*************************************************************************** + * 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 <qvaluelist.h> +#include <qpair.h> + +#include <addactionbase.h> + +#include "mode.h" +#include "arguments.h" + +/** +@author Gav Wood +*/ + +class QListViewItem; + +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 QString &remote, const QString &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; + QString program; + bool isUnique; + + static const QStringList getFunctions(const QString app, const QString obj); + void updateArgument(QListViewItem *theItem); + void requestNextPress(); + void cancelRequest(); + + QMap<QListViewItem *, QString> profileMap; + QMap<QListViewItem *, QString> profileFunctionMap; + QMap<QListViewItem *, QString> buttonMap; + QMap<QListViewItem *, bool> uniqueProgramMap; + QMap<QListViewItem *, QString> nameProgramMap; + + AddAction(QWidget *parent, const char *name, const Mode &mode); + ~AddAction(); +}; + +#endif |