summaryrefslogtreecommitdiff
path: root/noncore/unsupported/showimg/settingsdialog.cpp
Unidiff
Diffstat (limited to 'noncore/unsupported/showimg/settingsdialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/showimg/settingsdialog.cpp86
1 files changed, 86 insertions, 0 deletions
diff --git a/noncore/unsupported/showimg/settingsdialog.cpp b/noncore/unsupported/showimg/settingsdialog.cpp
new file mode 100644
index 0000000..202bd0c
--- a/dev/null
+++ b/noncore/unsupported/showimg/settingsdialog.cpp
@@ -0,0 +1,86 @@
1/**********************************************************************
2** Copyright (C) 2000-2002 Trolltech AS. All rights reserved.
3**
4** This file is part of the Qtopia Environment.
5**
6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file.
10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15**
16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you.
18**
19**********************************************************************/
20
21#include "settingsdialog.h"
22#include <qslider.h>
23#include <qlabel.h>
24#include <qcheckbox.h>
25
26SettingsDialog::SettingsDialog( QWidget *parent, const char *name, bool modal, WFlags f )
27 : SettingsDialogBase( parent, name, modal, f )
28{
29 connect( delaySlider, SIGNAL(valueChanged(int)), this, SLOT(delayChanged(int)) );
30}
31
32void SettingsDialog::setDelay( int d )
33{
34 delaySlider->setValue( d );
35 delayChanged( d );
36}
37
38int SettingsDialog::delay() const
39{
40 return delaySlider->value();
41}
42
43void SettingsDialog::setRepeat( bool r )
44{
45 repeatCheck->setChecked( r );
46}
47
48bool SettingsDialog::repeat() const
49{
50 return repeatCheck->isChecked();
51}
52
53void SettingsDialog::delayChanged( int d )
54{
55 delayText->setText( QString::number( d ) + " s" );
56}
57
58void SettingsDialog::setReverse(bool r)
59{
60 reverseCheck->setChecked(r);
61}
62
63bool SettingsDialog::reverse() const
64{
65 return reverseCheck->isChecked();
66}
67
68void SettingsDialog::setRotate(bool r)
69{
70 rotateCheck->setChecked(r);
71}
72
73bool SettingsDialog::rotate() const
74{
75 return rotateCheck->isChecked();
76}
77
78void SettingsDialog::setFastLoad(bool f)
79{
80 fastLoadCheck->setChecked(f);
81}
82
83bool SettingsDialog::fastLoad() const
84{
85 return fastLoadCheck->isChecked();
86}