summaryrefslogtreecommitdiffstats
path: root/part/kxetextviewsettings.cpp
blob: 94f5eda48998d94b0456f38365bec89979f12136 (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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/***************************************************************************
                           kxetextviewsettings.cpp
                           ----------------------
    begin                : Tue Dec 23 2003
    copyright            : (C) 2003 by The KXMLEditor Team
    email                : hartig@users.sourceforge.net
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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 "kxetextviewsettings.h"
#include "kxetextviewsettingspage.h"

#include <tdelocale.h>
#include <tdeconfig.h>
#include <kdebug.h>
#include <kcolorbutton.h>
#include <tqcheckbox.h>

#include <tqframe.h>
#include <tqspinbox.h>

#define CONF_ENTRY_NAME_COLOR_DEFAULT_TEXT "DefaultText"
#define DFLT_VALUE_COLOR_DEFAULT_TEXT TQColor( "#000000" )

#define CONF_ENTRY_NAME_COLOR_ELEMENT_NAMES "ElementNames"
#define DFLT_VALUE_COLOR_ELEMENT_NAMES TQColor( "#800000" )

#define CONF_ENTRY_NAME_COLOR_ATTR_NAMES "AttributeNames"
#define DFLT_VALUE_COLOR_ATTR_NAMES TQColor( "#00ffff" )

#define CONF_ENTRY_NAME_COLOR_ATTR_VALUES "AttributeValues"
#define DFLT_VALUE_COLOR_ATTR_VALUES TQColor( "#00ff00" )

#define CONF_ENTRY_NAME_COLOR_SYNTAX_CHARS "SyntaxChars"
#define DFLT_VALUE_COLOR_SYNTAX_CHARS TQColor( "#000080" )

#define CONF_ENTRY_NAME_COLOR_COMENTS "Comments"
#define DFLT_VALUE_COLOR_COMENTS TQColor( "#808080" )

#define CONF_ENTRY_NAME_COLOR_ERRORS "SyntaxError"
#define DFLT_VALUE_COLOR_ERRORS TQColor( "#ff0000" )

#define CONF_ENTRY_NAME_INDENT_STEPS "XML indentation"
#define DFLT_VALUE_INDENT_STEPS 2

#define CONF_ENTRY_WRAP_ON "Text Wrap On"
#define DFLT_VALUE_WRAP_ON false

KXETextViewSettings::KXETextViewSettings( TQObject * pParent, const char * pszName )
 : KXESettings( "Text editor", pParent, pszName ),
   m_colorDfltText( DFLT_VALUE_COLOR_DEFAULT_TEXT ),
   m_colorElemNames( DFLT_VALUE_COLOR_ELEMENT_NAMES ),
   m_colorAttrNames( DFLT_VALUE_COLOR_ATTR_NAMES ),
   m_colorAttrValues( DFLT_VALUE_COLOR_ATTR_VALUES ),
   m_colorSyntaxChars( DFLT_VALUE_COLOR_SYNTAX_CHARS ),
   m_colorComments( DFLT_VALUE_COLOR_COMENTS ),
   m_colorErrors( DFLT_VALUE_COLOR_ERRORS ),
   m_iIndentSteps( DFLT_VALUE_INDENT_STEPS ),
   m_bWrapOn(DFLT_VALUE_WRAP_ON),
	 m_pDialogPage(0)
	 
{
}


void KXETextViewSettings::write( TDEConfig * pConfig ) const
{
	pConfig->writeEntry( CONF_ENTRY_NAME_COLOR_DEFAULT_TEXT, m_colorDfltText );
	pConfig->writeEntry( CONF_ENTRY_NAME_COLOR_ELEMENT_NAMES, m_colorElemNames );
	pConfig->writeEntry( CONF_ENTRY_NAME_COLOR_ATTR_NAMES, m_colorAttrNames );
	pConfig->writeEntry( CONF_ENTRY_NAME_COLOR_ATTR_VALUES, m_colorAttrValues );
	pConfig->writeEntry( CONF_ENTRY_NAME_COLOR_SYNTAX_CHARS, m_colorSyntaxChars );
	pConfig->writeEntry( CONF_ENTRY_NAME_COLOR_COMENTS, m_colorComments );
	pConfig->writeEntry( CONF_ENTRY_NAME_COLOR_ERRORS, m_colorErrors );
  pConfig->writeEntry( CONF_ENTRY_NAME_INDENT_STEPS, m_iIndentSteps );
	pConfig->writeEntry( CONF_ENTRY_WRAP_ON, m_bWrapOn );
}


void KXETextViewSettings::read( const TDEConfig * pConfig )
{
	const TQColor tempColor1 = DFLT_VALUE_COLOR_DEFAULT_TEXT;
	m_colorDfltText = pConfig->readColorEntry( CONF_ENTRY_NAME_COLOR_DEFAULT_TEXT, &tempColor1 );
	const TQColor tempColor2 = DFLT_VALUE_COLOR_ELEMENT_NAMES;
	m_colorElemNames = pConfig->readColorEntry( CONF_ENTRY_NAME_COLOR_ELEMENT_NAMES, &tempColor2 );
	const TQColor tempColor3 = DFLT_VALUE_COLOR_ATTR_NAMES;
	m_colorAttrNames = pConfig->readColorEntry( CONF_ENTRY_NAME_COLOR_ATTR_NAMES, &tempColor3 );
	const TQColor tempColor4 = DFLT_VALUE_COLOR_ATTR_VALUES;
	m_colorAttrValues = pConfig->readColorEntry( CONF_ENTRY_NAME_COLOR_ATTR_VALUES, &tempColor4 );
	const TQColor tempColor5 = DFLT_VALUE_COLOR_SYNTAX_CHARS;
	m_colorSyntaxChars = pConfig->readColorEntry( CONF_ENTRY_NAME_COLOR_SYNTAX_CHARS, &tempColor5 );
	const TQColor tempColor6 = DFLT_VALUE_COLOR_COMENTS;
	m_colorComments = pConfig->readColorEntry( CONF_ENTRY_NAME_COLOR_COMENTS, &tempColor6 );
	const TQColor tempColor7 = DFLT_VALUE_COLOR_ERRORS;
	m_colorErrors = pConfig->readColorEntry( CONF_ENTRY_NAME_COLOR_ERRORS, &tempColor7  );
  m_iIndentSteps = pConfig->readNumEntry( CONF_ENTRY_NAME_INDENT_STEPS, DFLT_VALUE_INDENT_STEPS );
	m_bWrapOn = pConfig->readNumEntry( CONF_ENTRY_WRAP_ON, DFLT_VALUE_WRAP_ON );
}


TQString KXETextViewSettings::dialogPageName() const
{
	return i18n( "Text view" );
}

TQString KXETextViewSettings::dialogPageHeader() const
{
	return i18n( "Text view properties" );
}

TQString KXETextViewSettings::dialogPageIcon() const
{
	return "colorize";
}


TQWidget * KXETextViewSettings::dialogPage( TQFrame * pParent )
{
	if ( ! m_pDialogPage )
	{
		// create the page if necessary
		m_pDialogPage = new KXETextViewSettingsPage( pParent, "text view config.dialog page" );

		// and fill its widgets with the corresponding values
		updatePage();

		connect( m_pDialogPage->m_pColorDfltText, SIGNAL(changed(const TQColor&)), this, SIGNAL(sigDialogPageChanged()) );
		connect( m_pDialogPage->m_pColorElemNames, SIGNAL(changed(const TQColor&)), this, SIGNAL(sigDialogPageChanged()) );
		connect( m_pDialogPage->m_pColorAttrNames, SIGNAL(changed(const TQColor&)), this, SIGNAL(sigDialogPageChanged()) );
		connect( m_pDialogPage->m_pColorAttrValues, SIGNAL(changed(const TQColor&)), this, SIGNAL(sigDialogPageChanged()) );
		connect( m_pDialogPage->m_pColorSyntaxChars, SIGNAL(changed(const TQColor&)), this, SIGNAL(sigDialogPageChanged()) );
		connect( m_pDialogPage->m_pColorComments, SIGNAL(changed(const TQColor&)), this, SIGNAL(sigDialogPageChanged()) );
		connect( m_pDialogPage->m_pColorErrors, SIGNAL(changed(const TQColor&)), this, SIGNAL(sigDialogPageChanged()) );
 		connect( m_pDialogPage->m_pIndentSteps, SIGNAL(valueChanged(int)), this, SIGNAL(sigDialogPageChanged()) );
		connect( m_pDialogPage->m_pCheckBoxWrapOn, SIGNAL(toggled(bool)), this, SIGNAL(sigDialogPageChanged()) );
	}

	return m_pDialogPage;
}


void KXETextViewSettings::setFromPage()
{
	if ( m_pDialogPage )
	{
		m_colorDfltText = m_pDialogPage->m_pColorDfltText->color();
		m_colorElemNames = m_pDialogPage->m_pColorElemNames->color();
		m_colorAttrNames = m_pDialogPage->m_pColorAttrNames->color();
		m_colorAttrValues = m_pDialogPage->m_pColorAttrValues->color();
		m_colorSyntaxChars = m_pDialogPage->m_pColorSyntaxChars->color();
		m_colorComments = m_pDialogPage->m_pColorComments->color();
		m_colorErrors = m_pDialogPage->m_pColorErrors->color();
    m_iIndentSteps = m_pDialogPage->m_pIndentSteps->value();
		m_bWrapOn = m_pDialogPage->m_pCheckBoxWrapOn->isChecked();
	}
}

void KXETextViewSettings::updatePage() const
{
	if ( m_pDialogPage )
	{
		m_pDialogPage->m_pColorDfltText->setColor( m_colorDfltText );
		m_pDialogPage->m_pColorElemNames->setColor( m_colorElemNames );
		m_pDialogPage->m_pColorAttrNames->setColor( m_colorAttrNames );
		m_pDialogPage->m_pColorAttrValues->setColor( m_colorAttrValues );
		m_pDialogPage->m_pColorSyntaxChars->setColor( m_colorSyntaxChars );
		m_pDialogPage->m_pColorComments->setColor( m_colorComments );
		m_pDialogPage->m_pColorErrors->setColor( m_colorErrors );
    m_pDialogPage->m_pIndentSteps->setValue( m_iIndentSteps );
		m_pDialogPage->m_pCheckBoxWrapOn->setChecked( m_bWrapOn );
	}
}