-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtableviewcolumn.go
452 lines (352 loc) · 8.76 KB
/
tableviewcolumn.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
// Copyright 2013 The Walk Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build windows
package walk
import (
"syscall"
"unsafe"
"github.com/lxn/win"
)
// TableViewColumn represents a column in a TableView.
type TableViewColumn struct {
tv *TableView
name string
dataMember string
alignment Alignment1D
format string
precision int
title string
titleOverride string
width int
lessFunc func(i, j int) bool
visible bool
frozen bool
}
// NewTableViewColumn returns a new TableViewColumn.
func NewTableViewColumn() *TableViewColumn {
return &TableViewColumn{
format: "%v",
visible: true,
width: 50,
}
}
// Alignment returns the alignment of the TableViewColumn.
func (tvc *TableViewColumn) Alignment() Alignment1D {
return tvc.alignment
}
// SetAlignment sets the alignment of the TableViewColumn.
func (tvc *TableViewColumn) SetAlignment(alignment Alignment1D) (err error) {
if alignment == tvc.alignment {
return nil
}
old := tvc.alignment
defer func() {
if err != nil {
tvc.alignment = old
}
}()
tvc.alignment = alignment
return tvc.update()
}
// DataMember returns the data member this TableViewColumn is bound against.
func (tvc *TableViewColumn) DataMember() string {
return tvc.dataMember
}
// DataMemberEffective returns the effective data member this TableViewColumn is
// bound against.
func (tvc *TableViewColumn) DataMemberEffective() string {
if tvc.dataMember != "" {
return tvc.dataMember
}
return tvc.name
}
// SetDataMember sets the data member this TableViewColumn is bound against.
func (tvc *TableViewColumn) SetDataMember(dataMember string) {
tvc.dataMember = dataMember
}
// Format returns the format string for converting a value into a string.
func (tvc *TableViewColumn) Format() string {
return tvc.format
}
// SetFormat sets the format string for converting a value into a string.
func (tvc *TableViewColumn) SetFormat(format string) (err error) {
if format == tvc.format {
return nil
}
old := tvc.format
defer func() {
if err != nil {
tvc.format = old
}
}()
tvc.format = format
if tvc.tv == nil {
return nil
}
return tvc.tv.Invalidate()
}
// Name returns the name of this TableViewColumn.
func (tvc *TableViewColumn) Name() string {
return tvc.name
}
// SetName sets the name of this TableViewColumn.
func (tvc *TableViewColumn) SetName(name string) {
tvc.name = name
}
// Precision returns the number of decimal places for formatting float32,
// float64 or big.Rat values.
func (tvc *TableViewColumn) Precision() int {
return tvc.precision
}
// SetPrecision sets the number of decimal places for formatting float32,
// float64 or big.Rat values.
func (tvc *TableViewColumn) SetPrecision(precision int) (err error) {
if precision == tvc.precision {
return nil
}
old := tvc.precision
defer func() {
if err != nil {
tvc.precision = old
}
}()
tvc.precision = precision
if tvc.tv == nil {
return nil
}
return tvc.tv.Invalidate()
}
// Title returns the (default) text to display in the column header.
func (tvc *TableViewColumn) Title() string {
return tvc.title
}
// SetTitle sets the (default) text to display in the column header.
func (tvc *TableViewColumn) SetTitle(title string) (err error) {
if title == tvc.title {
return nil
}
old := tvc.title
defer func() {
if err != nil {
tvc.title = old
}
}()
tvc.title = title
return tvc.update()
}
// TitleOverride returns the (overridden by user) text to display in the column
// header.
func (tvc *TableViewColumn) TitleOverride() string {
return tvc.titleOverride
}
// SetTitleOverride sets the (overridden by user) text to display in the column
// header.
func (tvc *TableViewColumn) SetTitleOverride(titleOverride string) (err error) {
if titleOverride == tvc.titleOverride {
return nil
}
old := tvc.titleOverride
defer func() {
if err != nil {
tvc.titleOverride = old
}
}()
tvc.titleOverride = titleOverride
return tvc.update()
}
// TitleEffective returns the effective text to display in the column header.
func (tvc *TableViewColumn) TitleEffective() string {
if tvc.titleOverride != "" {
return tvc.titleOverride
}
if tvc.title != "" {
return tvc.title
}
return tvc.DataMemberEffective()
}
// Visible returns if the column is visible.
func (tvc *TableViewColumn) Visible() bool {
return tvc.visible
}
// SetVisible sets if the column is visible.
func (tvc *TableViewColumn) SetVisible(visible bool) (err error) {
if visible == tvc.visible {
return nil
}
old := tvc.visible
defer func() {
if err != nil {
tvc.visible = old
}
}()
tvc.visible = visible
if tvc.tv == nil {
return nil
}
if visible {
return tvc.create()
}
return tvc.destroy()
}
// Frozen returns if the column is frozen.
func (tvc *TableViewColumn) Frozen() bool {
return tvc.frozen
}
// SetFrozen sets if the column is frozen.
func (tvc *TableViewColumn) SetFrozen(frozen bool) (err error) {
if frozen == tvc.frozen {
return nil
}
var checkBoxes bool
if tvc.tv != nil {
checkBoxes = tvc.tv.CheckBoxes()
}
old := tvc.frozen
defer func() {
if err != nil {
tvc.frozen = old
if tvc.tv != nil {
tvc.create()
}
}
if tvc.tv != nil {
tvc.tv.hasFrozenColumn = tvc.tv.visibleFrozenColumnCount() > 0
tvc.tv.SetCheckBoxes(checkBoxes)
tvc.tv.applyImageList()
}
}()
if tvc.tv != nil {
if err = tvc.destroy(); err != nil {
return
}
}
tvc.frozen = frozen
if tvc.tv != nil {
return tvc.create()
}
return nil
}
// Width returns the width of the column in pixels.
func (tvc *TableViewColumn) Width() int {
if tvc.tv == nil || !tvc.visible {
return tvc.width
}
return int(tvc.sendMessage(win.LVM_GETCOLUMNWIDTH, uintptr(tvc.indexInListView()), 0))
}
// SetWidth sets the width of the column in pixels.
func (tvc *TableViewColumn) SetWidth(width int) (err error) {
if width == tvc.width {
return nil
}
old := tvc.width
defer func() {
if err != nil {
tvc.width = old
}
}()
tvc.width = width
return tvc.update()
}
// LessFunc returns the less func of this TableViewColumn.
//
// This function is used to provide custom sorting for models based on ReflectTableModel only.
func (tvc *TableViewColumn) LessFunc() func(i, j int) bool {
return tvc.lessFunc
}
// SetLessFunc sets the less func of this TableViewColumn.
//
// This function is used to provide custom sorting for models based on ReflectTableModel only.
func (tvc *TableViewColumn) SetLessFunc(lessFunc func(i, j int) bool) {
tvc.lessFunc = lessFunc
}
func (tvc *TableViewColumn) indexInListView() int32 {
if tvc.tv == nil {
return -1
}
var idx int32
for _, c := range tvc.tv.columns.items {
if c.frozen != tvc.frozen {
continue
}
if c == tvc {
break
}
if c.visible {
idx++
}
}
return idx
}
func (tvc *TableViewColumn) create() error {
var lvc win.LVCOLUMN
index := tvc.indexInListView()
lvc.Mask = win.LVCF_FMT | win.LVCF_WIDTH | win.LVCF_TEXT | win.LVCF_SUBITEM
lvc.ISubItem = index
lvc.PszText = syscall.StringToUTF16Ptr(tvc.TitleEffective())
if tvc.width > 0 {
lvc.Cx = int32(tvc.width)
} else {
lvc.Cx = 100
}
switch tvc.alignment {
case AlignCenter:
lvc.Fmt = 2
case AlignFar:
lvc.Fmt = 1
}
if -1 == int(tvc.sendMessage(win.LVM_INSERTCOLUMN, uintptr(index), uintptr(unsafe.Pointer(&lvc)))) {
return newError("LVM_INSERTCOLUMN")
}
tvc.tv.updateLVSizes()
return nil
}
func (tvc *TableViewColumn) destroy() error {
width := tvc.Width()
if win.FALSE == tvc.sendMessage(win.LVM_DELETECOLUMN, uintptr(tvc.indexInListView()), 0) {
return newError("LVM_DELETECOLUMN")
}
tvc.width = width
tvc.tv.updateLVSizes()
return nil
}
func (tvc *TableViewColumn) update() error {
if tvc.tv == nil || !tvc.visible {
return nil
}
lvc := tvc.getLVCOLUMN()
if win.FALSE == tvc.sendMessage(win.LVM_SETCOLUMN, uintptr(tvc.indexInListView()), uintptr(unsafe.Pointer(lvc))) {
return newError("LVM_SETCOLUMN")
}
tvc.tv.updateLVSizes()
return nil
}
func (tvc *TableViewColumn) getLVCOLUMN() *win.LVCOLUMN {
var lvc win.LVCOLUMN
lvc.Mask = win.LVCF_FMT | win.LVCF_WIDTH | win.LVCF_TEXT | win.LVCF_SUBITEM
lvc.ISubItem = int32(tvc.indexInListView())
lvc.PszText = syscall.StringToUTF16Ptr(tvc.TitleEffective())
lvc.Cx = int32(tvc.width)
switch tvc.alignment {
case AlignCenter:
lvc.Fmt = 2
case AlignFar:
lvc.Fmt = 1
}
return &lvc
}
func (tvc *TableViewColumn) sendMessage(msg uint32, wp, lp uintptr) uintptr {
if tvc.tv == nil {
return 0
}
tvc.tv.hasFrozenColumn = tvc.tv.visibleFrozenColumnCount() > 0
tvc.tv.SetCheckBoxes(tvc.tv.CheckBoxes())
tvc.tv.applyImageList()
var hwnd win.HWND
if tvc.frozen {
hwnd = tvc.tv.hwndFrozenLV
} else {
hwnd = tvc.tv.hwndNormalLV
}
return win.SendMessage(hwnd, msg, wp, lp)
}