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.
50 lines
1.4 KiB
50 lines
1.4 KiB
/* ============================================================
|
|
*
|
|
* 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(TQWidget *mainWidget);
|
|
virtual ~ScreenProperties() { };
|
|
|
|
virtual unsigned suggestFrameRate();
|
|
virtual bool enableVSync();
|
|
|
|
protected:
|
|
|
|
unsigned activeScreen;
|
|
};
|
|
|
|
} // NameSpace KIPISlideShowPlugin
|
|
|
|
#endif // SCREEN_H
|