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
|
//
// Copyright 2006 Jim Bublitz <jbublitz@nwinternet.com>
// Earlier copyrights 1998 - 2005 Jim Bublitz and/or Phil Thompson
// may also apply
// Generated by preSip
// module tdeui version KDE 3.5.3
// This software 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 software 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 library; see the file COPYING.
// If not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
class KMessageBox
{
%TypeHeaderCode
#include <tdemessagebox.h>
%End
public:
enum ButtonCode
{
Ok,
Cancel,
Yes,
No,
Continue
};
enum DialogType
{
QuestionYesNo,
WarningYesNo,
WarningContinueCancel,
WarningYesNoCancel,
Information,
Sorry,
Error,
QuestionYesNoCancel
};
%If ( KDE_3_4_0 - )
enum OptionsType
{
Notify,
AllowLink,
Dangerous,
PlainCaption,
NoExec
};
%End
static int questionYesNo (TQWidget* /Transfer/, const TQString&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify );
%If ( KDE_3_2_0 - )
static int questionYesNoWId (WId, const TQString&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify );
%End
static int questionYesNoCancel (TQWidget* /Transfer/, const TQString&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify );
%If ( KDE_3_2_0 - )
static int questionYesNoCancelWId (WId, const TQString&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify );
%End
static int questionYesNoList (TQWidget* /Transfer/, const TQString&, const TQStringList&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify );
%If ( KDE_3_2_0 - )
static int questionYesNoListWId (WId, const TQString&, const TQStringList&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify );
%End
static int warningYesNo (TQWidget* /Transfer/, const TQString&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify );
%If ( KDE_3_2_0 - )
static int warningYesNoWId (WId, const TQString&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify |Dangerous );
static int warningYesNoList (TQWidget* /Transfer/, const TQString&, const TQStringList&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify |Dangerous );
static int warningYesNoListWId (WId, const TQString&, const TQStringList&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify |Dangerous );
%End
static int warningContinueCancel (TQWidget* /Transfer/, const TQString&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::cont (), const TQString& = TQString ::null , int = Notify );
%If ( KDE_3_2_0 - )
static int warningContinueCancelWId (WId, const TQString&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::cont (), const TQString& = TQString ::null , int = Notify );
%End
%If ( KDE_3_1_0 - )
static int warningContinueCancelList (TQWidget* /Transfer/, const TQString&, const TQStringList&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::cont (), const TQString& = TQString ::null , int = Notify );
%If ( KDE_3_2_0 - )
static int warningContinueCancelListWId (WId, const TQString&, const TQStringList&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::cont (), const TQString& = TQString ::null , int = Notify );
%End
%End
static int warningYesNoCancel (TQWidget* /Transfer/, const TQString&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify );
%If ( KDE_3_2_0 - )
static int warningYesNoCancelWId (WId, const TQString&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify );
static int warningYesNoCancelList (TQWidget* /Transfer/, const TQString&, const TQStringList&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify );
static int warningYesNoCancelListWId (WId, const TQString&, const TQStringList&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify );
%End
static void error (TQWidget* /Transfer/, const TQString&, const TQString& = TQString ::null , bool = 1);
%If ( KDE_3_2_0 - )
static void errorWId (WId, const TQString&, const TQString& = TQString ::null , int = Notify );
%If ( KDE_3_4_0 - )
static void errorList (TQWidget* /Transfer/, const TQString&, const TQStringList&, const TQString& = TQString ::null , int = Notify );
static void errorListWId (WId, const TQString&, const TQStringList&, const TQString& = TQString ::null , int = Notify );
%End
%End
static void detailedError (TQWidget* /Transfer/, const TQString&, const TQString&, const TQString& = TQString ::null , bool = 1);
%If ( KDE_3_2_0 - )
static void detailedErrorWId (WId, const TQString&, const TQString&, const TQString& = TQString ::null , int = Notify );
%End
static void queuedDetailedError (TQWidget* /Transfer/, const TQString&, const TQString&, const TQString& = TQString ::null );
%If ( KDE_3_2_0 - )
static void queuedDetailedErrorWId (WId, const TQString&, const TQString&, const TQString& = TQString ::null );
%End
static void sorry (TQWidget* /Transfer/, const TQString&, const TQString& = TQString ::null , bool = 1);
%If ( KDE_3_2_0 - )
static void sorryWId (WId, const TQString&, const TQString& = TQString ::null , int = Notify );
%End
static void detailedSorry (TQWidget* /Transfer/, const TQString&, const TQString&, const TQString& = TQString ::null , bool = 1);
%If ( KDE_3_2_0 - )
static void detailedSorryWId (WId, const TQString&, const TQString&, const TQString& = TQString ::null , int = Notify );
%End
static void information (TQWidget* /Transfer/, const TQString&, const TQString& = TQString ::null , const TQString& = TQString ::null , bool = 1);
%If ( KDE_3_2_0 - )
static void informationWId (WId, const TQString&, const TQString& = TQString ::null , const TQString& = TQString ::null , int = Notify );
%End
%If ( KDE_3_1_0 - )
static void informationList (TQWidget* /Transfer/, const TQString&, const TQStringList&, const TQString& = TQString ::null , const TQString& = TQString ::null , int = Notify );
%If ( KDE_3_2_0 - )
static void informationListWId (WId, const TQString&, const TQStringList&, const TQString& = TQString ::null , const TQString& = TQString ::null , int = Notify );
%End
%End
static void enableAllMessages ();
%If ( KDE_3_2_0 - )
static void enableMessage (const TQString&);
%End
static void about (TQWidget* /Transfer/, const TQString&, const TQString& = TQString ::null , bool = 1);
%If ( KDE_3_2_0 - )
static int messageBox (TQWidget* /Transfer/, KMessageBox::DialogType, const TQString&, const TQString&, const KGuiItem&, const KGuiItem&, const TQString&, int = Notify );
%End
static int messageBox (TQWidget* /Transfer/, KMessageBox::DialogType, const TQString&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), int = Notify );
%If ( KDE_3_2_0 - )
static int messageBoxWId (WId, KMessageBox::DialogType, const TQString&, const TQString& = TQString ::null , const KGuiItem& = KStdGuiItem ::yes (), const KGuiItem& = KStdGuiItem ::no (), const TQString& = TQString ::null , int = Notify );
%End
%If ( KDE_3_1_0 - )
static void queuedMessageBox (TQWidget* /Transfer/, KMessageBox::DialogType, const TQString&, const TQString&, int);
%If ( KDE_3_2_0 - )
static void queuedMessageBoxWId (WId, KMessageBox::DialogType, const TQString&, const TQString&, int);
%End
%End
static void queuedMessageBox (TQWidget* /Transfer/, KMessageBox::DialogType, const TQString&, const TQString& = TQString ::null );
%If ( KDE_3_2_0 - )
static void queuedMessageBoxWId (WId, KMessageBox::DialogType, const TQString&, const TQString& = TQString ::null );
static bool shouldBeShownYesNo (const TQString&, KMessageBox::ButtonCode&);
static bool shouldBeShownContinue (const TQString&);
static void saveDontShowAgainYesNo (const TQString&, KMessageBox::ButtonCode);
static void saveDontShowAgainContinue (const TQString&);
static void setDontShowAskAgainConfig (TDEConfig*);
%If ( KDE_3_3_0 - )
static int createKMessageBox (KDialogBase*, TQMessageBox::Icon, const TQString&, const TQStringList&, const TQString&, bool*, int, const TQString& = TQString ::null );
static int createKMessageBox (KDialogBase*, TQPixmap, const TQString&, const TQStringList&, const TQString&, bool*, int, const TQString& = TQString ::null , TQMessageBox::Icon = TQMessageBox ::Information );
%End
%End
public:
%If ( KDE_3_2_0 - KDE_3_4_0 )
enum OptionsType
{
Notify,
AllowLink,
Dangerous
};
%End
public:
%If ( - KDE_3_2_0 )
enum OptionsType
{
Notify,
AllowLink
};
%End
public:
%If ( - KDE_3_0_3 )
//ig static int warningContinueCancelList (TQWidget* /Transfer/, const TQString&, const TQStringList&, const TQString& = TQString ::null , const KGuiItem& = TQString ::null , const TQString& = TQString ::null , int = Notify );
%End
%If ( KDE_3_0_3 - KDE_3_1_0 )
static int warningContinueCancelList (TQWidget* /Transfer/, const TQString&, const TQStringList&, const TQString& = TQString ::null , const KGuiItem& = KGuiItem (), const TQString& = TQString ::null , int = Notify );
%End
}; // class KMessageBox
|