comparison dw.h @ 1556:4a9c574d5c17

Fixed on Windows showing themed static text on colored boxes when the window is glass. Fixed off by one in scrollbox scroller bars on Windows. Moved class name defines out of the main header and into the Windows source file. Updated copyright dates to 2012.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sun, 15 Jan 2012 22:36:41 +0000
parents 1c6593b0ce45
children 080b764e8982
comparison
equal deleted inserted replaced
1555:5b5da6d21f08 1556:4a9c574d5c17
574 574
575 /* Key Modifiers */ 575 /* Key Modifiers */
576 #define KC_CTRL (1) 576 #define KC_CTRL (1)
577 #define KC_SHIFT (1 << 1) 577 #define KC_SHIFT (1 << 1)
578 #define KC_ALT (1 << 2) 578 #define KC_ALT (1 << 2)
579
580 #define STATICCLASSNAME "STATIC"
581 #define COMBOBOXCLASSNAME "COMBOBOX"
582 #define LISTBOXCLASSNAME "LISTBOX"
583 #define BUTTONCLASSNAME "BUTTON"
584 #define POPUPMENUCLASSNAME "POPUPMENU"
585 #define EDITCLASSNAME "EDIT"
586 #define FRAMECLASSNAME "FRAME"
587 #define SCROLLBARCLASSNAME "SCROLLBAR"
588
589 #define ClassName "dynamicwindows"
590 #define SplitbarClassName "dwsplitbar"
591 #define ObjectClassName "dwobjectclass"
592 #define BrowserClassName "dwbrowserclass"
593 #define ScrollClassName "dwscrollclass"
594 #define StatusbarClassName "dwstatusbar"
595 #define DefaultFont NULL
596 579
597 typedef struct _color { 580 typedef struct _color {
598 int fore; 581 int fore;
599 int back; 582 int back;
600 HWND combo, buddy; 583 HWND combo, buddy;