summaryrefslogtreecommitdiffstats
path: root/parts/bookmarks/bookmarks_settings.cpp
blob: 58369d92861679b338463f5c5da21ba67e6af293 (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
/***************************************************************************
 *   Copyright (C) 2003 by Jens Dagerbo                                    *
 *   jens.dagerbo@swipnet.se                                               *
 *                                                                         *
 *   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 <tqradiobutton.h>
#include <tqcheckbox.h>
#include <tqspinbox.h>
#include <klineedit.h>

#include "bookmarks_part.h"
#include "bookmarks_config.h"
#include "bookmarks_settings.h"


BookmarkSettings::BookmarkSettings( BookmarksPart * part, TQWidget* parent, const char* name, WFlags fl )
: BookmarkSettingsBase( parent, name, fl ), m_part( part )
{
	m_part->config()->readConfig();
	
	if ( m_part->config()->codeline() == BookmarksConfig::Never )
	{
		radioButton1->setChecked( true );
	}
	else if ( m_part->config()->codeline() == BookmarksConfig::Token )
	{
		radioButton2->setChecked( true );
	}
	else 
	{
		radioButton3->setChecked( true );
	}
	
	checkBox1->setChecked( m_part->config()->toolTip() );
	spinBox1->setValue( m_part->config()->context() );
	lineEdit1->setText( m_part->config()->token() );
}

BookmarkSettings::~BookmarkSettings()
{
}

void BookmarkSettings::slotAccept()
{
	BookmarksConfig::CodeLineType codeline = BookmarksConfig::Never;
	codeline = radioButton1->isChecked() ? BookmarksConfig::Never : codeline;
	codeline = radioButton2->isChecked() ? BookmarksConfig::Token : codeline;
	codeline = radioButton3->isChecked() ? BookmarksConfig::Always : codeline;
	m_part->config()->setCodeline( codeline );
	m_part->config()->setToolTip( checkBox1->isChecked() );
	m_part->config()->setContext( spinBox1->value() );
	m_part->config()->setToken( lineEdit1->text() );
	
	m_part->config()->writeConfig();
}


#include "bookmarks_settings.moc"

// kate: space-indent off; indent-width 4; tab-width 4; show-tabs off;