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

import org.kde.qt.TQMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.TQWidget;

public interface KURLRequesterSignals {
	/**	
		 Emitted when the text in the lineedit changes.
		 The parameter contains the contents of the lineedit.
				@short    Emitted when the text in the lineedit changes.
	*/
	void textChanged(String arg1);
	/**	
		 Emitted when return or enter was pressed in the lineedit.
		     		@short    Emitted when return or enter was pressed in the lineedit.
	*/
	void returnPressed();
	/**	
		 Emitted when return or enter was pressed in the lineedit.
		 The parameter contains the contents of the lineedit.
		     		@short    Emitted when return or enter was pressed in the lineedit.
	*/
	void returnPressed(String arg1);
	/**	
		 Emitted before the filedialog is going to open. Connect
		 to this signal to "configure" the filedialog, e.g. set the
		 filefilter, the mode, a preview-widget, etc. It's usually
		 not necessary to set a URL for the filedialog, as it will
		 get set properly from the editfield contents.
			 If you use multiple KURLRequesters, you can connect all of them
		 to the same slot and use the given KURLRequester pointer to know
		 which one is going to open.
		     		@short    Emitted before the filedialog is going to open.
	*/
	void openFileDialog(KURLRequester arg1);
	/**	
		 Emitted when the user changed the URL via the file dialog.
		 The parameter contains the contents of the lineedit.
		 // TODO KDE4: Use KURL instead
		     		@short    Emitted when the user changed the URL via the file dialog.
	*/
	void urlSelected(String arg1);
}