From bc4be9c5c2789a29f63752ba23f128e8d48375b5 Mon Sep 17 00:00:00 2001 From: Marco Martin Date: Thu, 22 Dec 2011 14:35:14 +0100 Subject: [PATCH] documentation for Dialog --- .../plasmacomponents/qml/Dialog.qml | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/declarativeimports/plasmacomponents/qml/Dialog.qml b/declarativeimports/plasmacomponents/qml/Dialog.qml index 8045914aa..68b7a6efe 100644 --- a/declarativeimports/plasmacomponents/qml/Dialog.qml +++ b/declarativeimports/plasmacomponents/qml/Dialog.qml @@ -40,6 +40,56 @@ ** ****************************************************************************/ +/**Documented API +Inherits: + Item + +Imports: + QtQuick 1.0 + org.kde.plasma.core + +Description: + Provides a top-level window for short-term tasks and brief interaction with the user. + A dialog floats on the top layer of the application view, usually overlapping the area reserved for the application content. Normally, a dialog provides information and gives warnings to the user, or asks the user to answer a question or select an option. + +Properties: + list buttons: A list of items in the dialog's button area. For example, you can use Row or Button components but you can also use any number of components that are based on Item component. + + list content: A list of items in the dialog's content area. You can use any component that is based on Item. For example, you can use ListView, so that the user can select from a list of names. + + int status: Indicates the dialog's phase in its life cycle. The values are as follows: + - DialogStatus.Opening - the dialog is opening + - DialogStatus.Open - the dialog is open and visible to the user + - DialogStatus.Closing - the dialog is closing + - DialogStatus.Closed - the dialog is closed and not visible to the user + - The dialog's initial status is DialogStatus.Closed. + + list title: A list of items in the dialog's title area. You can use a Text component but also any number of components that are based on Item. For example, you can use Text and Image components. + + Item visualParent: The item that is dimmed when the dialog opens. By default the root parent object is visualParent. + +Signals: + accepted(): This signal is emitted when the user accepts the dialog's request or the accept() method is called. + See also rejected(). + + clickedOutside(): This signal is emitted when the user taps in the area that is inside the dialog's visual parent area but outside the dialog's area. Normally the visual parent is the root object. In that case this signal is emitted if the user taps anywhere outside the dialog's area. + See also visualParent. + + rejected(): This signal is emitted when the user rejects the dialog's request or the reject() method is called. + See also accepted(). + +Methods: + void accept(): Accepts the dialog's request without any user interaction. The method emits the accepted() signal and closes the dialog. + See also reject(). + + void close(): Closes the dialog without any user interaction. + + void open(): Shows the dialog to the user. + + void reject(): Rejects the dialog's request without any user interaction. The method emits the rejected() signal and closes the dialog. + See also accept(). +**/ + import QtQuick 1.0 import org.kde.plasma.core 0.1 as PlasmaCore import "AppManager.js" as Utils