blob: ac4e6b09d41225ddc3d1a505565de4eed2ed9bad (
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
|
/***************************************************************************
filessettings.cpp - description
-------------------
begin : Sun Apr 18 2004
copyright : (C) 2004 Otto Bruggeman
email : otto.bruggeman@home.nl
****************************************************************************/
/***************************************************************************
**
** 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 <tdeapplication.h>
#include <tdeconfig.h>
#include "filessettings.h"
FilesSettings::FilesSettings( TQWidget* parent )
: SettingsBase( parent )
{
}
FilesSettings::~FilesSettings()
{
}
void FilesSettings::loadSettings( TDEConfig* config )
{
config->setGroup( m_configGroupName );
m_recentSources = config->readListEntry( "Recent Sources" );
m_lastChosenSourceURL = config->readEntry ( "LastChosenSourceListEntry", "" );
m_recentDestinations = config->readListEntry( "Recent Destinations" );
m_lastChosenDestinationURL = config->readEntry ( "LastChosenDestinationListEntry", "" );
m_encoding = config->readEntry ( "Encoding", "default" );
}
void FilesSettings::saveSettings( TDEConfig* config )
{
config->setGroup( m_configGroupName );
config->writeEntry( "Recent Sources", m_recentSources );
config->writeEntry( "Recent Destinations", m_recentDestinations );
config->writeEntry( "LastChosenSourceListEntry", m_lastChosenSourceURL );
config->writeEntry( "LastChosenDestinationListEntry", m_lastChosenDestinationURL );
config->writeEntry( "Encoding", m_encoding );
config->sync();
}
void FilesSettings::setGroup( const TQString& groupName )
{
m_configGroupName = groupName;
}
#include "filessettings.moc"
|