X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/937013e0fd914d4c42f9f5ec98da665986b93dfa..4081eb6fe2de5eed5716459d09c8f4bed8eda92d:/src/msw/dialog.cpp?ds=inline diff --git a/src/msw/dialog.cpp b/src/msw/dialog.cpp index 0b4174a8d0..d89e8ede2c 100644 --- a/src/msw/dialog.cpp +++ b/src/msw/dialog.cpp @@ -152,6 +152,7 @@ void wxDialog::Init() #if wxUSE_TOOLBAR && defined(__POCKETPC__) m_dialogToolBar = NULL; #endif + m_hGripper = 0; } bool wxDialog::Create(wxWindow *parent, @@ -183,6 +184,9 @@ bool wxDialog::Create(wxWindow *parent, CreateToolBar(); #endif + if ( HasFlag(wxRESIZE_BORDER) ) + CreateGripper(); + return true; } @@ -192,6 +196,8 @@ wxDialog::~wxDialog() // this will also reenable all the other windows for a modal dialog Show(false); + + DestroyGripper(); } // ---------------------------------------------------------------------------- @@ -237,6 +243,9 @@ bool wxDialog::Show(bool show) if ( show ) { + if (CanDoLayoutAdaptation()) + DoLayoutAdaptation(); + // this usually will result in TransferDataToWindow() being called // which will change the controls values so do it before showing as // otherwise we could have some flicker @@ -247,13 +256,15 @@ bool wxDialog::Show(bool show) if ( show ) { - // dialogs don't get WM_SIZE message after creation unlike most (all?) - // other windows and so could start their life non laid out correctly - // if we didn't call Layout() from here + // dialogs don't get WM_SIZE message from ::ShowWindow() for some + // reason so generate it ourselves for consistency with frames and + // dialogs in other ports // // NB: normally we should call it just the first time but doing it // every time is simpler than keeping a flag - Layout(); + const wxSize size = GetClientSize(); + ::SendMessage(GetHwnd(), WM_SIZE, + SIZE_RESTORED, MAKELPARAM(size.x, size.y)); } return true; @@ -332,6 +343,77 @@ void wxDialog::EndModal(int retCode) Hide(); } +// ---------------------------------------------------------------------------- +// wxDialog gripper handling +// ---------------------------------------------------------------------------- + +void wxDialog::SetWindowStyleFlag(long style) +{ + wxDialogBase::SetWindowStyleFlag(style); + + if ( HasFlag(wxRESIZE_BORDER) ) + CreateGripper(); + else + DestroyGripper(); +} + +void wxDialog::CreateGripper() +{ + if ( !m_hGripper ) + { + // just create it here, it will be positioned and shown later + m_hGripper = (WXHWND)::CreateWindow + ( + wxT("SCROLLBAR"), + wxT(""), + WS_CHILD | + WS_CLIPSIBLINGS | + SBS_SIZEGRIP | + SBS_SIZEBOX | + SBS_SIZEBOXBOTTOMRIGHTALIGN, + 0, 0, 0, 0, + GetHwnd(), + 0, + wxGetInstance(), + NULL + ); + } +} + +void wxDialog::DestroyGripper() +{ + if ( m_hGripper ) + { + ::DestroyWindow((HWND) m_hGripper); + m_hGripper = 0; + } +} + +void wxDialog::ShowGripper(bool show) +{ + wxASSERT_MSG( m_hGripper, _T("shouldn't be called if we have no gripper") ); + + if ( show ) + ResizeGripper(); + + ::ShowWindow((HWND)m_hGripper, show ? SW_SHOW : SW_HIDE); +} + +void wxDialog::ResizeGripper() +{ + wxASSERT_MSG( m_hGripper, _T("shouldn't be called if we have no gripper") ); + + HWND hwndGripper = (HWND)m_hGripper; + + const wxRect rectGripper = wxRectFromRECT(wxGetWindowRect(hwndGripper)); + const wxSize size = GetClientSize() - rectGripper.GetSize(); + + ::SetWindowPos(hwndGripper, HWND_BOTTOM, + size.x, size.y, + rectGripper.width, rectGripper.height, + SWP_NOACTIVATE); +} + // ---------------------------------------------------------------------------- // wxWin event handlers // ---------------------------------------------------------------------------- @@ -413,6 +495,19 @@ WXLRESULT wxDialog::MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lPar break; case WM_SIZE: + if ( m_hGripper ) + { + switch ( wParam ) + { + case SIZE_MAXIMIZED: + ShowGripper(false); + break; + + case SIZE_RESTORED: + ShowGripper(true); + } + } + // the Windows dialogs unfortunately are not meant to be resizeable // at all and their standard class doesn't include CS_[VH]REDRAW // styles which means that the window is not refreshed properly