From 70f05ed9bfc0dfea051fceb5071b6a146482c8cd Mon Sep 17 00:00:00 2001 From: Giorgos Tsiapaliwkas Date: Tue, 8 Nov 2011 09:31:22 +0200 Subject: [PATCH] Init docu for TabButton.qml --- .../plasmacomponents/qml/TabButton.qml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/declarativeimports/plasmacomponents/qml/TabButton.qml b/declarativeimports/plasmacomponents/qml/TabButton.qml index 74f97fd99..c0dbb2f44 100644 --- a/declarativeimports/plasmacomponents/qml/TabButton.qml +++ b/declarativeimports/plasmacomponents/qml/TabButton.qml @@ -40,6 +40,37 @@ ** ****************************************************************************/ +/**Documentanted API +Inherits: + Item + +Imports: + QtQuick 1.1 + AppManager.js + +Description: + A simple tab button which is using the plasma theme. + +Properties: + Item tab: + TODO + bool checked: + Returns true if the button is checked,otherwise false. + + bool pressed: + Returns true if the button is being pressed,otherwise false. + + alias text: + Sets the text for the button. + + alias iconSource: + Sets an icon for the button + +Signals: + onClicked: + The signal is being emmited when the button is being clicked. +**/ + import QtQuick 1.1 import "AppManager.js" as Utils