blob: 8dc16e96a213a4469078e5c07e04572826dec548 (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
/* ============================================================
*
* This file is a part of digiKam project
* http://www.digikam.org
*
* Date : 2004-08-23
* Description : mics configuration setup tab
*
* Copyright (C) 2004 by Renchi Raju <[email protected]>
* Copyright (C) 2005-2007 by Gilles Caulier <caulier dot gilles at gmail dot com>
*
* 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.
*
* ============================================================ */
// TQt includes.
#include <tqlayout.h>
#include <tqvgroupbox.h>
#include <tqcheckbox.h>
// KDE includes.
#include <tdelocale.h>
#include <kdialog.h>
// Local includes.
#include "albumsettings.h"
#include "setupmisc.h"
namespace Digikam
{
class SetupMiscPriv
{
public:
SetupMiscPriv()
{
showSplashCheck = 0;
showTrashDeleteDialogCheck = 0;
sidebarApplyDirectlyCheck = 0;
scanAtStart = 0;
}
TQCheckBox* showSplashCheck;
TQCheckBox* showTrashDeleteDialogCheck;
TQCheckBox* sidebarApplyDirectlyCheck;
TQCheckBox* scanAtStart;
};
SetupMisc::SetupMisc(TQWidget* parent)
: TQWidget( parent )
{
d = new SetupMiscPriv;
TQVBoxLayout *mainLayout = new TQVBoxLayout(parent);
TQVBoxLayout *layout = new TQVBoxLayout( this, 0, KDialog::spacingHint() );
// --------------------------------------------------------
d->showTrashDeleteDialogCheck = new TQCheckBox(i18n("Show confirmation dialog when moving items to the &trash"), this);
layout->addWidget(d->showTrashDeleteDialogCheck);
// --------------------------------------------------------
d->sidebarApplyDirectlyCheck = new TQCheckBox(i18n("Apply changes in the &right sidebar without confirmation"), this);
layout->addWidget(d->sidebarApplyDirectlyCheck);
// --------------------------------------------------------
d->showSplashCheck = new TQCheckBox(i18n("&Show splash screen at startup"), this);
layout->addWidget(d->showSplashCheck);
// --------------------------------------------------------
d->scanAtStart = new TQCheckBox(i18n("&Scan for new items on startup (slows down startup)"), this);
layout->addWidget(d->scanAtStart);
// --------------------------------------------------------
layout->addStretch();
readSettings();
adjustSize();
mainLayout->addWidget(this);
}
SetupMisc::~SetupMisc()
{
delete d;
}
void SetupMisc::applySettings()
{
AlbumSettings* settings = AlbumSettings::instance();
settings->setShowSplashScreen(d->showSplashCheck->isChecked());
settings->setShowTrashDeleteDialog(d->showTrashDeleteDialogCheck->isChecked());
settings->setApplySidebarChangesDirectly(d->sidebarApplyDirectlyCheck->isChecked());
settings->setScanAtStart(d->scanAtStart->isChecked());
settings->saveSettings();
}
void SetupMisc::readSettings()
{
AlbumSettings* settings = AlbumSettings::instance();
d->showSplashCheck->setChecked(settings->getShowSplashScreen());
d->showTrashDeleteDialogCheck->setChecked(settings->getShowTrashDeleteDialog());
d->sidebarApplyDirectlyCheck->setChecked(settings->getApplySidebarChangesDirectly());
d->scanAtStart->setChecked(settings->getScanAtStart());
}
} // namespace Digikam
|