summaryrefslogtreecommitdiffstats
path: root/vcs/cvsservice/cvsoptionswidget.cpp
blob: 32044dd3c1f73b0e0c78d300d12947ee35bb8f8e (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
181
182
183
184
185
186
187
188
189
190
/***************************************************************************
 *   Copyright (C) 2003 by KDevelop Authors                                *
 *   kdevelop-devel@kde.org                                                *
 *   Copyright (C) 2003 by Mario Scalas                                    *
 *   mario.scalas@libero.it                                                *
 *                                                                         *
 *   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 <tqcheckbox.h>
#include <klineedit.h>
#include <knuminput.h>
#include <kdialog.h>

#include "domutil.h"
#include "cvsoptions.h"
#include "cvsoptionswidget.h"

///////////////////////////////////////////////////////////////////////////////
// class DiffDialog
///////////////////////////////////////////////////////////////////////////////

CvsOptionsWidget::CvsOptionsWidget( TQWidget *parent, const char *name )
    : CvsOptionsWidgetBase( parent, name )
{
    readConfig();
}

///////////////////////////////////////////////////////////////////////////////

CvsOptionsWidget::~CvsOptionsWidget()
{
}

///////////////////////////////////////////////////////////////////////////////

void CvsOptionsWidget::readConfig()
{
    CvsOptions *options = CvsOptions::instance();

    this->setCvsRshEnvVar( options->cvsRshEnvVar() );
    this->setServerLocation( options->location() );
    this->setPruneEmptyDirWhenUpdating( options->pruneEmptyDirsWhenUpdate() );
    this->setCreateNewDirWhenUpdating( options->createDirsWhenUpdate() );
    this->setRecursiveWhenUpdating( options->recursiveWhenUpdate() );
    this->setRecursiveWhenCommittingRemoving( options->recursiveWhenCommitRemove() );
    this->setDiffOptions( options->diffOptions() );
    this->setContextLines( options->contextLines() );
}

///////////////////////////////////////////////////////////////////////////////

void CvsOptionsWidget::storeConfig()
{
    CvsOptions *options = CvsOptions::instance();

    options->setCvsRshEnvVar( this->cvsRshEnvVar().stripWhiteSpace() );
    options->setLocation( this->serverLocation().stripWhiteSpace() );
    options->setPruneEmptyDirsWhenUpdate( this->pruneEmptyDirWhenUpdating() );
    options->setCreateDirsWhenUpdate( this->createNewDirWhenUpdating() );
    options->setRecursiveWhenUpdate( this->recursiveWhenUpdating() );
    options->setRecursiveWhenCommitRemove( this->recursiveWhenCommittingRemoving() );
    options->setDiffOptions( this->diffOptions().stripWhiteSpace() );
    options->setContextLines( this->contextLines() );
}

///////////////////////////////////////////////////////////////////////////////

void CvsOptionsWidget::accept() {
    storeConfig();
//    emit configChange();
}

///////////////////////////////////////////////////////////////////////////////

void CvsOptionsWidget::setPruneEmptyDirWhenUpdating( bool b )
{
    this->pruneEmptyDirWhenUpdateCheck->setChecked( b );
}

///////////////////////////////////////////////////////////////////////////////

void CvsOptionsWidget::setCreateNewDirWhenUpdating( bool b )
{
    this->createNewDirWhenUpdateCheck->setChecked( b );
}

///////////////////////////////////////////////////////////////////////////////

void CvsOptionsWidget::setRecursiveWhenUpdating( bool b )
{
    this->recursiveWhenUpdateCheck->setChecked( b );
}

///////////////////////////////////////////////////////////////////////////////

void CvsOptionsWidget::setRecursiveWhenCommittingRemoving( bool b )
{
    this->recursiveWhenCommitRemoveCheck->setChecked( b );
}

///////////////////////////////////////////////////////////////////////////////

void CvsOptionsWidget::setContextLines( unsigned int p )
{
    this->contextLinesInput->setValue( p );
}

///////////////////////////////////////////////////////////////////////////////

void CvsOptionsWidget::setDiffOptions( const TQString &p )
{
    this->diffOptionsEdit->setText( p );
}

///////////////////////////////////////////////////////////////////////////////

TQString CvsOptionsWidget::diffOptions() const
{
    return this->diffOptionsEdit->text();
}

///////////////////////////////////////////////////////////////////////////////

void CvsOptionsWidget::setCvsRshEnvVar( const TQString &p )
{
    this->cvsRshEnvVarEdit->setText( p );
}

///////////////////////////////////////////////////////////////////////////////

void CvsOptionsWidget::setServerLocation( const TQString &p )
{
    this->serverLocationEdit->setText( p );
}

///////////////////////////////////////////////////////////////////////////////

bool CvsOptionsWidget::pruneEmptyDirWhenUpdating() const
{
    return pruneEmptyDirWhenUpdateCheck->isChecked();
}

///////////////////////////////////////////////////////////////////////////////

bool CvsOptionsWidget::createNewDirWhenUpdating() const
{
    return createNewDirWhenUpdateCheck->isChecked();
}

///////////////////////////////////////////////////////////////////////////////

bool CvsOptionsWidget::recursiveWhenUpdating() const
{
    return recursiveWhenUpdateCheck->isChecked();
}

///////////////////////////////////////////////////////////////////////////////

bool CvsOptionsWidget::recursiveWhenCommittingRemoving() const
{
    return recursiveWhenCommitRemoveCheck->isChecked();
}

///////////////////////////////////////////////////////////////////////////////

unsigned int CvsOptionsWidget::contextLines() const
{
    return contextLinesInput->value();
}

///////////////////////////////////////////////////////////////////////////////

TQString CvsOptionsWidget::cvsRshEnvVar() const
{
    return cvsRshEnvVarEdit->text();
}

///////////////////////////////////////////////////////////////////////////////

TQString CvsOptionsWidget::serverLocation() const
{
    return serverLocationEdit->text();
}

#include "cvsoptionswidget.moc"