blob: ce7c09ae0f5dec6a4dacd5c342237bb8f80dac8a (
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
|
//
// C++ Interface: kttsdsetupimpl
//
// Description:
//
//
// Author: Robert Vogl <voglrobe@lapislazuli>, (C) 2004
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef KTTSDSETUPIMPL_H
#define KTTSDSETUPIMPL_H
// TQt includes
// KDE includes
#include <kprocess.h>
// App specific includes
#include "KTTSDlibSetup.h"
/**
@author Robert Vogl
*/
class KTTSDlibSetupImpl : public KTTSDlibSetup
{
Q_OBJECT
TQ_OBJECT
public:
KTTSDlibSetupImpl(TQWidget *parent = 0, const char *name = 0);
~KTTSDlibSetupImpl();
protected slots:
/** Connected with the button to launch the controlcenter.
*/
void slotLaunchControlcenter();
private slots:
/** Called when the Control Center Module was closed.
*/
void slotKCMProcessExited(KProcess *p);
};
#endif
|