summaryrefslogtreecommitdiffstats
path: root/tdeutils/kreplacedialog.h
blob: 9e787730e4a35875acd282f7b00345f1a6e1ec16 (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
/*
    Copyright (C) 2001, S.R.Haque <srhaque@iee.org>.
    Copyright (C) 2002, David Faure <david@mandrakesoft.com>
    This file is part of the KDE project

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License version 2, as published by the Free Software Foundation.

    This library 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
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA 02110-1301, USA.
*/

#ifndef KREPLACEDIALOG_H
#define KREPLACEDIALOG_H

#include "kfinddialog.h"

class KHistoryCombo;
class TQCheckBox;
class TQGroupBox;
class TQLabel;
class TQPopupMenu;
class TQPushButton;
class TQRect;

/**
 * @ingroup main
 * @ingroup findreplace
 * @short A generic "replace" dialog.
 *
 * @author S.R.Haque <srhaque@iee.org>
 *
 * \b Detail:
 *
 * This widget inherits from KFindDialog and implements
 * the following additional functionalities:  a replacement string
 * object and an area for a user-defined widget to extend the dialog.
 *
 * \b Example:
 *
 * To use the basic replace dialog:
 *
 * \code
 * \endcode
 *
 * To use your own extensions:
 *
 * \code
 * \endcode
 */
class TDEUTILS_EXPORT KReplaceDialog:
    public KFindDialog
{
    TQ_OBJECT

public:

    /**
     * Options.
     */
    enum Options
    {
        PromptOnReplace = 256,  ///< Should the user be prompted before the replace operation?
        BackReference = 512
    };

    /**
     * Construct a replace dialog.read-only or rather select-only combo box with a
     * parent object and a name.
     *
     * @param parent The parent object of this widget
     * @param name The name of this widget
     * @param options A bitfield of the Options to be enabled.
     * @param findStrings A TQStringList to insert in the combo box of text to find
     * @param replaceStrings A TQStringList to insert in the combo box of text to
     *        replace with
     * @param hasSelection Whether a selection exists
     */
    KReplaceDialog( TQWidget *parent = 0, const char *name = 0, long options = 0,
		    const TQStringList &findStrings = TQStringList(),
		    const TQStringList &replaceStrings = TQStringList(),
		    bool hasSelection = true );

    /**
     * Destructor.
     */
    virtual ~KReplaceDialog();

    /**
     * Provide the list of @p strings to be displayed as the history
     * of replacement strings. @p strings might get truncated if it is
     * too long.
     *
     * @param history The replacement history.
     * @see replacementHistory
     */
    void setReplacementHistory( const TQStringList &history );

    /**
     * Returns the list of history items.
     *
     * @return The replacement history.
     * @see setReplacementHistory
     */
    TQStringList replacementHistory() const;

    /**
     * Set the options which are enabled.
     *
     * @param options The setting of the Options.
     * @see Options, KFindDialog::Options
     */
    void setOptions( long options );

    /**
     * Returns the state of the options. Disabled options may be returned in
     * an indeterminate state.
     *
     * @return The options.
     * @see setOptions, Options, KFindDialog::Options
     */
    long options() const;

    /**
     * Returns the replacement string.
     * @return The replacement string.
     */
    TQString replacement() const;

    /**
     * Returns an empty widget which the user may fill with additional UI
     * elements as required. The widget occupies the width of the dialog,
     * and is positioned immediately the regular expression support widgets
     * for the replacement string.
     * @return An extensible TQWidget.
     */
    TQWidget *replaceExtension();

protected slots:

    void slotOk();
    virtual void showEvent ( TQShowEvent * );

private:

    // Binary compatible extensibility.
    class KReplaceDialogPrivate;
    KReplaceDialogPrivate *d;
};


#endif // KREPLACEDIALOG_H