WIP on getting ColorDialog working
This commit is contained in:
parent
e41d53b1e0
commit
aea6e2fc88
@ -1,5 +1,7 @@
|
|||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
|
||||||
|
extern HWND s_window;
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
int Dialog_open(wchar_t* path, int pathSize)
|
int Dialog_open(wchar_t* path, int pathSize)
|
||||||
@ -46,6 +48,7 @@ void Dialog_showColorPicker(unsigned int* color)
|
|||||||
cc.lStructSize = sizeof(CHOOSECOLOR);
|
cc.lStructSize = sizeof(CHOOSECOLOR);
|
||||||
cc.rgbResult = *color;
|
cc.rgbResult = *color;
|
||||||
cc.Flags = CC_FULLOPEN | CC_RGBINIT;
|
cc.Flags = CC_FULLOPEN | CC_RGBINIT;
|
||||||
|
cc.hwndOwner = s_window;
|
||||||
if (ChooseColor(&cc))
|
if (ChooseColor(&cc))
|
||||||
*color = cc.rgbResult;
|
*color = cc.rgbResult;
|
||||||
}
|
}
|
||||||
@ -13,7 +13,7 @@ void Window_buildMenu();
|
|||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
static HWND s_window;
|
HWND s_window;
|
||||||
static HINSTANCE s_instance;
|
static HINSTANCE s_instance;
|
||||||
static HDC s_dc;
|
static HDC s_dc;
|
||||||
static HGLRC s_context;
|
static HGLRC s_context;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user