mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
load windows icon from Configrc
This commit is contained in:
parent
bcfe441d0e
commit
2b378c3dc4
@ -16,6 +16,8 @@ ConfigureFn(config_wdxdisplay) {
|
||||
init_libwdxdisplay();
|
||||
}
|
||||
|
||||
string IconFileName = config_wdxdisplay.GetString("win32-window-icon","");
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: init_libwdxdisplay
|
||||
// Description: Initializes the library. This must be called at
|
||||
|
@ -11,6 +11,8 @@
|
||||
|
||||
NotifyCategoryDecl(wdxdisplay, EXPCL_PANDADX, EXPTP_PANDADX);
|
||||
|
||||
extern string IconFileName;
|
||||
|
||||
extern EXPCL_PANDADX void init_libwdxdisplay();
|
||||
|
||||
#endif /* __CONFIG_WDXDISPLAY_H__ */
|
||||
|
@ -1093,17 +1093,23 @@ void wdxGraphicsWindow::config(void) {
|
||||
|
||||
// Create a GSG to manage the graphics
|
||||
make_gsg();
|
||||
HINSTANCE hinstance = GetModuleHandle(NULL);
|
||||
|
||||
WNDCLASS wc;
|
||||
HINSTANCE hinstance = GetModuleHandle(NULL);
|
||||
|
||||
// Clear before filling in window structure!
|
||||
ZeroMemory(&wc, sizeof(WNDCLASS));
|
||||
wc.style = CS_HREDRAW | CS_VREDRAW; //CS_OWNDC;
|
||||
wc.lpfnWndProc = (WNDPROC) static_window_proc;
|
||||
wc.hInstance = hinstance;
|
||||
wc.hIcon = LoadIcon(hinstance, IDI_WINLOGO);
|
||||
wc.hCursor = LoadCursor(NULL/*hinstance*/, IDC_CROSS);
|
||||
|
||||
if(!IconFileName.empty()) {
|
||||
wc.hIcon = (HICON) LoadImage(NULL, IconFileName.c_str(), IMAGE_ICON, 0, 0, LR_LOADFROMFILE);
|
||||
} else {
|
||||
wc.hIcon = NULL; // use default app icon
|
||||
}
|
||||
|
||||
wc.hCursor = LoadCursor(NULL, IDC_CROSS);
|
||||
wc.hbrBackground = (HBRUSH)GetStockObject(BLACK_BRUSH);
|
||||
wc.lpszMenuName = NULL;
|
||||
wc.lpszClassName = "wdxDisplay";
|
||||
|
@ -16,6 +16,8 @@ ConfigureFn(config_wgldisplay) {
|
||||
init_libwgldisplay();
|
||||
}
|
||||
|
||||
string IconFileName = config_wgldisplay.GetString("win32-window-icon","");
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
// Function: init_libwgldisplay
|
||||
// Description: Initializes the library. This must be called at
|
||||
|
@ -11,6 +11,8 @@
|
||||
|
||||
NotifyCategoryDecl(wgldisplay, EXPCL_PANDAGL, EXPTP_PANDAGL);
|
||||
|
||||
extern string IconFileName;
|
||||
|
||||
extern EXPCL_PANDAGL void init_libwgldisplay();
|
||||
|
||||
#endif /* __CONFIG_WGLDISPLAY_H__ */
|
||||
|
@ -33,12 +33,17 @@ wglGraphicsPipe::wglGraphicsPipe(const PipeSpecifier& spec)
|
||||
stdwc.style = CS_OWNDC;
|
||||
stdwc.lpfnWndProc = (WNDPROC)static_window_proc;
|
||||
stdwc.hInstance = hinstance;
|
||||
stdwc.hIcon = LoadIcon(hinstance, IDI_WINLOGO);
|
||||
stdwc.hCursor = LoadCursor(hinstance, IDC_CROSS);
|
||||
stdwc.hCursor = LoadCursor(NULL, IDC_CROSS);
|
||||
stdwc.hbrBackground = NULL;
|
||||
stdwc.lpszMenuName = NULL;
|
||||
stdwc.lpszClassName = "wglStandard";
|
||||
|
||||
if(!IconFileName.empty()) {
|
||||
stdwc.hIcon = (HICON) LoadImage(NULL, IconFileName.c_str(), IMAGE_ICON, 0, 0, LR_LOADFROMFILE);
|
||||
} else {
|
||||
stdwc.hIcon = NULL; // use default app icon
|
||||
}
|
||||
|
||||
if (!RegisterClass(&stdwc)) {
|
||||
wgldisplay_cat.fatal()
|
||||
<< "wglGraphicsPipe::construct(): could not register standard window "
|
||||
|
Loading…
x
Reference in New Issue
Block a user