summaryrefslogtreecommitdiffstats
path: root/kbabel/commonui/projectprefwidgets.h
blob: d41be3ac46c913ec23c3cd4b42115981ccbd9ef4 (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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
/* ****************************************************************************
  This file is part of KBabel

  Copyright (C) 1999-2001 by Matthias Kiefer
                            <matthias.kiefer@gmx.de>
		2001-2005 by Stanislav Visnovsky
			    <visnovsky@kde.org>

  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.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

  In addition, as a special exception, the copyright holders give
  permission to link the code of this program with any edition of
  the TQt library by Trolltech AS, Norway (or with modified versions
  of TQt that use the same license as TQt), and distribute linked
  combinations including the two.  You must obey the GNU General
  Public License in all respects for all of the code used other than
  TQt. If you modify this file, you may extend this exception to
  your version of the file, but you are not obligated to do so.  If
  you do not wish to do so, delete this exception statement from
  your version.

**************************************************************************** */
#ifndef PROJECTPREFWIDGETS_H
#define PROJECTPREFWIDGETS_H

#include <ktabctl.h>
#include <tqptrlist.h>
#include "projectsettings.h"


class KLineEdit;
class TQLineEdit;
class TQCheckBox;
class TQComboBox;
class TQListBox;
class TQRadioButton;
class TQSpinBox;
class CmdEdit;
class KFontChooser;
class KColorButton;
class KComboBox;
class KSpellConfig;
class KURLRequester;
class TQPushButton;
class TQGroupBox;
class KListEditor;
class ToolSelectionWidget;
class KIntNumInput;
class KURLRequester;

struct ModuleInfo;

class KDE_EXPORT SavePreferences : public KTabCtl
{
   Q_OBJECT
  TQ_OBJECT
public:
   SavePreferences(TQWidget* parent=0);
   void defaults(const KBabel::SaveSettings& settings);
   void setAutoSaveVisible(const bool on);

private:
   TQCheckBox* _lastButton;
   TQCheckBox* _revisionButton;
   TQCheckBox* _languageButton;
   TQCheckBox* _charsetButton;
   TQCheckBox* _encodingButton;
   TQCheckBox* _projectButton;

   TQCheckBox* _updateButton;
   TQCheckBox* _autoCheckButton;
   TQCheckBox* _saveObsoleteButton;

   TQComboBox* _encodingBox;
   TQCheckBox* _oldEncodingButton;

   TQRadioButton* _defaultDateButton;
   TQRadioButton* _localDateButton;
   TQRadioButton* _customDateButton;
   TQLineEdit* _dateFormatEdit;
   
   TQLineEdit* _projectEdit;

   TQRadioButton* _removeFSFButton;
   TQRadioButton* _updateFSFButton;
   TQRadioButton* _nochangeFSFButton;
   TQCheckBox* _translatorCopyrightButton;

   TQCheckBox* _descriptionButton;
   TQLineEdit* _descriptionEdit;
   
   KIntNumInput * _autoSaveDelay;
   TQGroupBox * _autoSaveBox;

private slots:
   void customDateActivated(bool on);
};


class IdentityPreferences : public TQWidget
{
    Q_OBJECT
  TQ_OBJECT
public:
    IdentityPreferences(TQWidget *parent = 0, const TQString& project = "");
    virtual bool eventFilter(TQObject *, TQEvent*);
    void defaults(const KBabel::IdentitySettings& settings);

private slots:
    void checkTestPluralButton();
    void testPluralForm();
    void lookupGnuPluralFormHeader();
    
private:
   TQLineEdit* _nameEdit;
   TQLineEdit* _localNameEdit;
   TQLineEdit* _mailEdit;
   TQLineEdit* _langEdit;
   TQLineEdit* _langCodeEdit;
   TQLineEdit* _listEdit;

   TQLineEdit* _timezoneEdit;
   TQSpinBox *_pluralFormsBox;
   TQPushButton *_testPluralButton;
   TQCheckBox* _checkPluralArgumentBox;
   TQLineEdit* _gnuPluralFormHeaderEdit;
   TQPushButton *_testGnuPluralFormButton;
};


class MiscPreferences : public TQWidget
{
   Q_OBJECT
  TQ_OBJECT
public:
    MiscPreferences(TQWidget *parent=0);
    void defaults(const KBabel::MiscSettings& settings);

private slots:
   void regExpButtonClicked();
   
private:
   void setContextInfo(TQString reg);
   TQString contextInfo() const;
   
   KLineEdit *contextInfoEdit;
   KLineEdit *accelMarkerEdit;
   
   TQDialog *_regExpEditDialog;
   TQPushButton *_regExpButton;

   TQRadioButton* bzipButton;
   TQRadioButton* gzipButton;
   TQCheckBox* compressSingle;
};

class SpellPreferences : public TQWidget
{
    Q_OBJECT
  TQ_OBJECT
public: 
    SpellPreferences(TQWidget *parent=0);
    
    void mergeSettings(KBabel::SpellcheckSettings& set) const;
    void updateWidgets(const KBabel::SpellcheckSettings& settings);
    void defaults(const KBabel::SpellcheckSettings& settings);

signals:
    void settingsChanged();

private:
    KSpellConfig* spellConfig;
    TQCheckBox* remIgnoredBtn;
    TQCheckBox* onFlyBtn;
    KURLRequester* ignoreURLEdit;

};

class CatmanPreferences : public TQWidget
{
    Q_OBJECT
  TQ_OBJECT
public:
    CatmanPreferences(TQWidget *parent = 0);
    void defaults(const KBabel::CatManSettings& settings);

private:
    KURLRequester* _poDirEdit;
    KURLRequester* _potDirEdit;

    TQCheckBox* _openWindowButton;

    TQCheckBox* _killButton;
    TQCheckBox* _indexButton;
    TQCheckBox* m_msgfmtButton;
};

class DirCommandsPreferences : public TQWidget
{
    Q_OBJECT
  TQ_OBJECT
public:
    DirCommandsPreferences(TQWidget *parent = 0);
    virtual ~DirCommandsPreferences();

    void mergeSettings(KBabel::CatManSettings& settings) const;
    void updateWidgets(const KBabel::CatManSettings&);
    void defaults(const KBabel::CatManSettings& settings);

signals:
    void settingsChanged();

private:
    CmdEdit* _dirCmdEdit;
};

class FileCommandsPreferences : public TQWidget
{
    Q_OBJECT
  TQ_OBJECT
public:
    FileCommandsPreferences(TQWidget *parent = 0);
    virtual ~FileCommandsPreferences();

    void mergeSettings(KBabel::CatManSettings& settings) const;
    void updateWidgets(const KBabel::CatManSettings& settings);
    void defaults(const KBabel::CatManSettings& settings);

signals:
    void settingsChanged();

private:
    CmdEdit* _fileCmdEdit;
};

class ViewPreferences : public TQWidget
{
    Q_OBJECT
  TQ_OBJECT
public:
    ViewPreferences(TQWidget *parent = 0);
    void defaults(const KBabel::CatManSettings& settings);

private:
    TQCheckBox* _flagColumnCheckbox;
    TQCheckBox* _fuzzyColumnCheckbox;
    TQCheckBox* _untranslatedColumnCheckbox;
    TQCheckBox* _totalColumnCheckbox;
    TQCheckBox* _cvsColumnCheckbox;
    TQCheckBox* _revisionColumnCheckbox;
    TQCheckBox* _translatorColumnCheckbox;
};

/**
* This class implements preference widget for source context
*
* @short Class for setting preferences for source context
* @author Stanislav Visnovsky <visnovsky@kde.org>
*/
class SourceContextPreferences : public TQWidget
{
    Q_OBJECT
  TQ_OBJECT
public:
    SourceContextPreferences(TQWidget* parent=0); 
    virtual ~SourceContextPreferences();
    
    void mergeSettings(KBabel::SourceContextSettings& settings) const;
    void updateWidgets(const KBabel::SourceContextSettings& settings);
    void defaults(const KBabel::SourceContextSettings& settings);

    virtual bool eventFilter(TQObject *, TQEvent*);
    
signals:
    void itemsChanged ();

private:
    KURLRequester* _coderootEdit;
    KListEditor* _pathsEditor;
};

#endif // PROJECTPREFWIDGETS_H