summaryrefslogtreecommitdiffstats
path: root/kdelirc/kcmlirc/addaction.h
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-05-17 12:45:40 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2013-05-17 12:45:40 -0500
commit359294c33620c8328d61f67635046d7cc060530c (patch)
treef2ac08fdad8860f7bc1ac76203e31013a799fda7 /kdelirc/kcmlirc/addaction.h
parent7be7990fc5770d2cbcd937772e8239167b5900c6 (diff)
downloadtdeutils-359294c33620c8328d61f67635046d7cc060530c.tar.gz
tdeutils-359294c33620c8328d61f67635046d7cc060530c.zip
Rename kdessh -> tdessh and kdelirc -> tdelirc.
Diffstat (limited to 'kdelirc/kcmlirc/addaction.h')
-rw-r--r--kdelirc/kcmlirc/addaction.h74
1 files changed, 0 insertions, 74 deletions
diff --git a/kdelirc/kcmlirc/addaction.h b/kdelirc/kcmlirc/addaction.h
deleted file mode 100644
index 3a3f22f..0000000
--- a/kdelirc/kcmlirc/addaction.h
+++ /dev/null
@@ -1,74 +0,0 @@
-/***************************************************************************
- * 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