org.kde.koala
Interface KURLRequesterSignals


public interface KURLRequesterSignals


Method Summary
 void openFileDialog(KURLRequester arg1)
          Emitted before the filedialog is going to open.
 void returnPressed()
          Emitted when return or enter was pressed in the lineedit.
 void returnPressed(java.lang.String arg1)
          Emitted when return or enter was pressed in the lineedit.
 void textChanged(java.lang.String arg1)
          Emitted when the text in the lineedit changes.
 void urlSelected(java.lang.String arg1)
          Emitted when the user changed the URL via the file dialog.
 

Method Detail

textChanged

void textChanged(java.lang.String arg1)
Emitted when the text in the lineedit changes. The parameter contains the contents of the lineedit.


returnPressed

void returnPressed()
Emitted when return or enter was pressed in the lineedit.


returnPressed

void returnPressed(java.lang.String arg1)
Emitted when return or enter was pressed in the lineedit. The parameter contains the contents of the lineedit.


openFileDialog

void openFileDialog(KURLRequester 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.


urlSelected

void urlSelected(java.lang.String 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