summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KDialogBaseSignals.java
blob: 457c9fea13f8ff9cf2fddd786a3c5dd4dd21a717 (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
//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;

import org.kde.qt.TQHideEvent;
import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQCloseEvent;
import org.kde.qt.TQObject;
import org.kde.qt.TQPixmap;
import org.kde.qt.TQSize;
import org.kde.qt.TQGrid;
import org.kde.qt.TQKeyEvent;
import org.kde.qt.TQPushButton;
import org.kde.qt.TQWidget;
import org.kde.qt.TQVBox;
import org.kde.qt.TQFrame;
import org.kde.qt.TQHBox;

public interface KDialogBaseSignals {
	/**	
		 The Help button was pressed. This signal is only emitted if
		 slotHelp() is not replaced.
		     		@short    The Help button was pressed.
	*/
	void helpClicked();
	/**	
		 The Default button was pressed. This signal is only emitted if
		 slotDefault() is not replaced.
		     		@short    The Default button was pressed.
	*/
	void defaultClicked();
	/**	
		 The User3 button was pressed. This signal is only emitted if
		 slotUser3() is not replaced.
		     		@short    The User3 button was pressed.
	*/
	void user3Clicked();
	/**	
		 The User2 button was pressed. This signal is only emitted if
		 slotUser2() is not replaced.
		     		@short    The User2 button was pressed.
	*/
	void user2Clicked();
	/**	
		 The User1 button was pressed. This signal is only emitted if
		 slotUser1() is not replaced.
		     		@short    The User1 button was pressed.
	*/
	void user1Clicked();
	/**	
		 The Apply button was pressed. This signal is only emitted if
		 slotApply() is not replaced.
		     		@short    The Apply button was pressed.
	*/
	void applyClicked();
	/**	
		 The Try button was pressed. This signal is only emitted if
		 slotTry() is not replaced.
		     		@short    The Try button was pressed.
	*/
	void tryClicked();
	/**	
		 The OK button was pressed. This signal is only emitted if
		 slotOk() is not replaced.
		     		@short    The OK button was pressed.
	*/
	void okClicked();
	/**	
		 The Yes button was pressed. This signal is only emitted if
		 slotYes() is not replaced.
		     		@short    The Yes button was pressed.
	*/
	void yesClicked();
	/**	
		 The No button was pressed. This signal is only emitted if
		 slotNo() is not replaced.
		     		@short    The No button was pressed.
	*/
	void noClicked();
	/**	
		 The Cancel button was pressed. This signal is only emitted if
		 slotCancel() is not replaced.
		     		@short    The Cancel button was pressed.
	*/
	void cancelClicked();
	/**	
		 The Close button was pressed. This signal is only emitted if
		 slotClose() is not replaced.
		     		@short    The Close button was pressed.
	*/
	void closeClicked();
	/**	
		 The background tile has changed.
		     		@short    The background tile has changed.
	*/
	void backgroundChanged();
	/**	
		 The dialog is about to be hidden.
			 A dialog is hidden after a user clicks a button that ends
		 the dialog or when the user switches to another desktop or
		 minimizes the dialog.
		     		@short    The dialog is about to be hidden.
	*/
	void hidden();
	/**	
		 The dialog has finished.
			 A dialog emits finished after a user clicks a button that ends
		 the dialog.
			 This signal is also emitted when you call hide()
			 If you have stored a pointer to the
		 dialog do <b>not</b> try to delete the pointer in the slot that is
		 connected to this signal.
			 You should use delayedDestruct() instead.
		     		@short    The dialog has finished.
	*/
	void finished();
	/**	
		 The detailsWidget is about to get shown. This is your last chance
		 to call setDetailsWidget if you haven't done so yet.
		     		@short    The detailsWidget is about to get shown.
	*/
	void aboutToShowDetails();
	/**	
		 A page is about to be shown. This signal is only emitted for the TreeList
		 and IconList faces.
		     		@short    A page is about to be shown.
	*/
	void aboutToShowPage(TQWidget page);
}