diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2013-05-17 12:45:40 -0500 |
---|---|---|
committer | Darrell Anderson <humanreadable@yahoo.com> | 2013-05-17 12:45:40 -0500 |
commit | 359294c33620c8328d61f67635046d7cc060530c (patch) | |
tree | f2ac08fdad8860f7bc1ac76203e31013a799fda7 /tdelirc/kcmlirc/addaction.h | |
parent | 7be7990fc5770d2cbcd937772e8239167b5900c6 (diff) | |
download | tdeutils-359294c33620c8328d61f67635046d7cc060530c.tar.gz tdeutils-359294c33620c8328d61f67635046d7cc060530c.zip |
Rename kdessh -> tdessh and kdelirc -> tdelirc.
Diffstat (limited to 'tdelirc/kcmlirc/addaction.h')
-rw-r--r-- | tdelirc/kcmlirc/addaction.h | 74 |
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 |