author | paule <paule> | 2007-02-07 10:34:31 (UTC) |
---|---|---|
committer | paule <paule> | 2007-02-07 10:34:31 (UTC) |
commit | 6b84dbea9b4b64ce88844ca19d4b0361a0cc0bbc (patch) (side-by-side diff) | |
tree | bb644f091d2be43065bc4f454bf575abb1b6ac00 | |
parent | 5f5827b8e28311589e821f199dcefeb964538301 (diff) | |
download | opie-6b84dbea9b4b64ce88844ca19d4b0361a0cc0bbc.zip opie-6b84dbea9b4b64ce88844ca19d4b0361a0cc0bbc.tar.gz opie-6b84dbea9b4b64ce88844ca19d4b0361a0cc0bbc.tar.bz2 |
Check lircd is configured before accepting button presses
-rw-r--r-- | noncore/tools/remote/remotetab.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/noncore/tools/remote/remotetab.cpp b/noncore/tools/remote/remotetab.cpp index c89d8c2..065feac 100644 --- a/noncore/tools/remote/remotetab.cpp +++ b/noncore/tools/remote/remotetab.cpp @@ -22,77 +22,81 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 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() { + LircHandler lh; + + if(!lh.checkLircdConfValid(false)) + return 0; + 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")) { |