blob: 82244bb72e1b53a3eb1d3668377fe3cf02b96bbf (
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
|
/***************************************************************************
* *
* 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 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include <tqlabel.h>
#include <tqradiobutton.h>
#include <tqcheckbox.h>
#include <kstandarddirs.h>
#include <kurlrequester.h>
#include <tdefiledialog.h>
#include "page_looknfeel.h"
PageLooknFeel::PageLooknFeel( TQWidget *parent, const char *name ) : PageLooknFeelBase( parent, name)
{
modePreview->setPixmap(TQPixmap(locate("data","ksirc/pics/sdi.png")));
wallpaperPathLE->fileDialog()->setFilter( "*.jpg *.png *.gif" );
}
PageLooknFeel::~PageLooknFeel()
{
}
void PageLooknFeel::saveConfig()
{
if ( mdiCB->isChecked() ) ksopts->displayMode = KSOptions::MDI;
if ( sdiCB->isChecked() ) ksopts->displayMode = KSOptions::SDI;
ksopts->backgroundFile = wallpaperPathLE->url();
}
void PageLooknFeel::readConfig( const KSOGeneral *opts )
{
if ( opts->displayMode == KSOptions::MDI )
mdiCB->setChecked( true );
else
sdiCB->setChecked( true );
wallpaperPathLE->setURL( opts->backgroundFile );
}
void PageLooknFeel::defaultConfig()
{
KSOGeneral opts;
readConfig( &opts );
}
void PageLooknFeel::setPreviewPixmap( bool isSDI )
{
if (isSDI == true)
modePreview->setPixmap( TQPixmap( locate("data", "ksirc/pics/sdi.png" ) ) );
else
modePreview->setPixmap( TQPixmap( locate("data", "ksirc/pics/mdi.png" ) ) );
}
void PageLooknFeel::showWallpaperPixmap( const TQString &url )
{
wallpaperPreview->setPixmap( TQPixmap( url ) );
}
void PageLooknFeel::changed()
{
emit modified();
}
#include "page_looknfeel.moc"
|