/* =========================================================================== IceTech GPL Source Code Copyright (C) 2026 Justin Marshall This file is part of the IceTech GPL Source Code (?IceTech Source Code?). IceTech Source Code is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. IceTech Source Code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with IceTech Source Code. If not, see . In addition, the IceTech Source Code is also subject to certain additional terms. You should have received a copy of these additional terms immediately following the terms and conditions of the GNU General Public License which accompanied the IceTech Source Code. If not, please request a copy in writing from id Software at the address below. If you have questions concerning this license or the applicable additional terms, you may contact in writing Justin Marshall, justinmarshall20@gmail.com =========================================================================== */ #include "precompiled.h" #pragma hdrstop #include "qe3.h" #include "Radiant.h" #include "TextureBar.h" #include //++timo TODO : the whole CTextureBar has to be modified for the new texture code #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif // -------------------------------------------------------------------------- // IceTech dark MFC/common-control helper // -------------------------------------------------------------------------- #ifndef BS_TYPEMASK #define BS_TYPEMASK 0x0000000F #endif static const COLORREF ICE_DARK_BG = RGB(17, 19, 23); static const COLORREF ICE_DARK_PANEL = RGB(24, 27, 32); static const COLORREF ICE_DARK_PANEL_ALT = RGB(29, 33, 39); static const COLORREF ICE_DARK_FIELD = RGB(14, 16, 20); static const COLORREF ICE_DARK_BORDER = RGB(55, 62, 72); static const COLORREF ICE_DARK_BORDER_HOT = RGB(87, 166, 255); static const COLORREF ICE_DARK_TEXT = RGB(226, 232, 240); static const COLORREF ICE_DARK_TEXT_MUTED = RGB(151, 163, 184); static const COLORREF ICE_DARK_TEXT_DISABLED = RGB(103, 112, 128); static const COLORREF ICE_DARK_ACCENT = RGB(87, 166, 255); static const char* ICE_DARK_PARENT_OLDPROC = "IceTech.Dark.ParentOldProc"; static const char* ICE_DARK_CONTROL_OLDPROC = "IceTech.Dark.ControlOldProc"; static int IceDark_MaxInt(int a, int b) { return (a > b) ? a : b; } static HBRUSH IceDark_BgBrush() { static HBRUSH hBrush = ::CreateSolidBrush(ICE_DARK_BG); return hBrush; } static HBRUSH IceDark_PanelBrush() { static HBRUSH hBrush = ::CreateSolidBrush(ICE_DARK_PANEL); return hBrush; } static HBRUSH IceDark_FieldBrush() { static HBRUSH hBrush = ::CreateSolidBrush(ICE_DARK_FIELD); return hBrush; } static void IceDark_FillRect(HDC hDC, const RECT& rc, COLORREF color) { HBRUSH brush = ::CreateSolidBrush(color); ::FillRect(hDC, &rc, brush); ::DeleteObject(brush); } static void IceDark_FrameRect(HDC hDC, const RECT& rc, COLORREF color) { HBRUSH brush = ::CreateSolidBrush(color); ::FrameRect(hDC, &rc, brush); ::DeleteObject(brush); } static void IceDark_ApplyNativeTheme(HWND hWnd) { if (!hWnd) { return; } typedef HRESULT (WINAPI *SetWindowThemeProc)(HWND, LPCWSTR, LPCWSTR); typedef BOOL (WINAPI *AllowDarkModeForWindowProc)(HWND, BOOL); static HMODULE hUxTheme = ::LoadLibraryA("uxtheme.dll"); static SetWindowThemeProc pSetWindowTheme = hUxTheme ? (SetWindowThemeProc)::GetProcAddress(hUxTheme, "SetWindowTheme") : NULL; static AllowDarkModeForWindowProc pAllowDarkModeForWindow = hUxTheme ? (AllowDarkModeForWindowProc)::GetProcAddress(hUxTheme, MAKEINTRESOURCEA(133)) : NULL; if (pAllowDarkModeForWindow) { pAllowDarkModeForWindow(hWnd, TRUE); } if (pSetWindowTheme) { pSetWindowTheme(hWnd, L"DarkMode_Explorer", NULL); } ::SendMessage(hWnd, WM_THEMECHANGED, 0, 0); } static void IceDark_RemoveClientEdge(HWND hWnd) { if (!hWnd) { return; } LONG exStyle = ::GetWindowLong(hWnd, GWL_EXSTYLE); if (exStyle & WS_EX_CLIENTEDGE) { ::SetWindowLong(hWnd, GWL_EXSTYLE, exStyle & ~WS_EX_CLIENTEDGE); ::SetWindowPos(hWnd, NULL, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE | SWP_FRAMECHANGED); } } static void IceDark_DrawFrame(HWND hWnd, COLORREF color) { HDC hDC = ::GetWindowDC(hWnd); if (!hDC) { return; } RECT rc; ::GetWindowRect(hWnd, &rc); ::OffsetRect(&rc, -rc.left, -rc.top); IceDark_FrameRect(hDC, rc, color); ::ReleaseDC(hWnd, hDC); } static void IceDark_DrawButton(HWND hWnd, HDC hDC) { RECT rc; ::GetClientRect(hWnd, &rc); const UINT style = (UINT)::GetWindowLong(hWnd, GWL_STYLE); const UINT type = style & BS_TYPEMASK; const bool enabled = ::IsWindowEnabled(hWnd) ? true : false; const bool pushed = (::SendMessage(hWnd, BM_GETSTATE, 0, 0) & BST_PUSHED) != 0; const bool checked = (::SendMessage(hWnd, BM_GETCHECK, 0, 0) == BST_CHECKED); const bool isCheck = (type == BS_CHECKBOX || type == BS_AUTOCHECKBOX || type == BS_3STATE || type == BS_AUTO3STATE); const bool isRadio = (type == BS_RADIOBUTTON || type == BS_AUTORADIOBUTTON); const bool isGroup = (type == BS_GROUPBOX); char text[512]; text[0] = '\0'; ::GetWindowTextA(hWnd, text, sizeof(text)); HFONT font = (HFONT)::SendMessage(hWnd, WM_GETFONT, 0, 0); HFONT oldFont = font ? (HFONT)::SelectObject(hDC, font) : NULL; ::SetBkMode(hDC, TRANSPARENT); ::SetTextColor(hDC, enabled ? ICE_DARK_TEXT : ICE_DARK_TEXT_DISABLED); if (isGroup) { IceDark_FillRect(hDC, rc, ICE_DARK_BG); RECT textRect = rc; textRect.left += 10; textRect.right -= 8; textRect.bottom = textRect.top + 18; SIZE textSize; textSize.cx = textSize.cy = 0; ::GetTextExtentPoint32A(hDC, text, (int)strlen(text), &textSize); RECT frame = rc; frame.top += 8; HPEN pen = ::CreatePen(PS_SOLID, 1, ICE_DARK_BORDER); HPEN oldPen = (HPEN)::SelectObject(hDC, pen); HBRUSH oldBrush = (HBRUSH)::SelectObject(hDC, ::GetStockObject(NULL_BRUSH)); ::RoundRect(hDC, frame.left, frame.top, frame.right, frame.bottom, 8, 8); ::SelectObject(hDC, oldBrush); ::SelectObject(hDC, oldPen); ::DeleteObject(pen); RECT fillLabel = textRect; fillLabel.right = fillLabel.left + textSize.cx + 8; IceDark_FillRect(hDC, fillLabel, ICE_DARK_BG); ::SetTextColor(hDC, ICE_DARK_TEXT_MUTED); ::DrawTextA(hDC, text, -1, &textRect, DT_LEFT | DT_TOP | DT_SINGLELINE | DT_END_ELLIPSIS); } else if (isCheck || isRadio) { IceDark_FillRect(hDC, rc, ICE_DARK_BG); RECT box = rc; box.left += 3; box.right = box.left + 15; box.top += IceDark_MaxInt(0, (rc.bottom - rc.top - 15) / 2); box.bottom = box.top + 15; if (isRadio) { HPEN pen = ::CreatePen(PS_SOLID, 1, checked ? ICE_DARK_ACCENT : ICE_DARK_BORDER); HPEN oldPen = (HPEN)::SelectObject(hDC, pen); HBRUSH brush = ::CreateSolidBrush(enabled ? ICE_DARK_FIELD : RGB(20, 22, 26)); HBRUSH oldBrush = (HBRUSH)::SelectObject(hDC, brush); ::Ellipse(hDC, box.left, box.top, box.right, box.bottom); ::SelectObject(hDC, oldBrush); ::DeleteObject(brush); ::SelectObject(hDC, oldPen); ::DeleteObject(pen); if (checked) { RECT dot = box; ::InflateRect(&dot, -4, -4); HBRUSH dotBrush = ::CreateSolidBrush(enabled ? ICE_DARK_ACCENT : ICE_DARK_TEXT_DISABLED); HBRUSH oldDotBrush = (HBRUSH)::SelectObject(hDC, dotBrush); HPEN dotPen = ::CreatePen(PS_SOLID, 1, enabled ? ICE_DARK_ACCENT : ICE_DARK_TEXT_DISABLED); HPEN oldDotPen = (HPEN)::SelectObject(hDC, dotPen); ::Ellipse(hDC, dot.left, dot.top, dot.right, dot.bottom); ::SelectObject(hDC, oldDotPen); ::DeleteObject(dotPen); ::SelectObject(hDC, oldDotBrush); ::DeleteObject(dotBrush); } } else { IceDark_FillRect(hDC, box, enabled ? ICE_DARK_FIELD : RGB(20, 22, 26)); IceDark_FrameRect(hDC, box, checked ? ICE_DARK_ACCENT : ICE_DARK_BORDER); if (checked) { HPEN pen = ::CreatePen(PS_SOLID, 2, enabled ? ICE_DARK_ACCENT : ICE_DARK_TEXT_DISABLED); HPEN oldPen = (HPEN)::SelectObject(hDC, pen); ::MoveToEx(hDC, box.left + 3, box.top + 7, NULL); ::LineTo(hDC, box.left + 6, box.top + 10); ::LineTo(hDC, box.right - 3, box.top + 3); ::SelectObject(hDC, oldPen); ::DeleteObject(pen); } } RECT textRect = rc; textRect.left = box.right + 7; textRect.right -= 2; ::DrawTextA(hDC, text, -1, &textRect, DT_LEFT | DT_VCENTER | DT_SINGLELINE | DT_END_ELLIPSIS); } else { COLORREF face = pushed ? RGB(22, 25, 30) : ICE_DARK_PANEL_ALT; IceDark_FillRect(hDC, rc, face); IceDark_FrameRect(hDC, rc, enabled ? ICE_DARK_BORDER : RGB(39, 44, 52)); RECT inner = rc; ::InflateRect(&inner, -1, -1); if (!pushed) { IceDark_FrameRect(hDC, inner, RGB(35, 40, 47)); } RECT textRect = rc; if (pushed) { ::OffsetRect(&textRect, 1, 1); } ::DrawTextA(hDC, text, -1, &textRect, DT_CENTER | DT_VCENTER | DT_SINGLELINE | DT_END_ELLIPSIS); } if (oldFont) { ::SelectObject(hDC, oldFont); } } static LRESULT CALLBACK IceDark_ButtonProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { WNDPROC oldProc = (WNDPROC)::GetPropA(hWnd, ICE_DARK_CONTROL_OLDPROC); if (!oldProc) { return ::DefWindowProc(hWnd, uMsg, wParam, lParam); } switch (uMsg) { case WM_ERASEBKGND: return 1; case WM_PAINT: { UINT style = (UINT)::GetWindowLong(hWnd, GWL_STYLE); if (style & (BS_BITMAP | BS_ICON)) { LRESULT result = ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); IceDark_DrawFrame(hWnd, ICE_DARK_BORDER); return result; } PAINTSTRUCT ps; HDC hDC = ::BeginPaint(hWnd, &ps); IceDark_DrawButton(hWnd, hDC); ::EndPaint(hWnd, &ps); return 0; } case WM_PRINTCLIENT: IceDark_DrawButton(hWnd, (HDC)wParam); return 0; case WM_MOUSEMOVE: case WM_LBUTTONDOWN: case WM_LBUTTONUP: case WM_ENABLE: case WM_SETTEXT: case BM_SETCHECK: case BM_SETSTATE: { LRESULT result = ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); ::InvalidateRect(hWnd, NULL, FALSE); return result; } case WM_NCDESTROY: { ::SetWindowLongPtr(hWnd, GWLP_WNDPROC, (LONG_PTR)oldProc); ::RemovePropA(hWnd, ICE_DARK_CONTROL_OLDPROC); return ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); } } return ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); } static void IceDark_DrawCombo(HWND hWnd, HDC hDC) { RECT rc; ::GetClientRect(hWnd, &rc); const bool enabled = ::IsWindowEnabled(hWnd) ? true : false; const bool focused = (::GetFocus() == hWnd || ::IsChild(hWnd, ::GetFocus())) ? true : false; IceDark_FillRect(hDC, rc, enabled ? ICE_DARK_FIELD : RGB(20, 22, 26)); IceDark_FrameRect(hDC, rc, focused ? ICE_DARK_BORDER_HOT : ICE_DARK_BORDER); RECT arrow = rc; arrow.left = arrow.right - 22; IceDark_FillRect(hDC, arrow, ICE_DARK_PANEL_ALT); IceDark_FrameRect(hDC, arrow, ICE_DARK_BORDER); POINT pts[3]; int cx = arrow.left + (arrow.right - arrow.left) / 2; int cy = arrow.top + (arrow.bottom - arrow.top) / 2 + 1; pts[0].x = cx - 4; pts[0].y = cy - 2; pts[1].x = cx + 4; pts[1].y = cy - 2; pts[2].x = cx; pts[2].y = cy + 3; HBRUSH arrowBrush = ::CreateSolidBrush(enabled ? ICE_DARK_TEXT : ICE_DARK_TEXT_DISABLED); HBRUSH oldBrush = (HBRUSH)::SelectObject(hDC, arrowBrush); HPEN arrowPen = ::CreatePen(PS_SOLID, 1, enabled ? ICE_DARK_TEXT : ICE_DARK_TEXT_DISABLED); HPEN oldPen = (HPEN)::SelectObject(hDC, arrowPen); ::Polygon(hDC, pts, 3); ::SelectObject(hDC, oldPen); ::DeleteObject(arrowPen); ::SelectObject(hDC, oldBrush); ::DeleteObject(arrowBrush); char text[512]; text[0] = '\0'; int sel = (int)::SendMessage(hWnd, CB_GETCURSEL, 0, 0); if (sel >= 0) { ::SendMessageA(hWnd, CB_GETLBTEXT, (WPARAM)sel, (LPARAM)text); } else { ::GetWindowTextA(hWnd, text, sizeof(text)); } HFONT font = (HFONT)::SendMessage(hWnd, WM_GETFONT, 0, 0); HFONT oldFont = font ? (HFONT)::SelectObject(hDC, font) : NULL; ::SetBkMode(hDC, TRANSPARENT); ::SetTextColor(hDC, enabled ? ICE_DARK_TEXT : ICE_DARK_TEXT_DISABLED); RECT textRect = rc; textRect.left += 7; textRect.right = arrow.left - 3; ::DrawTextA(hDC, text, -1, &textRect, DT_LEFT | DT_VCENTER | DT_SINGLELINE | DT_END_ELLIPSIS); if (oldFont) { ::SelectObject(hDC, oldFont); } } static LRESULT CALLBACK IceDark_ComboProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { WNDPROC oldProc = (WNDPROC)::GetPropA(hWnd, ICE_DARK_CONTROL_OLDPROC); if (!oldProc) { return ::DefWindowProc(hWnd, uMsg, wParam, lParam); } switch (uMsg) { case WM_ERASEBKGND: return 1; case WM_PAINT: { UINT comboType = (UINT)::GetWindowLong(hWnd, GWL_STYLE) & 0x00000003; if (comboType == CBS_DROPDOWNLIST) { PAINTSTRUCT ps; HDC hDC = ::BeginPaint(hWnd, &ps); IceDark_DrawCombo(hWnd, hDC); ::EndPaint(hWnd, &ps); return 0; } LRESULT result = ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); IceDark_DrawFrame(hWnd, (::GetFocus() == hWnd || ::IsChild(hWnd, ::GetFocus())) ? ICE_DARK_BORDER_HOT : ICE_DARK_BORDER); return result; } case WM_SETFOCUS: case WM_KILLFOCUS: case WM_ENABLE: case WM_SETTEXT: case CB_SETCURSEL: case CB_ADDSTRING: case CB_DELETESTRING: case CB_RESETCONTENT: { LRESULT result = ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); ::InvalidateRect(hWnd, NULL, FALSE); return result; } case WM_NCDESTROY: { ::SetWindowLongPtr(hWnd, GWLP_WNDPROC, (LONG_PTR)oldProc); ::RemovePropA(hWnd, ICE_DARK_CONTROL_OLDPROC); return ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); } } return ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); } static LRESULT CALLBACK IceDark_FieldProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { WNDPROC oldProc = (WNDPROC)::GetPropA(hWnd, ICE_DARK_CONTROL_OLDPROC); if (!oldProc) { return ::DefWindowProc(hWnd, uMsg, wParam, lParam); } switch (uMsg) { case WM_NCPAINT: case WM_PAINT: { LRESULT result = ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); IceDark_DrawFrame(hWnd, (::GetFocus() == hWnd) ? ICE_DARK_BORDER_HOT : ICE_DARK_BORDER); return result; } case WM_SETFOCUS: case WM_KILLFOCUS: case WM_ENABLE: { LRESULT result = ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); ::RedrawWindow(hWnd, NULL, NULL, RDW_INVALIDATE | RDW_FRAME | RDW_UPDATENOW); return result; } case WM_NCDESTROY: { ::SetWindowLongPtr(hWnd, GWLP_WNDPROC, (LONG_PTR)oldProc); ::RemovePropA(hWnd, ICE_DARK_CONTROL_OLDPROC); return ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); } } return ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); } static LRESULT CALLBACK IceDark_ParentProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam) { WNDPROC oldProc = (WNDPROC)::GetPropA(hWnd, ICE_DARK_PARENT_OLDPROC); if (!oldProc) { return ::DefWindowProc(hWnd, uMsg, wParam, lParam); } switch (uMsg) { case WM_ERASEBKGND: { RECT rc; ::GetClientRect(hWnd, &rc); IceDark_FillRect((HDC)wParam, rc, ICE_DARK_BG); return 1; } case WM_CTLCOLORDLG: return (LRESULT)IceDark_BgBrush(); case WM_CTLCOLORSTATIC: { HDC hDC = (HDC)wParam; ::SetTextColor(hDC, ICE_DARK_TEXT_MUTED); ::SetBkMode(hDC, TRANSPARENT); return (LRESULT)IceDark_BgBrush(); } case WM_CTLCOLOREDIT: case WM_CTLCOLORLISTBOX: { HDC hDC = (HDC)wParam; ::SetTextColor(hDC, ICE_DARK_TEXT); ::SetBkColor(hDC, ICE_DARK_FIELD); return (LRESULT)IceDark_FieldBrush(); } case WM_CTLCOLORBTN: { HDC hDC = (HDC)wParam; ::SetTextColor(hDC, ICE_DARK_TEXT); ::SetBkColor(hDC, ICE_DARK_BG); return (LRESULT)IceDark_BgBrush(); } case WM_NCDESTROY: { ::SetWindowLongPtr(hWnd, GWLP_WNDPROC, (LONG_PTR)oldProc); ::RemovePropA(hWnd, ICE_DARK_PARENT_OLDPROC); return ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); } } return ::CallWindowProc(oldProc, hWnd, uMsg, wParam, lParam); } static void IceDark_Subclass(HWND hWnd, WNDPROC proc, const char* propName) { if (!hWnd || ::GetPropA(hWnd, propName)) { return; } WNDPROC oldProc = (WNDPROC)::GetWindowLongPtr(hWnd, GWLP_WNDPROC); ::SetPropA(hWnd, propName, (HANDLE)oldProc); ::SetWindowLongPtr(hWnd, GWLP_WNDPROC, (LONG_PTR)proc); } static bool IceDark_IsClass(HWND hWnd, const char* className) { char actual[128]; actual[0] = '\0'; ::GetClassNameA(hWnd, actual, sizeof(actual)); return ::lstrcmpiA(actual, className) == 0; } static bool IceDark_IsKnownControl(HWND hWnd) { return IceDark_IsClass(hWnd, "Button") || IceDark_IsClass(hWnd, "Edit") || IceDark_IsClass(hWnd, "ComboBox") || IceDark_IsClass(hWnd, "ListBox") || IceDark_IsClass(hWnd, "SysTreeView32") || IceDark_IsClass(hWnd, "SysListView32") || IceDark_IsClass(hWnd, "msctls_trackbar32") || IceDark_IsClass(hWnd, "msctls_updown32") || IceDark_IsClass(hWnd, "ScrollBar") || IceDark_IsClass(hWnd, "SysTabControl32"); } static void IceDark_ApplyToWindowAndChildren(HWND hWnd) { if (!hWnd) { return; } IceDark_ApplyNativeTheme(hWnd); IceDark_RemoveClientEdge(hWnd); if (IceDark_IsClass(hWnd, "Button")) { IceDark_Subclass(hWnd, IceDark_ButtonProc, ICE_DARK_CONTROL_OLDPROC); } else if (IceDark_IsClass(hWnd, "ComboBox")) { IceDark_Subclass(hWnd, IceDark_ComboProc, ICE_DARK_CONTROL_OLDPROC); } else if (IceDark_IsClass(hWnd, "Edit") || IceDark_IsClass(hWnd, "ListBox") || IceDark_IsClass(hWnd, "SysTreeView32") || IceDark_IsClass(hWnd, "SysListView32")) { IceDark_Subclass(hWnd, IceDark_FieldProc, ICE_DARK_CONTROL_OLDPROC); } else if (!IceDark_IsKnownControl(hWnd)) { IceDark_Subclass(hWnd, IceDark_ParentProc, ICE_DARK_PARENT_OLDPROC); } if (IceDark_IsClass(hWnd, "SysTreeView32")) { ::SendMessage(hWnd, TVM_SETBKCOLOR, 0, (LPARAM)ICE_DARK_FIELD); ::SendMessage(hWnd, TVM_SETTEXTCOLOR, 0, (LPARAM)ICE_DARK_TEXT); } if (IceDark_IsClass(hWnd, "SysListView32")) { ::SendMessage(hWnd, LVM_SETBKCOLOR, 0, (LPARAM)ICE_DARK_FIELD); ::SendMessage(hWnd, LVM_SETTEXTBKCOLOR, 0, (LPARAM)ICE_DARK_FIELD); ::SendMessage(hWnd, LVM_SETTEXTCOLOR, 0, (LPARAM)ICE_DARK_TEXT); } for (HWND child = ::GetWindow(hWnd, GW_CHILD); child != NULL; child = ::GetWindow(child, GW_HWNDNEXT)) { IceDark_ApplyToWindowAndChildren(child); } ::InvalidateRect(hWnd, NULL, TRUE); } static void IceDark_ApplyToDialog(CWnd* wnd) { if (wnd && wnd->GetSafeHwnd()) { IceDark_ApplyToWindowAndChildren(wnd->GetSafeHwnd()); } } ///////////////////////////////////////////////////////////////////////////// // CTextureBar dialog CTextureBar::CTextureBar() : CDialogBar() { //{{AFX_DATA_INIT(CTextureBar) m_nHShift = 0; m_nHScale = 0; m_nRotate = 0; m_nVShift = 0; m_nVScale = 0; m_nRotateAmt = 45; //}}AFX_DATA_INIT } void CTextureBar::DoDataExchange(CDataExchange* pDX) { CDialogBar::DoDataExchange(pDX); //{{AFX_DATA_MAP(CTextureBar) DDX_Control(pDX, IDC_SPIN_ROTATE, m_spinRotate); DDX_Control(pDX, IDC_SPIN_VSCALE, m_spinVScale); DDX_Control(pDX, IDC_SPIN_VSHIFT, m_spinVShift); DDX_Control(pDX, IDC_SPIN_HSCALE, m_spinHScale); DDX_Control(pDX, IDC_SPIN_HSHIFT, m_spinHShift); DDX_Text(pDX, IDC_HSHIFT, m_nHShift); DDX_Text(pDX, IDC_HSCALE, m_nHScale); DDX_Text(pDX, IDC_ROTATE, m_nRotate); DDX_Text(pDX, IDC_VSHIFT, m_nVShift); DDX_Text(pDX, IDC_VSCALE, m_nVScale); DDX_Text(pDX, IDC_EDIT_ROTATEAMT, m_nRotateAmt); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CTextureBar, CDialogBar) //{{AFX_MSG_MAP(CTextureBar) ON_NOTIFY(UDN_DELTAPOS, IDC_SPIN_HSHIFT, OnDeltaposSpinHshift) ON_NOTIFY(UDN_DELTAPOS, IDC_SPIN_VSHIFT, OnDeltaposSpinVshift) ON_NOTIFY(UDN_DELTAPOS, IDC_SPIN_HSCALE, OnDeltaposSpinHScale) ON_NOTIFY(UDN_DELTAPOS, IDC_SPIN_VSCALE, OnDeltaposSpinVScale) ON_NOTIFY(UDN_DELTAPOS, IDC_SPIN_ROTATE, OnDeltaposSpinRotate) ON_COMMAND(ID_SELECTION_PRINT, OnSelectionPrint) ON_WM_CREATE() ON_BN_CLICKED(IDC_BTN_APPLYTEXTURESTUFF, OnBtnApplytexturestuff) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CTextureBar message handlers void CTextureBar::OnDeltaposSpinHshift(NMHDR* pNMHDR, LRESULT* pResult) { NM_UPDOWN* pNMUpDown = (NM_UPDOWN*)pNMHDR; *pResult = 0; if (pNMUpDown->iDelta < 0) Select_ShiftTexture(abs(g_qeglobals.d_savedinfo.m_nTextureTweak), 0); else Select_ShiftTexture(-abs(g_qeglobals.d_savedinfo.m_nTextureTweak), 0); GetSurfaceAttributes(); } void CTextureBar::OnDeltaposSpinVshift(NMHDR* pNMHDR, LRESULT* pResult) { NM_UPDOWN* pNMUpDown = (NM_UPDOWN*)pNMHDR; // TODO: Add your control notification handler code here *pResult = 0; if (pNMUpDown->iDelta < 0) Select_ShiftTexture(0, abs(g_qeglobals.d_savedinfo.m_nTextureTweak)); else Select_ShiftTexture(0, -abs(g_qeglobals.d_savedinfo.m_nTextureTweak)); GetSurfaceAttributes(); } void CTextureBar::OnDeltaposSpinHScale(NMHDR* pNMHDR, LRESULT* pResult) { NM_UPDOWN* pNMUpDown = (NM_UPDOWN*)pNMHDR; // TODO: Add your control notification handler code here *pResult = 0; if (pNMUpDown->iDelta < 0) Select_ScaleTexture((float)abs(g_qeglobals.d_savedinfo.m_nTextureTweak),0); else Select_ScaleTexture((float)-abs(g_qeglobals.d_savedinfo.m_nTextureTweak),0); GetSurfaceAttributes(); } void CTextureBar::OnDeltaposSpinVScale(NMHDR* pNMHDR, LRESULT* pResult) { NM_UPDOWN* pNMUpDown = (NM_UPDOWN*)pNMHDR; // TODO: Add your control notification handler code here *pResult = 0; if (pNMUpDown->iDelta < 0) Select_ScaleTexture(0, (float)abs(g_qeglobals.d_savedinfo.m_nTextureTweak)); else Select_ScaleTexture(0, (float)-abs(g_qeglobals.d_savedinfo.m_nTextureTweak)); GetSurfaceAttributes(); } void CTextureBar::OnDeltaposSpinRotate(NMHDR* pNMHDR, LRESULT* pResult) { NM_UPDOWN* pNMUpDown = (NM_UPDOWN*)pNMHDR; *pResult = 0; UpdateData(TRUE); if (pNMUpDown->iDelta < 0) Select_RotateTexture(abs(m_nRotateAmt)); else Select_RotateTexture(-abs(m_nRotateAmt)); GetSurfaceAttributes(); } void CTextureBar::OnSelectionPrint() { // TODO: Add your command handler code here } int CTextureBar::OnCreate(LPCREATESTRUCT lpCreateStruct) { if (CDialogBar::OnCreate(lpCreateStruct) == -1) return -1; IceDark_ApplyToDialog(this); return 0; } void CTextureBar::OnBtnApplytexturestuff() { SetSurfaceAttributes(); } void CTextureBar::GetSurfaceAttributes() { texdef_t* pt = (g_ptrSelectedFaces.GetSize() > 0) ? &(reinterpret_cast(g_ptrSelectedFaces.GetAt(0)))->texdef : &g_qeglobals.d_texturewin.texdef; if (pt) { m_nHShift = pt->shift[0]; m_nVShift = pt->shift[1]; m_nHScale = pt->scale[0]; m_nVScale = pt->scale[1]; m_nRotate = pt->rotate; UpdateData(FALSE); } } //++timo implement brush primitive here void CTextureBar::SetSurfaceAttributes() { if (g_ptrSelectedFaces.GetSize() > 0) { if (g_qeglobals.m_bBrushPrimitMode) { common->Printf("Warning : brush primitive mode not implemented in CTextureBar"); } face_t *selFace = reinterpret_cast(g_ptrSelectedFaces.GetAt(0)); texdef_t* pt = &selFace->texdef; UpdateData(TRUE); pt->shift[0] = m_nHShift; pt->shift[1] = m_nVShift; pt->scale[0] = m_nHScale; pt->scale[1] = m_nVScale; pt->rotate = m_nRotate; Sys_UpdateWindows(W_CAMERA); } }