mirror of
https://github.com/riuson/lcd-image-converter.git
synced 2026-03-04 15:24:14 +01:00
17 lines
583 B
C++
17 lines
583 B
C++
#ifndef SETUPDIALOGOPTIONS_H
|
|
#define SETUPDIALOGOPTIONS_H
|
|
//-----------------------------------------------------------------------------
|
|
#include <QObject>
|
|
//-----------------------------------------------------------------------------
|
|
class SetupDialogOptions : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
static int animationTotalTime();
|
|
static void setAnimationTime(int value);
|
|
static int animationInterval();
|
|
static void setAnimationInterval(int value);
|
|
};
|
|
//-----------------------------------------------------------------------------
|
|
#endif // SETUPDIALOGOPTIONS_H
|