~unity-api-team/indicator-network/connectivity-service-source-package-shuffle

« back to all changes in this revision

Viewing changes to doc/qt/qml/qml-api/NetworkingStatus.qml

  • Committer: Antti Kaijanmäki
  • Date: 2014-08-14 22:07:10 UTC
  • Revision ID: antti.kaijanmaki@canonical.com-20140814220710-f9m3cvc58u64k1xv
rip out docs for now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import QtQuick 2.0
2
 
 
3
 
/*!
4
 
 
5
 
\qmltype NetworkingStatus
6
 
\ingroup connectivity
7
 
\brief
8
 
 
9
 
ActionManager exports the application actions to the external components.
10
 
*/
11
 
 
12
 
Item {
13
 
 
14
 
        /*!
15
 
           \qmlproperty int  NetworkingStatus::globalContext
16
 
 
17
 
           The globalContext of the Application.
18
 
 
19
 
           \note Setting the ActionContext::active on the global context has no effect;
20
 
         */
21
 
        property int globalContext
22
 
 
23
 
//    /*!
24
 
//       \qmlproperty ActionContext  ActionManager::globalContext
25
 
 
26
 
//       The globalContext of the Application.
27
 
 
28
 
//       \note Setting the ActionContext::active on the global context has no effect;
29
 
//     */
30
 
//    property ActionContext globalContext
31
 
 
32
 
//    /*!
33
 
//      \qmlproperty list<Action> ActionManager::actions
34
 
//      \default
35
 
//      List of Actions in manager's globalContext.
36
 
 
37
 
//      This is the default property of ActionManager.
38
 
//     */
39
 
//    property list<Action> actions
40
 
 
41
 
//    /*!
42
 
//      \qmlproperty list<ActionContext> ActionManager::localContexts
43
 
 
44
 
//      List of localContexts.
45
 
//     */
46
 
//    property list<ActionContext> localContexts
47
 
 
48
 
 
49
 
//    /*!
50
 
//     this is a shorthand for
51
 
//     \qml
52
 
//        manager.globalContext.addAction(action);
53
 
//     \endqml
54
 
 
55
 
//     \sa ActionContext::addAction()
56
 
//     */
57
 
//    function addAction(action) {}
58
 
 
59
 
//    /*!
60
 
//     this is a shorthand for
61
 
//     \qml
62
 
//        manager.globalContext.removeAction(action);
63
 
//     \endqml
64
 
 
65
 
//     \sa ActionContext::removeAction()
66
 
//     */
67
 
//    function removeAction(action) {}
68
 
 
69
 
//    /*!
70
 
//     Adds a local context.
71
 
 
72
 
//     Calling this function multiple times with the same context
73
 
//     does not have any side effects; the context gets added only once.
74
 
//    */
75
 
//    function addLocalContext(context) {}
76
 
 
77
 
//    /*!
78
 
//     Removes a local context.
79
 
 
80
 
//     Calling this function multiple times with the same context
81
 
//     does not have any side effects; the context gets removed only if
82
 
//     it was previously added with addLocalContext().
83
 
//    */
84
 
//    function removeLocalContext(context) {}
85
 
 
86
 
}