mirror of
https://github.com/reactos/reactos.git
synced 2025-05-13 14:20:31 +00:00

- Fix some w32api definitions - MSVC/PSDK Compatibility fixes. - Clean up user32 headers for greater PCH usage. svn path=/trunk/; revision=16811
113 lines
3.1 KiB
C
113 lines
3.1 KiB
C
#ifndef _ROS_CONTROLS_H
|
|
#define _ROS_CONTROLS_H
|
|
|
|
/* Missing from Winuser.h */
|
|
#define ES_COMBO 0x00000200 /* Undocumented. Parent is a combobox */
|
|
#ifndef MAKEINTATOMA
|
|
#define MAKEINTATOMA(atom) ((LPCSTR)((ULONG_PTR)((WORD)(atom))))
|
|
#endif
|
|
#ifndef WM_ISACTIVEICON
|
|
#define WM_ISACTIVEICON 0x0035
|
|
#endif
|
|
|
|
#ifndef __USE_W32API
|
|
#if defined(STRICT)
|
|
typedef INT (CALLBACK *EDITWORDBREAKPROCA)(LPSTR,INT,INT,INT);
|
|
typedef INT (CALLBACK *EDITWORDBREAKPROCW)(LPWSTR,INT,INT,INT);
|
|
#else
|
|
typedef FARPROC EDITWORDBREAKPROCA;
|
|
typedef FARPROC EDITWORDBREAKPROCW;
|
|
#endif
|
|
#endif
|
|
|
|
#ifndef HBMMENU_CALLBACK
|
|
#define HBMMENU_CALLBACK ((HBITMAP) -1)
|
|
#endif
|
|
#ifndef HBMMENU_SYSTEM
|
|
#define HBMMENU_SYSTEM ((HBITMAP) 1)
|
|
#endif
|
|
#ifndef HBMMENU_MBAR_RESTORE
|
|
#define HBMMENU_MBAR_RESTORE ((HBITMAP) 2)
|
|
#endif
|
|
#ifndef HBMMENU_MBAR_MINIMIZE
|
|
#define HBMMENU_MBAR_MINIMIZE ((HBITMAP) 3)
|
|
#endif
|
|
#ifndef HBMMENU_MBAR_CLOSE
|
|
#define HBMMENU_MBAR_CLOSE ((HBITMAP) 5)
|
|
#endif
|
|
#ifndef HBMMENU_MBAR_CLOSE_D
|
|
#define HBMMENU_MBAR_CLOSE_D ((HBITMAP) 6)
|
|
#endif
|
|
#ifndef HBMMENU_MBAR_MINIMIZE_D
|
|
#define HBMMENU_MBAR_MINIMIZE_D ((HBITMAP) 7)
|
|
#endif
|
|
#ifndef HBMMENU_POPUP_CLOSE
|
|
#define HBMMENU_POPUP_CLOSE ((HBITMAP) 8)
|
|
#endif
|
|
#ifndef HBMMENU_POPUP_RESTORE
|
|
#define HBMMENU_POPUP_RESTORE ((HBITMAP) 9)
|
|
#endif
|
|
#ifndef HBMMENU_POPUP_MAXIMIZE
|
|
#define HBMMENU_POPUP_MAXIMIZE ((HBITMAP) 10)
|
|
#endif
|
|
#ifndef HBMMENU_POPUP_MINIMIZE
|
|
#define HBMMENU_POPUP_MINIMIZE ((HBITMAP) 11)
|
|
#endif
|
|
|
|
/* winuser.h */
|
|
|
|
|
|
// I dont know where this goes
|
|
|
|
#define LB_CARETON 0x01a3
|
|
#define LB_CARETOFF 0x01a4
|
|
|
|
/* combo box */
|
|
|
|
#define ID_CB_LISTBOX 1000
|
|
#define ID_CB_EDIT 1001
|
|
|
|
/* Combo box message return values */
|
|
#define CB_OKAY 0
|
|
|
|
/* internal flags */
|
|
#define CBF_DROPPED 0x0001
|
|
#define CBF_BUTTONDOWN 0x0002
|
|
#define CBF_NOROLLUP 0x0004
|
|
#define CBF_MEASUREITEM 0x0008
|
|
#define CBF_FOCUSED 0x0010
|
|
#define CBF_CAPTURE 0x0020
|
|
#define CBF_EDIT 0x0040
|
|
#define CBF_NORESIZE 0x0080
|
|
#define CBF_NOTIFY 0x0100
|
|
#define CBF_NOREDRAW 0x0200
|
|
#define CBF_SELCHANGE 0x0400
|
|
#define CBF_NOEDITNOTIFY 0x1000
|
|
#define CBF_NOLBSELECT 0x2000 /* do not change current selection */
|
|
#define CBF_EUI 0x8000
|
|
|
|
/* combo state struct */
|
|
typedef struct
|
|
{
|
|
HWND self;
|
|
HWND owner;
|
|
UINT dwStyle;
|
|
HWND hWndEdit;
|
|
HWND hWndLBox;
|
|
UINT wState;
|
|
HFONT hFont;
|
|
RECT textRect;
|
|
RECT buttonRect;
|
|
RECT droppedRect;
|
|
INT droppedIndex;
|
|
INT fixedOwnerDrawHeight;
|
|
INT droppedWidth; /* last two are not used unless set */
|
|
INT editHeight; /* explicitly */
|
|
} HEADCOMBO,*LPHEADCOMBO;
|
|
|
|
/* Note, that CBS_DROPDOWNLIST style is actually (CBS_SIMPLE | CBS_DROPDOWN) */
|
|
#define CB_GETTYPE( lphc ) ((lphc)->dwStyle & (CBS_DROPDOWNLIST))
|
|
|
|
extern BOOL COMBO_FlipListbox( LPHEADCOMBO, BOOL, BOOL );
|
|
|
|
#endif /* _ROS_CONTROLS_H */
|