blob: 1dc4196f46b69aaec1aa9bb649a668a94563e5b4 (
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
|
//
// C++ Implementation: kttsdlibsetupimpl
//
// Description:
//
//
// Author: Robert Vogl <voglrobe@lapislazuli>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#include <stdio.h>
// TQt includes
#include <tqpushbutton.h>
// KDE includes
#include <kdebug.h>
#include <tdelocale.h>
#include <tdemessagebox.h>
// App specific includes
#include "kttsdlibsetupimpl.h"
KTTSDlibSetupImpl::KTTSDlibSetupImpl(TQWidget *parent, const char *name)
: KTTSDlibSetup(parent, name)
{
}
KTTSDlibSetupImpl::~KTTSDlibSetupImpl()
{
}
void KTTSDlibSetupImpl::slotLaunchControlcenter()
{
kdDebug(100200) << "KTTSDlibSetupImpl::slotLaunchControlCenter()" << endl;
// check if controllcenter module for KTTSD exists
FILE *fp;
char cmdresult[20];
// if ( (fp = popen("tdecmshell --list | grep kcmkttsmgr", "r")) != NULL){
if ( (fp = popen("tdecmshell --list | grep kcmkttsd", "r")) != NULL){
fgets(cmdresult, 18, fp);
pclose(fp);
}
if ( !TQCString(cmdresult).contains("kcmkttsd") ){
TQString error = i18n("Control Center Module for KTTSD not found.");
KMessageBox::sorry(this, error, i18n("Problem"));
return;
}
// invoke the Control Center Module
TDEProcess *kcmproc = new TDEProcess();
connect(kcmproc, TQT_SIGNAL(processExited(TDEProcess*)),
this, TQT_SLOT(slotKCMProcessExited(TDEProcess*)) );
(*kcmproc) << "tdecmshell";
(*kcmproc) << "kcmkttsd";
kcmproc->start(TDEProcess::NotifyOnExit);
kcm_Button->setEnabled(false);
}
void KTTSDlibSetupImpl::slotKCMProcessExited(TDEProcess *p)
{
kdDebug(100200) << "slotKCMProcessExited()" << endl;
kcm_Button->setEnabled(true);
}
#include "kttsdlibsetupimpl.moc"
|