org.kde.koala

Interface KDialogBaseSignals

public interface KDialogBaseSignals

Method Summary
voidaboutToShowDetails()
The detailsWidget is about to get shown.
voidaboutToShowPage(QWidget page)
A page is about to be shown.
voidapplyClicked()
The Apply button was pressed.
voidbackgroundChanged()
The background tile has changed.
voidcancelClicked()
The Cancel button was pressed.
voidcloseClicked()
The Close button was pressed.
voiddefaultClicked()
The Default button was pressed.
voidfinished()
The dialog has finished.
voidhelpClicked()
The Help button was pressed.
voidhidden()
The dialog is about to be hidden.
voidnoClicked()
The No button was pressed.
voidokClicked()
The OK button was pressed.
voidtryClicked()
The Try button was pressed.
voiduser1Clicked()
The User1 button was pressed.
voiduser2Clicked()
The User2 button was pressed.
voiduser3Clicked()
The User3 button was pressed.
voidyesClicked()
The Yes button was pressed.

Method Detail

aboutToShowDetails

public void aboutToShowDetails()
The detailsWidget is about to get shown. This is your last chance to call setDetailsWidget if you haven't done so yet.

UNKNOWN: The detailsWidget is about to get shown.

aboutToShowPage

public void aboutToShowPage(QWidget page)
A page is about to be shown. This signal is only emitted for the TreeList and IconList faces.

UNKNOWN: A page is about to be shown.

applyClicked

public void applyClicked()
The Apply button was pressed. This signal is only emitted if slotApply() is not replaced.

UNKNOWN: The Apply button was pressed.

backgroundChanged

public void backgroundChanged()
The background tile has changed.

UNKNOWN: The background tile has changed.

cancelClicked

public void cancelClicked()
The Cancel button was pressed. This signal is only emitted if slotCancel() is not replaced.

UNKNOWN: The Cancel button was pressed.

closeClicked

public void closeClicked()
The Close button was pressed. This signal is only emitted if slotClose() is not replaced.

UNKNOWN: The Close button was pressed.

defaultClicked

public void defaultClicked()
The Default button was pressed. This signal is only emitted if slotDefault() is not replaced.

UNKNOWN: The Default button was pressed.

finished

public void finished()
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 not try to delete the pointer in the slot that is connected to this signal. You should use delayedDestruct() instead.

UNKNOWN: The dialog has finished.

helpClicked

public void helpClicked()
The Help button was pressed. This signal is only emitted if slotHelp() is not replaced.

UNKNOWN: The Help button was pressed.

hidden

public void hidden()
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.

UNKNOWN: The dialog is about to be hidden.

noClicked

public void noClicked()
The No button was pressed. This signal is only emitted if slotNo() is not replaced.

UNKNOWN: The No button was pressed.

okClicked

public void okClicked()
The OK button was pressed. This signal is only emitted if slotOk() is not replaced.

UNKNOWN: The OK button was pressed.

tryClicked

public void tryClicked()
The Try button was pressed. This signal is only emitted if slotTry() is not replaced.

UNKNOWN: The Try button was pressed.

user1Clicked

public void user1Clicked()
The User1 button was pressed. This signal is only emitted if slotUser1() is not replaced.

UNKNOWN: The User1 button was pressed.

user2Clicked

public void user2Clicked()
The User2 button was pressed. This signal is only emitted if slotUser2() is not replaced.

UNKNOWN: The User2 button was pressed.

user3Clicked

public void user3Clicked()
The User3 button was pressed. This signal is only emitted if slotUser3() is not replaced.

UNKNOWN: The User3 button was pressed.

yesClicked

public void yesClicked()
The Yes button was pressed. This signal is only emitted if slotYes() is not replaced.

UNKNOWN: The Yes button was pressed.