| 1 | /*
 | 
|---|
| 2 |  *
 | 
|---|
| 3 |  * Project Odin Software License can be found in LICENSE.TXT
 | 
|---|
| 4 |  *
 | 
|---|
| 5 |  */
 | 
|---|
| 6 | /*
 | 
|---|
| 7 |  * Win32 system color API functions for OS/2
 | 
|---|
| 8 |  *
 | 
|---|
| 9 |  * Copyright 1998 Sander van Leeuwen
 | 
|---|
| 10 |  *
 | 
|---|
| 11 |  */
 | 
|---|
| 12 | #ifndef __SYSCLR_H__
 | 
|---|
| 13 | #define __SYSCLR_H__
 | 
|---|
| 14 | 
 | 
|---|
| 15 | #define COLOR_SCROLLBAR              0
 | 
|---|
| 16 | #define COLOR_BACKGROUND             1
 | 
|---|
| 17 | #define COLOR_ACTIVECAPTION          2
 | 
|---|
| 18 | #define COLOR_INACTIVECAPTION        3
 | 
|---|
| 19 | #define COLOR_MENU                   4
 | 
|---|
| 20 | #define COLOR_WINDOW                 5
 | 
|---|
| 21 | #define COLOR_WINDOWFRAME            6
 | 
|---|
| 22 | #define COLOR_MENUTEXT               7
 | 
|---|
| 23 | #define COLOR_WINDOWTEXT             8
 | 
|---|
| 24 | #define COLOR_CAPTIONTEXT            9
 | 
|---|
| 25 | #define COLOR_ACTIVEBORDER           10
 | 
|---|
| 26 | #define COLOR_INACTIVEBORDER         11
 | 
|---|
| 27 | #define COLOR_APPWORKSPACE           12
 | 
|---|
| 28 | #define COLOR_HIGHLIGHT              13
 | 
|---|
| 29 | #define COLOR_HIGHLIGHTTEXT          14
 | 
|---|
| 30 | #define COLOR_BTNFACE                15
 | 
|---|
| 31 | #define COLOR_BTNSHADOW              16
 | 
|---|
| 32 | #define COLOR_GRAYTEXT               17
 | 
|---|
| 33 | #define COLOR_BTNTEXT                18
 | 
|---|
| 34 | #define COLOR_INACTIVECAPTIONTEXT    19
 | 
|---|
| 35 | #define COLOR_BTNHIGHLIGHT           20
 | 
|---|
| 36 | //GetSysColor win95/NT4 extra options
 | 
|---|
| 37 | #define COLOR_3DDKSHADOW        21
 | 
|---|
| 38 | #define COLOR_3DLIGHT           22
 | 
|---|
| 39 | #define COLOR_INFOTEXT          23
 | 
|---|
| 40 | #define COLOR_INFOBK            24
 | 
|---|
| 41 | 
 | 
|---|
| 42 | #define COLOR_DESKTOP           COLOR_BACKGROUND
 | 
|---|
| 43 | #define COLOR_3DFACE            COLOR_BTNFACE
 | 
|---|
| 44 | #define COLOR_3DSHADOW          COLOR_BTNSHADOW
 | 
|---|
| 45 | #define COLOR_3DHIGHLIGHT       COLOR_BTNHIGHLIGHT
 | 
|---|
| 46 | #define COLOR_3DHILIGHT         COLOR_BTNHIGHLIGHT
 | 
|---|
| 47 | #define COLOR_BTNHILIGHT        COLOR_BTNHIGHLIGHT
 | 
|---|
| 48 | 
 | 
|---|
| 49 | #endif
 | 
|---|