summaryrefslogtreecommitdiff
path: root/noncore/tools/remote/recorddialog.cpp
blob: a9c4c61827ee96d65dc7412c95a0be74e0671a0c (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
/*
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 "recorddialog.h"

using namespace Opie::Core;
using namespace Opie::Core;
RecordDialog::RecordDialog(QWidget *parent, const char *name)
    :QDialog(parent, name)
{
	QVBoxLayout *layout = new QVBoxLayout(this);
	QHBoxLayout *hlayout = new QHBoxLayout(this);

	layout->insertSpacing(0,5);
	output = new QTextView("Please enter the name of the new remote, and press Return\n", 0, this, "output");
	layout->insertWidget(-1, output);
	layout->insertSpacing(-1, 5);
	layout->insertLayout(-1, hlayout);
	layout->insertSpacing(-1, 5);

	hlayout->insertSpacing(0, 5);
	input = new QLineEdit(this, "input");
	hlayout->insertWidget(-1, input, 1);
	hlayout->insertSpacing(-1, 5);

	QPushButton *ret = new QPushButton("Return", this, "return");
	hlayout->insertWidget(-1, ret);
	hlayout->insertSpacing(-1, 5);
	connect(ret, SIGNAL(clicked()), this, SLOT(retPressed()) );
	where = 0;

	record = new OProcess;
}

void RecordDialog::retPressed()
{
	printf("RecordDialog::retPressed: ret pressed\n");

	if(where == 0)
	{
		connect(record, SIGNAL(receivedStdout(Opie::Core::OProcess*,char*,int)), this, SLOT(incoming(Opie::Core::OProcess*,char*,int)) );
		connect(record, SIGNAL(receivedStderr(Opie::Core::OProcess*,char*,int)), this, SLOT(incoming(Opie::Core::OProcess*,char*,int)) );
		connect(record, SIGNAL(processExited(Opie::Core::OProcess*)), this, SLOT(done(Opie::Core::OProcess*)) );
		printf("RecordDialog::retPressed: starting irrecord\n");
		QString file = "/tmp/" + input->text();
		*record<<"irrecord"<<file.latin1();
		if(!record->start(OProcess::NotifyOnExit, OProcess::AllOutput))
		{
			QMessageBox *mb = new QMessageBox("Error!",
											"Could not start irrecord.  You must<br>use an lirc ipkg that includes<br>irrecord",
											QMessageBox::NoIcon,
											QMessageBox::Ok,
											QMessageBox::NoButton,
											QMessageBox::NoButton);
			mb->exec();
			return;
		}
//		record->resume();
		where = 1;
	}
}

void RecordDialog::incoming(OProcess *proc, char *buffer, int len)
{
//	output->setText(output->text() + QString(buffer).truncate(len-1));
	printf("RecordDialog::incoming: got text from irrecord\n");
}

void RecordDialog::done(OProcess *proc)
{
}