File: kstatusnotifieritem.sip

package info (click to toggle)
pykde4 4%3A4.14.3-2%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 30,912 kB
  • ctags: 18,431
  • sloc: python: 2,063; cpp: 327; makefile: 52; sh: 5
file content (91 lines) | stat: -rw-r--r-- 4,374 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
// Copyright 2009 Simon Edwards <simon@simonzone.com>

//                 Generated by twine2

// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU Library General Public License as
// published by the Free Software Foundation; either version 2, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details

// You should have received a copy of the GNU Library General Public
// License along with this program; if not, write to the
// Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

class KStatusNotifierItem : QObject
{
%TypeHeaderCode
#include <kstatusnotifieritem.h>
%End

public:
    enum ItemStatus
    {
        Passive,
        Active,
        NeedsAttention
    };
    enum ItemCategory
    {
        ApplicationStatus,
        Communications,
        SystemServices,
        Hardware,
        Reserved
    };
    explicit                KStatusNotifierItem (QObject* parent /TransferThis/ = 0);
    explicit                KStatusNotifierItem (const QString& id, QObject* parent /TransferThis/ = 0);
    ~KStatusNotifierItem ();
    QString                 id () const;
    void                    setCategory (const KStatusNotifierItem::ItemCategory category);
    KStatusNotifierItem::ItemCategory  category () const;
    void                    setTitle (const QString& title);
    QString                 title () const;
    void                    setStatus (const KStatusNotifierItem::ItemStatus status);
    KStatusNotifierItem::ItemStatus  status () const;
    void                    setIconByName (const QString& name);
    QString                 iconName () const;
    void                    setIconByPixmap (const QIcon& icon);
    QIcon                   iconPixmap () const;
    void                    setOverlayIconByName (const QString& name);
    QString                 overlayIconName () const;
    void                    setOverlayIconByPixmap (const QIcon& icon);
    QIcon                   overlayIconPixmap () const;
    void                    setAttentionIconByName (const QString& name);
    QString                 attentionIconName () const;
    void                    setAttentionIconByPixmap (const QIcon& icon);
    QIcon                   attentionIconPixmap () const;
    void                    setToolTip (const QString& iconName, const QString& title, const QString& subTitle);
    void                    setToolTip (const QIcon& icon, const QString& title, const QString& subTitle);
    void                    setToolTipIconByName (const QString& name);
    QString                 toolTipIconName () const;
    void                    setToolTipIconByPixmap (const QIcon& icon);
    QIcon                   toolTipIconPixmap () const;
    void                    setToolTipTitle (const QString& title);
    QString                 toolTipTitle () const;
    void                    setToolTipSubTitle (const QString& subTitle);
    QString                 toolTipSubTitle () const;
    void                    setContextMenu (KMenu* menu);
    KMenu*                  contextMenu () const;
    void                    setAssociatedWidget (QWidget* parent /Transfer/);
    QWidget*                associatedWidget () const;
    KActionCollection*      actionCollection () const;
    void                    setStandardActionsEnabled (bool enabled);
    bool                    standardActionsEnabled () const;
    void                    showMessage (const QString& title, const QString& message, const QString& icon, int timeout = 10000);
    virtual void            activate (const QPoint& pos = QPoint());
signals:
    void                    scrollRequested (int delta, Qt::Orientation orientation);
    void                    activateRequested (bool active, const QPoint& pos);
    void                    secondaryActivateRequested (const QPoint& pos);
protected:
    bool                    eventFilter (QObject* watched, QEvent* event);
public:
    void                    setAttentionMovieByName (const QString& name);
    QString                 attentionMovieName () const;
};