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
|
/***************************************************************************
* Copyright Brian Ledbetter 2001-2003 <brian@shadowcom.net> *
* Copyright Ravikiran Rajagopal 2003 <ravi@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License (version 2) as *
* published by the Free Software Foundation. (The original KSplash/ML *
* codebase (upto version 0.95.3) is BSD-licensed.) *
* *
***************************************************************************/
#include <tdeapplication.h>
#include <tdeconfig.h>
#include <kdebug.h>
#include <kgenericfactory.h>
#include <tdeglobalsettings.h>
#include <tdelocale.h>
#include <kstandarddirs.h>
#include <kprogress.h>
#include <tqcheckbox.h>
#include <tqdesktopwidget.h>
#include <tqlabel.h>
#include <tqpainter.h>
#include <tqpixmap.h>
#include <tqwidget.h>
#include <tqtimer.h>
#include <tqcursor.h>
#include "objkstheme.h"
#include "themeengine.h"
#include "themeunified.h"
#include "themeunified.moc"
UnifiedConfig::UnifiedConfig( TQWidget *parent, TDEConfig *config )
:ThemeEngineConfig( parent, config )
{
mConfig->setGroup( TQString("KSplash Theme: Default") );
TQVBox *hbox = new TQVBox( this );
mAlwaysShow = new TQCheckBox( i18n("Always show progress bar"), hbox );
mAlwaysShow->setChecked( mConfig->readBoolEntry("Always Show Progress",true) );
}
void UnifiedConfig::save()
{
kdDebug() << "UnifiedConfig::save()" << endl;
mConfig->setGroup( TQString("KSplash Theme: Default") );
mConfig->writeEntry( "Always Show Progress", mAlwaysShow->isChecked() );
mConfig->sync();
}
ThemeUnified::ThemeUnified( TQWidget *parent, const char *name, const TQStringList &args )
:ThemeEngine( parent, name, args )
{
mState = 0;
_readSettings();
_initUi();
}
ThemeUnified::~ThemeUnified()
{
if (mSysModalDialog) {
KSMModalDialog* temp = mSysModalDialog;
mSysModalDialog = NULL;
temp->closeSMDialog();
}
}
void ThemeUnified::_initUi()
{
resize(10,10);
mSysModalDialog = new KSMModalDialog(this);
mSysModalDialog->setStatusMessage(i18n("Trinity is starting up").append("..."));
mSysModalDialog->show();
mSysModalDialog->setActiveWindow();
const TQRect rect = kapp->desktop()->screenGeometry( mTheme->xineramaScreen() );
// Center the dialog
TQSize sh = sizeHint();
TQRect rect1 = TDEGlobalSettings::desktopGeometry(TQCursor::pos());
move(rect1.x() + (rect1.width() - sh.width())/2, rect1.y() + (rect1.height() - sh.height())/2);
}
// Attempt to find overrides elsewhere?
void ThemeUnified::_readSettings()
{
if( !mTheme )
return;
TDEConfig *cfg = mTheme->themeConfig();
if( !cfg )
return;
cfg->setGroup( TQString("KSplash Theme: %1").arg(mTheme->theme()) );
TQColor df(Qt::white);
mLabelForeground = cfg->readColorEntry( "Label Foreground", &df );
}
/*
* ThemeUnified::slotUpdateState(): IF in Default mode, THEN adjust the bar
* pixmap label. Whee, phun!
*
* A similar method exists in the old KSplash.
*/
void ThemeUnified::slotUpdateState()
{
if( mState > 8 )
mState = 8;
// mBarLabel->setPixmap( updateBarPixmap( mState ) );
mState++;
}
|