You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdebindings/kdejava/koala/org/kde/koala/KDialogBaseSignals.java

130 lines
3.7 KiB

//Auto-generated by kalyptus. DO NOT EDIT.
package org.kde.koala;
import org.kde.qt.QHideEvent;
import org.kde.qt.QMetaObject;
import org.kde.qt.QtSupport;
import org.kde.qt.QCloseEvent;
import org.kde.qt.QObject;
import org.kde.qt.QPixmap;
import org.kde.qt.QSize;
import org.kde.qt.QGrid;
import org.kde.qt.QKeyEvent;
import org.kde.qt.QPushButton;
import org.kde.qt.QWidget;
import org.kde.qt.QVBox;
import org.kde.qt.QFrame;
import org.kde.qt.QHBox;
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(QWidget page);
}