forked from kitech/qt.go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqwinjumplistcategory.go
457 lines (390 loc) · 14.5 KB
/
qwinjumplistcategory.go
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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
package qtwinextras
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h
// #include <qwinjumplistcategory.h>
// #include <Qtwinextras>
// header block end
// main block begin
// main block end
// use block begin
// use block end
// ext block begin
/*
#include <stdlib.h>
// extern C begin: 10
*/
// import "C"
import "unsafe"
import "reflect"
import "fmt"
import "log"
import "github.com/kitech/qt.go/qtrt"
import "github.com/kitech/qt.go/qtcore"
import "github.com/kitech/qt.go/qtgui"
import "github.com/kitech/qt.go/qtwidgets"
// ext block end
// body block begin
/*
*/
type QWinJumpListCategory struct {
*qtrt.CObject
}
type QWinJumpListCategory_ITF interface {
QWinJumpListCategory_PTR() *QWinJumpListCategory
}
func (ptr *QWinJumpListCategory) QWinJumpListCategory_PTR() *QWinJumpListCategory { return ptr }
func (this *QWinJumpListCategory) GetCthis() unsafe.Pointer {
if this == nil {
return nil
} else {
return this.Cthis
}
}
func (this *QWinJumpListCategory) SetCthis(cthis unsafe.Pointer) {
if this.CObject == nil {
this.CObject = &qtrt.CObject{cthis}
} else {
this.CObject.Cthis = cthis
}
}
func NewQWinJumpListCategoryFromPointer(cthis unsafe.Pointer) *QWinJumpListCategory {
return &QWinJumpListCategory{&qtrt.CObject{cthis}}
}
func (*QWinJumpListCategory) NewFromPointer(cthis unsafe.Pointer) *QWinJumpListCategory {
return NewQWinJumpListCategoryFromPointer(cthis)
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:64
// index:0
// Public Visibility=Default Availability=Available
// [-2] void QWinJumpListCategory(const QString &)
/*
Constructs a custom QWinJumpListCategory with the specified title.
*/
func (*QWinJumpListCategory) NewForInherit(title string) *QWinJumpListCategory {
return NewQWinJumpListCategory(title)
}
func NewQWinJumpListCategory(title string) *QWinJumpListCategory {
var tmpArg0 = qtcore.NewQString5(title)
var convArg0 = tmpArg0.GetCthis()
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategoryC2ERK7QString", qtrt.FFI_TYPE_POINTER, convArg0)
qtrt.ErrPrint(err, rv)
gothis := NewQWinJumpListCategoryFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQWinJumpListCategory)
return gothis
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:64
// index:0
// Public Visibility=Default Availability=Available
// [-2] void QWinJumpListCategory(const QString &)
/*
Constructs a custom QWinJumpListCategory with the specified title.
*/
func (*QWinJumpListCategory) NewForInheritp() *QWinJumpListCategory {
return NewQWinJumpListCategoryp()
}
func NewQWinJumpListCategoryp() *QWinJumpListCategory {
// arg: 0, const QString &=LValueReference, QString=Record, , Invalid
var convArg0 = qtcore.NewQString()
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategoryC2ERK7QString", qtrt.FFI_TYPE_POINTER, convArg0)
qtrt.ErrPrint(err, rv)
gothis := NewQWinJumpListCategoryFromPointer(unsafe.Pointer(uintptr(rv)))
qtrt.SetFinalizer(gothis, DeleteQWinJumpListCategory)
return gothis
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:65
// index:0
// Public Visibility=Default Availability=Available
// [-2] void ~QWinJumpListCategory()
/*
*/
func DeleteQWinJumpListCategory(this *QWinJumpListCategory) {
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategoryD2Ev", qtrt.FFI_TYPE_VOID, this.GetCthis())
qtrt.Cmemset(this.GetCthis(), 9, 8)
qtrt.ErrPrint(err, rv)
this.SetCthis(nil)
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:67
// index:0
// Public Visibility=Default Availability=Available
// [4] QWinJumpListCategory::Type type() const
/*
Returns the category type.
*/
func (this *QWinJumpListCategory) Type() int {
rv, err := qtrt.InvokeQtFunc6("_ZNK20QWinJumpListCategory4typeEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
return int(rv)
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:69
// index:0
// Public Visibility=Default Availability=Available
// [1] bool isVisible() const
/*
Returns whether the category is visible.
*/
func (this *QWinJumpListCategory) IsVisible() bool {
rv, err := qtrt.InvokeQtFunc6("_ZNK20QWinJumpListCategory9isVisibleEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
return rv != 0
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:70
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setVisible(bool)
/*
Sets the category visible.
See also isVisible().
*/
func (this *QWinJumpListCategory) SetVisible(visible bool) {
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategory10setVisibleEb", qtrt.FFI_TYPE_POINTER, this.GetCthis(), visible)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:72
// index:0
// Public Visibility=Default Availability=Available
// [8] QString title() const
/*
Returns the category title.
See also setTitle().
*/
func (this *QWinJumpListCategory) Title() string {
rv, err := qtrt.InvokeQtFunc6("_ZNK20QWinJumpListCategory5titleEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
rv2 := qtcore.NewQStringFromPointer(unsafe.Pointer(uintptr(rv)))
rv3 := rv2.ToUtf8().Data()
qtcore.DeleteQString(rv2)
return rv3
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:73
// index:0
// Public Visibility=Default Availability=Available
// [-2] void setTitle(const QString &)
/*
Sets the category title.
See also title().
*/
func (this *QWinJumpListCategory) SetTitle(title string) {
var tmpArg0 = qtcore.NewQString5(title)
var convArg0 = tmpArg0.GetCthis()
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategory8setTitleERK7QString", qtrt.FFI_TYPE_POINTER, this.GetCthis(), convArg0)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:75
// index:0
// Public Visibility=Default Availability=Available
// [4] int count() const
/*
Returns the amount of items in the category.
*/
func (this *QWinJumpListCategory) Count() int {
rv, err := qtrt.InvokeQtFunc6("_ZNK20QWinJumpListCategory5countEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
return qtrt.Cretval2go("int", rv).(int) // 1111
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:76
// index:0
// Public Visibility=Default Availability=Available
// [1] bool isEmpty() const
/*
Returns whether the category is empty.
*/
func (this *QWinJumpListCategory) IsEmpty() bool {
rv, err := qtrt.InvokeQtFunc6("_ZNK20QWinJumpListCategory7isEmptyEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
return rv != 0
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:79
// index:0
// Public Visibility=Default Availability=Available
// [-2] void addItem(QWinJumpListItem *)
/*
Adds an item to the category.
*/
func (this *QWinJumpListCategory) AddItem(item QWinJumpListItem_ITF /*777 QWinJumpListItem **/) {
var convArg0 unsafe.Pointer
if item != nil && item.QWinJumpListItem_PTR() != nil {
convArg0 = item.QWinJumpListItem_PTR().GetCthis()
}
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategory7addItemEP16QWinJumpListItem", qtrt.FFI_TYPE_POINTER, this.GetCthis(), convArg0)
qtrt.ErrPrint(err, rv)
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:80
// index:0
// Public Visibility=Default Availability=Available
// [8] QWinJumpListItem * addDestination(const QString &)
/*
Adds a destination to the category pointing to filePath.
*/
func (this *QWinJumpListCategory) AddDestination(filePath string) *QWinJumpListItem /*777 QWinJumpListItem **/ {
var tmpArg0 = qtcore.NewQString5(filePath)
var convArg0 = tmpArg0.GetCthis()
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategory14addDestinationERK7QString", qtrt.FFI_TYPE_POINTER, this.GetCthis(), convArg0)
qtrt.ErrPrint(err, rv)
return /*==*/ NewQWinJumpListItemFromPointer(unsafe.Pointer(uintptr(rv))) // 444
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:81
// index:0
// Public Visibility=Default Availability=Available
// [8] QWinJumpListItem * addLink(const QString &, const QString &, const QStringList &)
/*
Adds a link to the category using title, executablePath, and optionally arguments.
*/
func (this *QWinJumpListCategory) AddLink(title string, executablePath string, arguments qtcore.QStringList_ITF) *QWinJumpListItem /*777 QWinJumpListItem **/ {
var tmpArg0 = qtcore.NewQString5(title)
var convArg0 = tmpArg0.GetCthis()
var tmpArg1 = qtcore.NewQString5(executablePath)
var convArg1 = tmpArg1.GetCthis()
var convArg2 unsafe.Pointer
if arguments != nil && arguments.QStringList_PTR() != nil {
convArg2 = arguments.QStringList_PTR().GetCthis()
}
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategory7addLinkERK7QStringS2_RK11QStringList", qtrt.FFI_TYPE_POINTER, this.GetCthis(), convArg0, convArg1, convArg2)
qtrt.ErrPrint(err, rv)
return /*==*/ NewQWinJumpListItemFromPointer(unsafe.Pointer(uintptr(rv))) // 444
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:81
// index:0
// Public Visibility=Default Availability=Available
// [8] QWinJumpListItem * addLink(const QString &, const QString &, const QStringList &)
/*
Adds a link to the category using title, executablePath, and optionally arguments.
*/
func (this *QWinJumpListCategory) AddLinkp(title string, executablePath string) *QWinJumpListItem /*777 QWinJumpListItem **/ {
var tmpArg0 = qtcore.NewQString5(title)
var convArg0 = tmpArg0.GetCthis()
var tmpArg1 = qtcore.NewQString5(executablePath)
var convArg1 = tmpArg1.GetCthis()
// arg: 2, const QStringList &=LValueReference, QStringList=Record, , Invalid
var convArg2 unsafe.Pointer
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategory7addLinkERK7QStringS2_RK11QStringList", qtrt.FFI_TYPE_POINTER, this.GetCthis(), convArg0, convArg1, convArg2)
qtrt.ErrPrint(err, rv)
return /*==*/ NewQWinJumpListItemFromPointer(unsafe.Pointer(uintptr(rv))) // 444
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:82
// index:1
// Public Visibility=Default Availability=Available
// [8] QWinJumpListItem * addLink(const QIcon &, const QString &, const QString &, const QStringList &)
/*
Adds a link to the category using title, executablePath, and optionally arguments.
*/
func (this *QWinJumpListCategory) AddLink1(icon qtgui.QIcon_ITF, title string, executablePath string, arguments qtcore.QStringList_ITF) *QWinJumpListItem /*777 QWinJumpListItem **/ {
var convArg0 unsafe.Pointer
if icon != nil && icon.QIcon_PTR() != nil {
convArg0 = icon.QIcon_PTR().GetCthis()
}
var tmpArg1 = qtcore.NewQString5(title)
var convArg1 = tmpArg1.GetCthis()
var tmpArg2 = qtcore.NewQString5(executablePath)
var convArg2 = tmpArg2.GetCthis()
var convArg3 unsafe.Pointer
if arguments != nil && arguments.QStringList_PTR() != nil {
convArg3 = arguments.QStringList_PTR().GetCthis()
}
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategory7addLinkERK5QIconRK7QStringS5_RK11QStringList", qtrt.FFI_TYPE_POINTER, this.GetCthis(), convArg0, convArg1, convArg2, convArg3)
qtrt.ErrPrint(err, rv)
return /*==*/ NewQWinJumpListItemFromPointer(unsafe.Pointer(uintptr(rv))) // 444
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:82
// index:1
// Public Visibility=Default Availability=Available
// [8] QWinJumpListItem * addLink(const QIcon &, const QString &, const QString &, const QStringList &)
/*
Adds a link to the category using title, executablePath, and optionally arguments.
*/
func (this *QWinJumpListCategory) AddLink1p(icon qtgui.QIcon_ITF, title string, executablePath string) *QWinJumpListItem /*777 QWinJumpListItem **/ {
var convArg0 unsafe.Pointer
if icon != nil && icon.QIcon_PTR() != nil {
convArg0 = icon.QIcon_PTR().GetCthis()
}
var tmpArg1 = qtcore.NewQString5(title)
var convArg1 = tmpArg1.GetCthis()
var tmpArg2 = qtcore.NewQString5(executablePath)
var convArg2 = tmpArg2.GetCthis()
// arg: 3, const QStringList &=LValueReference, QStringList=Record, , Invalid
var convArg3 unsafe.Pointer
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategory7addLinkERK5QIconRK7QStringS5_RK11QStringList", qtrt.FFI_TYPE_POINTER, this.GetCthis(), convArg0, convArg1, convArg2, convArg3)
qtrt.ErrPrint(err, rv)
return /*==*/ NewQWinJumpListItemFromPointer(unsafe.Pointer(uintptr(rv))) // 444
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:83
// index:0
// Public Visibility=Default Availability=Available
// [8] QWinJumpListItem * addSeparator()
/*
Adds a separator to the category.
Note: Only tasks category supports separators.
*/
func (this *QWinJumpListCategory) AddSeparator() *QWinJumpListItem /*777 QWinJumpListItem **/ {
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategory12addSeparatorEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
return /*==*/ NewQWinJumpListItemFromPointer(unsafe.Pointer(uintptr(rv))) // 444
}
// /usr/include/qt/QtWinExtras/../../src/winextras/qwinjumplistcategory.h:85
// index:0
// Public Visibility=Default Availability=Available
// [-2] void clear()
/*
Clears the category.
*/
func (this *QWinJumpListCategory) Clear() {
rv, err := qtrt.InvokeQtFunc6("_ZN20QWinJumpListCategory5clearEv", qtrt.FFI_TYPE_POINTER, this.GetCthis())
qtrt.ErrPrint(err, rv)
}
/*
This enum describes the available QWinJumpListCategory types.
*/
type QWinJumpListCategory__Type = int
// A custom jump list category.
const QWinJumpListCategory__Custom QWinJumpListCategory__Type = 0
// A jump list category of "recent" items.
const QWinJumpListCategory__Recent QWinJumpListCategory__Type = 1
// A jump list category of "frequent" items.
const QWinJumpListCategory__Frequent QWinJumpListCategory__Type = 2
// A jump list category of tasks.
const QWinJumpListCategory__Tasks QWinJumpListCategory__Type = 3
func (this *QWinJumpListCategory) TypeItemName(val int) string {
switch val {
case QWinJumpListCategory__Custom: // 0
return "Custom"
case QWinJumpListCategory__Recent: // 1
return "Recent"
case QWinJumpListCategory__Frequent: // 2
return "Frequent"
case QWinJumpListCategory__Tasks: // 3
return "Tasks"
default:
return fmt.Sprintf("%d", val)
}
}
func QWinJumpListCategory_TypeItemName(val int) string {
var nilthis *QWinJumpListCategory
return nilthis.TypeItemName(val)
}
// body block end
// keep block begin
func init_unused_14867() {
if false {
reflect.TypeOf(123)
}
if false {
reflect.TypeOf(unsafe.Sizeof(0))
}
if false {
fmt.Println(123)
}
if false {
log.Println(123)
}
if false {
qtrt.KeepMe()
}
if false {
qtcore.KeepMe()
}
if false {
qtgui.KeepMe()
}
if false {
qtwidgets.KeepMe()
}
}
// keep block end