blob: a3f5088b8985e7db299e926b91086f5e4ccf0e25 (
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
|
/***************************************************************************
wordcompletionwidget.h - description
-------------------
begin : Tue Apr 29 2003
copyright : (C) 2002 by Gunnar Schmi Dt
email : kmouth@schmi-dt.de
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
// $Id$
#ifndef WORDCOMPLETIONWIDGET_H
#define WORDCOMPLETIONWIDGET_H
#include "wordcompletionui.h"
class WordCompletion;
class KLanguageButton;
/**
* This class represents a configuration widget for managing dictionaries.
* @author Gunnar Schmi Dt
*/
class WordCompletionWidget : public WordCompletionUI {
Q_OBJECT
public:
WordCompletionWidget(TQWidget *parent, const char *name);
~WordCompletionWidget();
/**
* This method is invoked whenever the widget should read its configuration
* from a config file and update the user interface.
*/
void load();
/**
* This function gets called when the user wants to save the settings in
* the user interface, updating the config files.
*/
void save();
signals:
void changed (bool);
private slots:
void addDictionary();
void deleteDictionary();
void moveUp();
void moveDown();
void exportDictionary();
void selectionChanged();
void nameChanged (const TQString &text);
void languageSelected (int);
/**
* This slot is used to emit the signal changed when any widget changes
* the configuration
*/
void configChanged() {
emit changed(true);
};
private:
/**
* Object holding all the configuration
*/
TDEConfig *config;
TQStringList newDictionaryFiles;
TQStringList removedDictionaryFiles;
};
#endif
|