Skip to content

Commit 24c5960

Browse files
committed
Add PROGRESS theme part and state constants
1 parent 28a0e4f commit 24c5960

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

uxtheme.go

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,38 @@ const (
357357
LISS_HOTSELECTED = 6
358358
)
359359

360+
// PROGRESS parts
361+
const (
362+
PP_BAR = 1
363+
PP_BARVERT = 2
364+
PP_CHUNK = 3
365+
PP_CHUNKVERT = 4
366+
PP_FILL = 5
367+
PP_FILLVERT = 6
368+
PP_PULSEOVERLAY = 7
369+
PP_MOVEOVERLAY = 8
370+
PP_PULSEOVERLAYVERT = 9
371+
PP_MOVEOVERLAYVERT = 10
372+
PP_TRANSPARENTBAR = 11
373+
PP_TRANSPARENTBARVERT = 12
374+
)
375+
376+
// PP_FILL states
377+
const (
378+
PBFS_NORMAL = 1
379+
PBFS_ERROR = 2
380+
PBFS_PAUSED = 3
381+
PBFS_PARTIAL = 4
382+
)
383+
384+
// PP_FILLVERT states
385+
const (
386+
PBFVS_NORMAL = 1
387+
PBFVS_ERROR = 2
388+
PBFVS_PAUSED = 3
389+
PBFVS_PARTIAL = 4
390+
)
391+
360392
// TAB parts
361393
const (
362394
TABP_TABITEM = 1

0 commit comments

Comments
 (0)