summaryrefslogtreecommitdiffstats
path: root/src/app/videoSettings.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/videoSettings.h')
-rw-r--r--src/app/videoSettings.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/app/videoSettings.h b/src/app/videoSettings.h
new file mode 100644
index 0000000..20e01ff
--- /dev/null
+++ b/src/app/videoSettings.h
@@ -0,0 +1,26 @@
+// (C) 2005 Max Howell (max.howell@methylblue.com)
+// 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( QWidget *parent );
+
+ static void stateChanged( QWidget *parent, Engine::State );
+ };
+}
+
+#endif