2015-05-14 08:43:25 -05:00
// 7 april 2015
/*
This file assumes that you have included < windows . h > and " ui.h " beforehand . It provides API - specific functions for interfacing with foreign controls in Windows .
*/
# ifndef __UI_UI_WINDOWS_H__
# define __UI_UI_WINDOWS_H__
2015-06-05 15:56:43 -05:00
// This creates a HWND compatible with libui.
2015-05-29 13:56:11 -05:00
_UI_EXTERN HWND uiWindowsUtilCreateControlHWND ( DWORD dwExStyle , LPCWSTR lpClassName , LPCWSTR lpWindowName , DWORD dwStyle , HINSTANCE hInstance , LPVOID lpParam , BOOL useStandardControlFont ) ;
2015-06-05 15:56:43 -05:00
// These provide single-HWND implementations of uiControl methods you can use in yours.
2015-05-29 13:56:11 -05:00
_UI_EXTERN void uiWindowsUtilDestroy ( HWND hwnd ) ;
_UI_EXTERN void uiWindowsUtilSetParent ( HWND hwnd , uiControl * parent ) ;
_UI_EXTERN void uiWindowsUtilResize ( HWND hwnd , intmax_t x , intmax_t y , intmax_t width , intmax_t height , uiSizing * d ) ;
2015-06-01 12:02:43 -05:00
_UI_EXTERN void uiWindowsUtilShow ( HWND hwnd ) ;
2015-05-29 13:56:11 -05:00
_UI_EXTERN void uiWindowsUtilHide ( HWND hwnd ) ;
2015-06-01 12:02:43 -05:00
_UI_EXTERN void uiWindowsUtilEnable ( HWND hwnd ) ;
2015-05-29 13:56:11 -05:00
_UI_EXTERN void uiWindowsUtilDisable ( HWND hwnd ) ;
2015-05-30 16:17:20 -05:00
_UI_EXTERN uintptr_t uiWindowsUtilStartZOrder ( HWND hwnd ) ;
_UI_EXTERN uintptr_t uiWindowsUtilSetZOrder ( HWND hwnd , uintptr_t insertAfter ) ;
_UI_EXTERN int uiWindowsUtilHasTabStops ( HWND hwnd ) ;
2015-06-05 15:56:43 -05:00
// This creates a uiControl with most uiControl methods filled out for controls that only require a single HWND.
// You must provide Handle() (which returns that HWND) and PreferredSize() yourself.
2015-05-29 13:56:11 -05:00
_UI_EXTERN uiControl * uiWindowsNewSingleHWNDControl ( uintmax_t type ) ;
2015-05-14 08:43:25 -05:00
// This contains the Windows-specific parts of the uiSizing structure.
// BaseX and BaseY are the dialog base units.
// InternalLeading is the standard control font's internal leading; labels in uiForms use this for correct Y positioning.
2015-05-18 11:04:52 -05:00
// CoordFrom and CoordTo are the window handles to convert coordinates passed to uiControlResize() from and to (viaa MapWindowRect()) before passing to one of the Windows API resizing functions.
2015-05-14 08:43:25 -05:00
struct uiSizingSys {
int BaseX ;
int BaseY ;
LONG InternalLeading ;
2015-05-18 11:04:52 -05:00
HWND CoordFrom ;
HWND CoordTo ;
2015-05-14 08:43:25 -05:00
} ;
// Use these in your preferredSize() implementation with baseX and baseY.
# define uiWindowsDlgUnitsToX(dlg, baseX) MulDiv((dlg), baseX, 4)
# define uiWindowsDlgUnitsToY(dlg, baseY) MulDiv((dlg), baseY, 8)
2015-05-18 10:46:50 -05:00
// Use this as your control's Sizing() implementation.
2015-06-05 16:12:51 -05:00
_UI_EXTERN uiSizing * uiWindowsSizing ( uiControl * c ) ;
2015-05-14 08:43:25 -05:00
// and use this if you need the text of the window width
_UI_EXTERN intmax_t uiWindowsWindowTextWidth ( HWND hwnd ) ;
2015-06-03 14:49:44 -05:00
// these functions get and set the window text for a single HWND
2015-05-14 08:43:25 -05:00
// the value returned should be freed with uiFreeText()
2015-06-03 13:54:25 -05:00
_UI_EXTERN char * uiWindowsUtilText ( HWND ) ;
_UI_EXTERN void uiWindowsUtilSetText ( HWND , const char * ) ;
2015-05-14 08:43:25 -05:00
2015-06-05 15:56:43 -05:00
// These provide event handling.
// For WM_COMMAND, the WORD parameter is the notification code.
// For WM_HSCROLL, the WORD parameter is the scroll operation.
extern void uiWindowsRegisterWM_COMMANDHandler ( HWND , BOOL ( * ) ( uiControl * , HWND , WORD , LRESULT * ) , uiControl * ) ;
extern void uiWindowsRegisterWM_NOTIFYHandler ( HWND , BOOL ( * ) ( uiControl * , HWND , NMHDR * , LRESULT * ) , uiControl * ) ;
extern void uiWindowsRegisterWM_HSCROLLHandler ( HWND , BOOL ( * ) ( uiControl * , HWND , WORD , LRESULT * ) , uiControl * ) ;
extern void uiWindowsUnregisterWM_COMMANDHandler ( HWND ) ;
extern void uiWindowsUnregisterWM_NOTIFYHandler ( HWND ) ;
extern void uiWindowsUnregisterWM_HSCROLLHandler ( HWND ) ;
extern void uiWindowsRegisterReceiveWM_WININICHANGE ( HWND ) ;
extern void uiWindowsUnregisterReceiveWM_WININICHANGE ( HWND ) ;
2015-05-14 08:43:25 -05:00
# endif