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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
|
/***************************************************************************
lirc-configuration.cpp - description
-------------------
begin : Sat May 21 2005
copyright : (C) 2005 by Martin Witte
email : witte@kawo1.rwth-aachen.de
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include <klistview.h>
#include <klocale.h>
#include <tqlistview.h>
#include <tqlabel.h>
#include "lirc-configuration.h"
#include "lircsupport.h"
#include "listviewitem_lirc.h"
LIRCConfiguration::LIRCConfiguration (TQWidget *tqparent, LircSupport *dev)
: LIRCConfigurationUI(tqparent),
m_LIRC (dev),
m_dirty(true),
m_ignore_gui_updates(false)
{
m_descriptions[LIRC_DIGIT_0] = i18n("digit 0");
m_descriptions[LIRC_DIGIT_1] = i18n("digit 1");
m_descriptions[LIRC_DIGIT_2] = i18n("digit 2");
m_descriptions[LIRC_DIGIT_3] = i18n("digit 3");
m_descriptions[LIRC_DIGIT_4] = i18n("digit 4");
m_descriptions[LIRC_DIGIT_5] = i18n("digit 5");
m_descriptions[LIRC_DIGIT_6] = i18n("digit 6");
m_descriptions[LIRC_DIGIT_7] = i18n("digit 7");
m_descriptions[LIRC_DIGIT_8] = i18n("digit 8");
m_descriptions[LIRC_DIGIT_9] = i18n("digit 9");
m_descriptions[LIRC_POWER_ON] = i18n("Power On");
m_descriptions[LIRC_POWER_OFF] = i18n("Power Off");
m_descriptions[LIRC_PAUSE] = i18n("Pause");
m_descriptions[LIRC_RECORD_START] = i18n("Start Recording");
m_descriptions[LIRC_RECORD_STOP] = i18n("Stop Recording");
m_descriptions[LIRC_VOLUME_INC] = i18n("Increase Volume");
m_descriptions[LIRC_VOLUME_DEC] = i18n("Decrease Volume");
m_descriptions[LIRC_CHANNEL_NEXT] = i18n("Next Channel");
m_descriptions[LIRC_CHANNEL_PREV] = i18n("Previous Channel");
m_descriptions[LIRC_SEARCH_NEXT] = i18n("Search Next Channel");
m_descriptions[LIRC_SEARCH_PREV] = i18n("Search Previous Channel");
m_descriptions[LIRC_SLEEP] = i18n("Enable Sleep Countdown");
m_descriptions[LIRC_APPLICATION_TQUIT] = i18n("Quit KRadio");
int k = 0;
m_order[k++] = LIRC_DIGIT_0;
m_order[k++] = LIRC_DIGIT_1;
m_order[k++] = LIRC_DIGIT_2;
m_order[k++] = LIRC_DIGIT_3;
m_order[k++] = LIRC_DIGIT_4;
m_order[k++] = LIRC_DIGIT_5;
m_order[k++] = LIRC_DIGIT_6;
m_order[k++] = LIRC_DIGIT_7;
m_order[k++] = LIRC_DIGIT_8;
m_order[k++] = LIRC_DIGIT_9;
m_order[k++] = LIRC_POWER_ON;
m_order[k++] = LIRC_POWER_OFF;
m_order[k++] = LIRC_PAUSE;
m_order[k++] = LIRC_RECORD_START;
m_order[k++] = LIRC_RECORD_STOP;
m_order[k++] = LIRC_VOLUME_INC;
m_order[k++] = LIRC_VOLUME_DEC;
m_order[k++] = LIRC_CHANNEL_NEXT;
m_order[k++] = LIRC_CHANNEL_PREV;
m_order[k++] = LIRC_SEARCH_NEXT;
m_order[k++] = LIRC_SEARCH_PREV;
m_order[k++] = LIRC_SLEEP;
m_order[k++] = LIRC_APPLICATION_TQUIT;
m_ActionList->setSorting(-1);
m_ActionList->setColumnWidthMode(0, TQListView::Maximum);
m_ActionList->setColumnWidthMode(1, TQListView::Maximum);
m_ActionList->setColumnWidthMode(2, TQListView::Maximum);
connect(m_ActionList, TQT_SIGNAL(itemRenamed(TQListViewItem*, int)), this, TQT_SLOT(slotSetDirty()));
slotCancel();
}
LIRCConfiguration::~LIRCConfiguration ()
{
}
void LIRCConfiguration::slotOK()
{
if (m_dirty && m_LIRC) {
TQListViewItem *item = m_ActionList->firstChild();
TQMap<LIRC_Actions, TQString> actions;
TQMap<LIRC_Actions, TQString> alt_actions;
for (int i = 0; item; ++i, item = item->nextSibling()) {
LIRC_Actions action = m_order[i];
actions[action] = item->text(1);
alt_actions[action] = item->text(2);
}
m_LIRC->setActions(actions, alt_actions);
}
m_dirty = false;
}
void LIRCConfiguration::slotCancel()
{
if (m_dirty) {
m_ignore_gui_updates = true;
m_ActionList->clear();
if (m_LIRC) {
const TQMap<LIRC_Actions, TQString> &actions = m_LIRC->getActions();
const TQMap<LIRC_Actions, TQString> &alt_actions = m_LIRC->getAlternativeActions();
for (unsigned i = 0; m_order.contains(i) && i < m_order.count(); ++i) {
LIRC_Actions action = m_order[i];
addKey(m_descriptions[action], actions[action], alt_actions[action]);
}
}
slotRenamingStopped(NULL, -1);
m_ignore_gui_updates = false;
}
m_dirty = false;
}
void LIRCConfiguration::addKey(const TQString &descr, const TQString &key, const TQString &alt_key)
{
ListViewItemLirc *item = new ListViewItemLirc(m_ActionList, m_ActionList->lastChild());
if (item) {
TQObject::connect(item, TQT_SIGNAL(sigRenamingStarted (ListViewItemLirc *, int)),
this, TQT_SLOT (slotRenamingStarted(ListViewItemLirc *, int)));
TQObject::connect(item, TQT_SIGNAL(sigRenamingStopped (ListViewItemLirc *, int)),
this, TQT_SLOT (slotRenamingStopped(ListViewItemLirc *, int)));
item->setText(0, descr);
item->setText(1, key);
item->setText(2, alt_key);
item->setRenameEnabled(1, true);
item->setRenameEnabled(2, true);
}
}
void LIRCConfiguration::slotUpdateConfig()
{
slotSetDirty();
slotCancel();
}
void LIRCConfiguration::slotRawLIRCSignal(const TQString &val, int /*repeat_counter*/, bool &consumed)
{
TQListViewItem *_it = m_ActionList->currentItem();
ListViewItemLirc *it = static_cast<ListViewItemLirc*>(_it);
if (it->isRenamingInProcess()) {
int col = it->getRenamingColumn();
it->cancelRename(col);
it->setText(col, val);
consumed = true;
m_dirty = true;
}
}
void LIRCConfiguration::slotRenamingStarted(ListViewItemLirc */*sender*/, int /*col*/)
{
m_LabelHints->setText(i18n("Enter the key string of your remote or just press the button on your remote control"));
}
void LIRCConfiguration::slotRenamingStopped(ListViewItemLirc */*sender*/, int /*col*/)
{
m_LabelHints->setText(i18n("Double Click on the entries to change the assignments"));
}
void LIRCConfiguration::slotSetDirty()
{
if (!m_ignore_gui_updates) {
m_dirty = true;
}
}
#include "lirc-configuration.moc"
|