summaryrefslogtreecommitdiffstats
path: root/kdelirc/kcmlirc/addaction.h
blob: 821c6b561680306a974023e4645222242ac77ca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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 <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