You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeaccessibility/ksayit/KTTSD_Lib/kttsdlibsetupimpl.h

48 lines
789 B

//
// 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
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(TDEProcess *p);
};
#endif