summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/remotetab.cpp
blob: c89d8c2fc5f4890f996e2bc476abd5f7d4c80692 (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
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
/*
Opie-Remote.  emulates remote controlls on an iPaq (and maybe a Zaurus) in Opie.
Copyright (C) 2002 Thomas Stephens

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.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#include <qmessagebox.h>

#include "remotetab.h"
#include "lirchandler.h"

RemoteTab::RemoteTab(QWidget *parent, const char *name):QWidget(parent,name)
{
	QVBoxLayout *layout = new QVBoxLayout(this);

	topGroup = new TopGroup(this);
//	topGroup->setMaximumHeight(22);
	layout->addWidget(topGroup, 0, 0);
	printf("%d %d", topGroup->width(), topGroup->height());

	layout->addSpacing(1);

	dvdGroup = new DVDGroup(this);
//	dvdGroup->setMaximumHeight(68);
	layout->addWidget(dvdGroup, 0, 0);

	layout->addSpacing(1);

	vcrGroup = new VCRGroup(this);
	layout->addWidget(vcrGroup, 0, 0);
//	vcrGroup->setMaximumHeight(45);

	layout->addSpacing(1);

	channelGroup = new ChannelGroup(this);
//	channelGroup->setMaximumHeight(91);
	layout->addWidget(channelGroup, 0, 0);

	this->setMaximumWidth(240);
}

int RemoteTab::sendIR()
{
	QString curr_remote = topGroup->getRemotesText();
	if(curr_remote != "")
		cfg->setGroup(curr_remote);
	else {
		QMessageBox::warning(this, tr("Error"), tr("Please select or create\na remote layout"), QMessageBox::Ok, QMessageBox::NoButton);
		return 0;
	}
	
	const QObject *button = sender();
	QString string = cfg->readEntry(button->name());
	if(string != "") {
		string+='\n';
		LircHandler lh;
		return lh.sendIR(string.latin1());
	}
	else {
		QMessageBox::warning(this, tr("Error"), tr("This button has not\nbeen configured"), QMessageBox::Ok, QMessageBox::NoButton);
		return 0;
	}
}

void RemoteTab::setConfig(Config *newCfg)
{
	cfg = newCfg;
	cfg->setGroup("Remotes");
	topGroup->updateRemotes(cfg);
	
	QString curr_remote = topGroup->getRemotesText();
	if(curr_remote != "")
		remoteSelected(curr_remote);
}

void RemoteTab::remoteSelected(const QString &string)
{
	printf("1%s\n", string.latin1() );
	cfg->setGroup(string);
	const QObject *obj;

	const QObjectList *objList = topGroup->children();
	for(obj = ((QObjectList *)objList)->first(); obj != 0; obj=((QObjectList *)objList)->next())
	{
		if(obj->inherits("QPushButton"))
		{
			if(cfg->hasKey((QString)obj->name()+"Label"))
			{
				((QPushButton *)obj)->setText(cfg->readEntry((QString)obj->name()+"Label") );
			}
			else
			{
				cfg->setGroup("Default");
				((QPushButton *)obj)->setText(cfg->readEntry((QString)obj->name()+"Label") );
				cfg->setGroup(string);
			}
		}
	}
	
	objList = dvdGroup->children();
	for(obj = ((QObjectList *)objList)->first(); obj != 0; obj=((QObjectList *)objList)->next())
	{
		if(obj->inherits("QPushButton"))
		{
			if(cfg->hasKey((QString)obj->name()+"Label"))
			{
				((QPushButton *)obj)->setText(cfg->readEntry((QString)obj->name()+"Label") );
			}
			else
			{
				cfg->setGroup("Default");
				((QPushButton *)obj)->setText(cfg->readEntry((QString)obj->name()+"Label") );
				cfg->setGroup(string);
			}
		}
	}

	objList = vcrGroup->children();
	for(obj = ((QObjectList *)objList)->first(); obj != 0; obj=((QObjectList *)objList)->next())
	{
		if(obj->inherits("QPushButton"))
		{
			if(cfg->hasKey((QString)obj->name()+"Label"))
			{
				((QPushButton *)obj)->setText(cfg->readEntry((QString)obj->name()+"Label") );
			}
			else
			{
				cfg->setGroup("Default");
				((QPushButton *)obj)->setText(cfg->readEntry((QString)obj->name()+"Label") );
				cfg->setGroup(string);
			}
		}
	}

	objList = channelGroup->children();
	for(obj = ((QObjectList *)objList)->first(); obj != 0; obj=((QObjectList *)objList)->next())
	{
		if(obj->inherits("QPushButton"))
		{
			if(cfg->hasKey((QString)obj->name()+"Label"))
			{
				((QPushButton *)obj)->setText(cfg->readEntry((QString)obj->name()+"Label") );
			}
			else
			{
				cfg->setGroup("Default");
				((QPushButton *)obj)->setText(cfg->readEntry((QString)obj->name()+"Label") );
				cfg->setGroup(string);
			}
		}
	}
}

void RemoteTab::updateRemotesList()
{
	topGroup->updateRemotes(cfg);
	
	QString curr_remote = topGroup->getRemotesText();
	if(curr_remote != "")
		remoteSelected(curr_remote);
}