blob: c7811695dca7e0fd29585c2302299f47c16adbe6 (
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
|
// (C) 2005 Max Howell ([email protected])
// See COPYING file for licensing information
#ifndef CODEINE_VIDEO_SETTINGS_H
#define CODEINE_VIDEO_SETTINGS_H
#include "codeine.h"
#include <kdialog.h>
namespace Codeine
{
class VideoSettingsDialog : public KDialog
{
VideoSettingsDialog(); //disable
VideoSettingsDialog( const VideoSettingsDialog& ); //disable
VideoSettingsDialog &operator=( const VideoSettingsDialog& ); //disable
public:
VideoSettingsDialog( TQWidget *parent );
static void stateChanged( TQWidget *parent, Engine::State );
};
}
#endif
|