summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/basesetup.cpp
blob: 11974cfda3dda734fc7010ff4e66e92892888724 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include "basesetup.h"

#include <qlabel.h>
#include <qlayout.h>
#include <qspinbox.h>
#include <qcheckbox.h>

BaseSetup::BaseSetup(Opie::Core::OConfig *a_cfg,QWidget * parent, const char * name, WFlags f)
    :QWidget(parent,name,f)
{
    m_cfg = a_cfg;
    m_MainLayout = new QVBoxLayout( this, 11, 6, "m_MainLayout");

    m_SlidetimeLayout = new QGridLayout( 0, 1, 1, 0, 6, "m_SlidetimeLayout");

    m_SlideShowTime = new QSpinBox( this, "m_SlideShowTime" );
    m_SlideShowTime->setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding,QSizePolicy::Fixed));
    m_SlideShowTime->setButtonSymbols( QSpinBox::PlusMinus );
    m_SlideShowTime->setMaxValue( 60 );
    m_SlideShowTime->setMinValue(0);
    m_SlideShowTime->setValue( 2 );
    m_SlideShowTime->setSuffix(tr(" seconds"));

    m_SlidetimeLayout->addWidget( m_SlideShowTime, 0, 1 );

    m_SlidetimeLabel = new QLabel( this, "m_SlidetimeLabel" );
    m_SlidetimeLabel->setText(tr("Slideshow timeout:"));
    m_SlidetimeLayout->addWidget( m_SlidetimeLabel, 0, 0 );
    m_MainLayout->addLayout( m_SlidetimeLayout );

    m_ShowToolBar = new QCheckBox( this, "m_ShowToolBar" );
    m_ShowToolBar->setText(tr("Show toolbar on startup"));
    m_MainLayout->addWidget( m_ShowToolBar );

    spacer1 = new QSpacerItem( 20, 40, QSizePolicy::Minimum, QSizePolicy::Expanding );
    m_MainLayout->addItem( spacer1 );

    int stime = m_cfg->readNumEntry("base_slideshowtimeout",2);
    if (stime<0) stime=2;
    if (stime>60) stime=60;
    m_SlideShowTime->setValue(stime);

    bool stoolbar = m_cfg->readBoolEntry("base_showtoolbar",true);
    m_ShowToolBar->setChecked(stoolbar);
}

BaseSetup::~BaseSetup()
{
}

void BaseSetup::save_values()
{
    if (!m_cfg) return;
    m_cfg->writeEntry("base_slideshowtimeout",m_SlideShowTime->value());
    m_cfg->writeEntry("base_showtoolbar",m_ShowToolBar->isChecked());
}