summaryrefslogtreecommitdiffstats
path: root/sip/tdecore/kshortcut.sip
blob: 4f7ca1c6089cbfbdd9e47954ade3a734eac72509 (plain)
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
//
//     Copyright 2006 Jim Bublitz <jbublitz@nwinternet.com>
//     Earlier copyrights 1998 - 2005 Jim Bublitz and/or Phil Thompson
//     may also apply


//                 Generated by preSip
//            module tdecore  version KDE 3.5.3


// This software is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of
// the License, or (at your option) any later version.
//
// This software 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 General Public
// License along with this library; see the file COPYING.
// If not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.


class KKey
{
%TypeHeaderCode
#include <kshortcut.h>
%End


public:

    enum 
    {
        MOD_FLAG_COUNT
    };


%If ( KDE_3_1_3 -  )

    enum 
    {
        QtWIN
    };

%End


    enum ModFlag
    {
        SHIFT, 
        CTRL, 
        ALT, 
        WIN
    };

                         KKey ();
                         KKey (int);
                         KKey (const TQKeySequence&);
                         KKey (const TQKeyEvent*);
                         KKey (const KKey&);
                         KKey (const TQString&);
                         KKey (uint, uint);
    void                 clear ();
    bool                 init (int);
    bool                 init (const TQKeySequence&);
    bool                 init (const TQKeyEvent*);
    bool                 init (const KKey&);
    bool                 init (const TQString&);
    bool                 init (uint, uint);
    bool                 isNull () const;
    uint                 sym () const;
    uint                 modFlags () const;
    int                  compare (const KKey&) const;

%If ( KDE_3_1_4 -  )
    bool                 operator == (const KKey&) const;
    bool                 operator != (const KKey&) const;
    bool                 operator < (const KKey&) const;
%End

    int                  keyCodeQt () const;
    TQString              toString () const;
    TQString              toStringInternal () const;
    void                 simplify ();
    static KKey&         null ();
    static TQString       modFlagLabel (KKey::ModFlag);

public:

%If (  - KDE_3_2_0 )
//ig     bool                 isValidTQt () const;
//ig     bool                 isValidNative () const;
%End


public:

%If ( KDE_3_1_2 - KDE_3_1_3 )

    enum 
    {
        QtWIN
    };

%End


public:

%If (  - KDE_3_1_2 )

    enum 
    {
        QtWIN
    };

%End


};  // class KKey


class KKeySequence
{
%TypeHeaderCode
#include <kshortcut.h>
%End


public:

    enum 
    {
        MAX_KEYS
    };

                         KKeySequence ();
                         KKeySequence (const TQKeySequence&);
                         KKeySequence (const KKey&);
//ig                          KKeySequence (const KKeyNative&);
                         KKeySequence (const KKeySequence&);
                         KKeySequence (const TQString&);
    void                 clear ();
    bool                 init (const TQKeySequence&);
    bool                 init (const KKey&);
//ig     bool                 init (const KKeyNative&);
    bool                 init (const KKeySequence&);
    bool                 init (const TQString&);
    uint                 count () const;
    const KKey&          key (uint) const;
    bool                 isTriggerOnRelease () const;
    bool                 setKey (uint, const KKey&);
    bool                 isNull () const;
    bool                 startsWith (const KKeySequence&) const;
    int                  compare (const KKeySequence&) const;

%If ( KDE_3_1_4 -  )
    bool                 operator == (const KKeySequence&) const;
    bool                 operator != (const KKeySequence&) const;
    bool                 operator < (const KKeySequence&) const;
%End

    TQKeySequence         qt () const;
    int                  keyCodeQt () const;
    TQString              toString () const;
    TQString              toStringInternal () const;
    static KKeySequence& null ();

protected:

public:

%If (  - KDE_3_2_0 )
//ig     void                 setTriggerOnRelease (bool);
%End


};  // class KKeySequence


class KShortcut
{
%TypeHeaderCode
#include <kshortcut.h>
%End


public:

    enum 
    {
        MAX_SEQUENCES
    };

                         KShortcut ();
                         KShortcut (int);
                         KShortcut (const TQKeySequence&);
                         KShortcut (const KKey&);
                         KShortcut (const KKeySequence&);
                         KShortcut (const KShortcut&);
                         KShortcut (const char*);
                         KShortcut (const TQString&);
    void                 clear ();
    bool                 init (int);
    bool                 init (const TQKeySequence&);
    bool                 init (const KKey&);
    bool                 init (const KKeySequence&);
    bool                 init (const KShortcut&);
    bool                 init (const TQString&);
    uint                 count () const;
    const KKeySequence&  seq (uint) const;
    int                  keyCodeQt () const;
    bool                 isNull () const;
    int                  compare (const KShortcut&) const;

%If ( KDE_3_1_4 -  )
    bool                 operator == (const KShortcut&) const;
    bool                 operator != (const KShortcut&) const;
    bool                 operator < (const KShortcut&) const;
%End

    bool                 contains (const KKey&) const;
    bool                 contains (const KKeyNative&) const;
    bool                 contains (const KKeySequence&) const;
    bool                 setSeq (uint, const KKeySequence&);
    bool                 append (const KKeySequence&);

%If ( KDE_3_3_0 -  )
    void                 remove (const KKeySequence&);
%End


%If ( KDE_3_2_0 -  )
    bool                 append (const KKey&);
    bool                 append (const KShortcut&);
%End


%If ( KDE_3_1_4 -  )
//ig                          operator TQKeySequence () const;
%End

    TQString              toString () const;
    TQString              toStringInternal (const KShortcut* = 0) const;
    static KShortcut&    null ();

protected:

public:

%If ( KDE_3_1_4 -  )
//ig                          operator int () const;
%End


};  // class KShortcut