summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/slideshow/screenproperties.h
diff options
context:
space:
mode:
Diffstat (limited to 'kipi-plugins/slideshow/screenproperties.h')
-rw-r--r--kipi-plugins/slideshow/screenproperties.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/kipi-plugins/slideshow/screenproperties.h b/kipi-plugins/slideshow/screenproperties.h
new file mode 100644
index 0000000..3a94237
--- /dev/null
+++ b/kipi-plugins/slideshow/screenproperties.h
@@ -0,0 +1,49 @@
+/* ============================================================
+ *
+ * This file is a part of kipi-plugins project
+ * http://www.kipi-plugins.org
+ *
+ * Date : 2007-11-14
+ * Description : a kipi plugin to slide images.
+ *
+ * Copyright (C) 2007 by Valerio Fuoglio <valerio dot fuoglio at gmail dot com>
+ *
+ * Parts of this code are based on smoothslidesaver by Carsten Weinhold
+ * <carsten dot weinhold at gmx dot de>
+ *
+ * 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, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * ============================================================ */
+
+#ifndef SCREEN_H
+#define SCREEN_H
+
+namespace KIPISlideShowPlugin
+{
+
+ class ScreenProperties {
+
+ public:
+
+ ScreenProperties(QWidget *mainWidget);
+ virtual ~ScreenProperties() { };
+
+ virtual unsigned suggestFrameRate();
+ virtual bool enableVSync();
+
+ protected:
+
+ unsigned activeScreen;
+ };
+
+} // NameSpace KIPISlideShowPlugin
+
+#endif // SCREEN_H