~ubuntu-branches/ubuntu/oneiric/pykde4/oneiric-proposed

« back to all changes in this revision

Viewing changes to sip/kdeui/kactioncategory.sip

  • Committer: Bazaar Package Importer
  • Author(s): Romain Perier
  • Date: 2011-07-11 12:42:17 UTC
  • Revision ID: james.westby@ubuntu.com-20110711124217-stfa5thgiyis668w
Tags: upstream-4.6.90
ImportĀ upstreamĀ versionĀ 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright 2008 Simon Edwards <simon@simonzone.com>
 
2
 
 
3
//                 Generated by twine
 
4
 
 
5
// This program is free software; you can redistribute it and/or modify
 
6
// it under the terms of the GNU Library General Public License as
 
7
// published by the Free Software Foundation; either version 2, or
 
8
// (at your option) any later version.
 
9
 
 
10
// This program is distributed in the hope that it will be useful,
 
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
// GNU General Public License for more details
 
14
 
 
15
// You should have received a copy of the GNU Library General Public
 
16
// License along with this program; if not, write to the
 
17
// Free Software Foundation, Inc.,
 
18
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
19
 
 
20
 
 
21
class KActionCategory : QObject
 
22
{
 
23
%TypeHeaderCode
 
24
#include <kactioncategory.h>
 
25
%End
 
26
 
 
27
public:
 
28
                            KActionCategory (const QString& text, KActionCollection* parent = NULL);
 
29
 
 
30
    QAction*                addAction (const QString& name, QAction* action);
 
31
    KAction*                addAction (const QString& name, KAction* action);
 
32
    KAction*                addAction (KStandardAction::StandardAction actionType, const QObject* receiver = NULL, const char* member = NULL);
 
33
    KAction*                addAction (KStandardAction::StandardAction actionType, const QString& name, const QObject* receiver = NULL, const char* member = NULL);
 
34
    KAction*                addAction (const QString& name, const QObject* receiver = NULL, const char* member = NULL);
 
35
 
 
36
    const QList<QAction*>   actions () const;
 
37
    KActionCollection*      collection () const;
 
38
    QString                 text () const;
 
39
    void                    setText (const QString& text);
 
40
    ~KActionCategory ();
 
41
};
 
42
// KActionCategory
 
43
 
 
44