summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/basesetup.h
blob: 95929f24ea83875f48b611b1d28a3fc137007fd0 (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
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef _BASESETUP_H
#define _BASESETUP_H

#include <opie2/oconfig.h>

#include <qframe.h>

class QVBoxLayout;
class QGridLayout;
class QSpinBox;
class QLabel;
class QCheckBox;
class QSpacerItem;

class BaseSetup:public QFrame
{
    Q_OBJECT
public:
    BaseSetup(Opie::Core::OConfig *a_cfg,QWidget * parent=0, const char * name=0, WFlags f=0);
    virtual ~BaseSetup();

public slots:
    virtual void save_values();

protected:
    Opie::Core::OConfig *m_cfg;
    QVBoxLayout * m_MainLayout;
    QGridLayout * m_SlidetimeLayout;
    QSpinBox * m_SlideShowTime;
    QLabel * m_SlidetimeLabel;
    QCheckBox *m_SaveStateAuto;
    QSpacerItem *spacer1;
    QGridLayout * m_IconsizeLayout;
    QSpinBox * m_Iconsize;
    QLabel * m_IconsizeLabel;
};

#endif