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.
knights/knights/dlg_settings.h

82 lines
2.3 KiB

/***************************************************************************
dlg_settings.h - description
-------------------
begin : Mon Jul 16 2001
copyright : (C) 2003 by Troy Corbin Jr.
email : tcorbin@users.sourceforge.net
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef DLG_SETTINGS_H
#define DLG_SETTINGS_H
#include <tdelocale.h>
#include <kdialogbase.h>
#include <tqwidget.h>
#include <tqlayout.h>
#include <tqgroupbox.h>
#include <tqvbox.h>
#include "definitions.h"
#include "resource.h"
class setPageDisplay;
class setPageAudio;
class setPageEngines;
class setPageServers;
class setPageGeneral;
/**
*@author Troy Corbin Jr.
*/
class dlg_settings : public KDialogBase
{
TQ_OBJECT
public:
dlg_settings(TQWidget *parent=0, const char *name=0, resource *Rsrc=0);
~dlg_settings();
public slots:
void slotOk( void );
void slotApply( void );
void slotCancel( void );
void slotEnableApply( void );
void slotThemesAdded( void );
void slotPageChanging( TQWidget* );
signals:
void themeChanged( int, int );
void redrawBoard( void );
void rebuildConsole( void );
void resetServer( void );
private:
resource *Resource;
TQFrame *FRAME_General;
setPageGeneral *PAGE_General;
TQFrame *FRAME_Display;
setPageDisplay *PAGE_Display;
TQFrame *FRAME_Audio;
setPageAudio *PAGE_Audio;
TQFrame *FRAME_Engines;
setPageEngines *PAGE_Engines;
TQFrame *FRAME_Servers;
setPageServers *PAGE_Servers;
};
#endif