org.kde.koala
Interface KDialogBaseSignals


public interface KDialogBaseSignals


Method Summary
 void aboutToShowDetails()
          The detailsWidget is about to get shown.
 void aboutToShowPage(org.kde.qt.QWidget page)
          A page is about to be shown.
 void applyClicked()
          The Apply button was pressed.
 void backgroundChanged()
          The background tile has changed.
 void cancelClicked()
          The Cancel button was pressed.
 void closeClicked()
          The Close button was pressed.
 void defaultClicked()
          The Default button was pressed.
 void finished()
          The dialog has finished.
 void helpClicked()
          The Help button was pressed.
 void hidden()
          The dialog is about to be hidden.
 void noClicked()
          The No button was pressed.
 void okClicked()
          The OK button was pressed.
 void tryClicked()
          The Try button was pressed.
 void user1Clicked()
          The User1 button was pressed.
 void user2Clicked()
          The User2 button was pressed.
 void user3Clicked()
          The User3 button was pressed.
 void yesClicked()
          The Yes button was pressed.
 

Method Detail

helpClicked

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


defaultClicked

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


user3Clicked

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


user2Clicked

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


user1Clicked

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


applyClicked

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


tryClicked

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


okClicked

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


yesClicked

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


noClicked

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


cancelClicked

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


closeClicked

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


backgroundChanged

void backgroundChanged()
The background tile has changed.


hidden

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.


finished

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.


aboutToShowDetails

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


aboutToShowPage

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