wxDialog change (Show() completely rewritten, modal dialogs handling changed)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5737 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-01-30 01:31:09 +00:00
parent 55c56a6d80
commit b6c588e1a6
3 changed files with 484 additions and 429 deletions

View File

@@ -60,43 +60,38 @@ public:
~wxDialog(); ~wxDialog();
// override some base class virtuals
virtual bool Destroy(); virtual bool Destroy();
virtual bool Show(bool show);
virtual void Iconize(bool iconize);
virtual bool IsIconized() const;
virtual void DoSetClientSize(int width, int height); virtual bool IsTopLevel() const { return TRUE; }
virtual void GetPosition(int *x, int *y) const; void SetModal(bool flag);
virtual bool IsModal() const;
bool Show(bool show); // For now, same as Show(TRUE) but returns return code
bool IsShown() const; virtual int ShowModal();
void Iconize(bool iconize);
// may be called to terminate the dialog with the given return code
virtual void EndModal(int retCode);
// returns TRUE if we're in a modal loop
bool IsModalShowing() const;
#if WXWIN_COMPATIBILITY #if WXWIN_COMPATIBILITY
bool Iconized() const { return IsIconized(); }; bool Iconized() const { return IsIconized(); };
#endif #endif
virtual bool IsIconized() const; // implementation only from now on
void Fit(); // -------------------------------
virtual bool IsTopLevel() const { return TRUE; } // event handlers
void SetTitle(const wxString& title);
wxString GetTitle() const ;
void OnSize(wxSizeEvent& event);
bool OnClose(); bool OnClose();
void OnCharHook(wxKeyEvent& event); void OnCharHook(wxKeyEvent& event);
void OnPaint(wxPaintEvent& event);
void OnCloseWindow(wxCloseEvent& event); void OnCloseWindow(wxCloseEvent& event);
void SetModal(bool flag);
virtual void Centre(int direction = wxBOTH);
virtual bool IsModal() const;
// For now, same as Show(TRUE) but returns return code
virtual int ShowModal();
virtual void EndModal(int retCode);
// Standard buttons // Standard buttons
void OnOK(wxCommandEvent& event); void OnOK(wxCommandEvent& event);
void OnApply(wxCommandEvent& event); void OnApply(wxCommandEvent& event);
@@ -105,30 +100,21 @@ public:
// Responds to colour changes // Responds to colour changes
void OnSysColourChanged(wxSysColourChangedEvent& event); void OnSysColourChanged(wxSysColourChangedEvent& event);
// implementation // Windows callbacks
// --------------
long MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam); long MSWWindowProc(WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
#if wxUSE_CTL3D
virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor, virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
WXUINT message, WXWPARAM wParam, WXLPARAM lParam); WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
#endif // wxUSE_CTL3D
bool IsModalShowing() const { return m_modalShowing; }
// tooltip management
#if wxUSE_TOOLTIPS
WXHWND GetToolTipCtrl() const { return m_hwndToolTip; }
void SetToolTipCtrl(WXHWND hwndTT) { m_hwndToolTip = hwndTT; }
#endif // tooltips
protected: protected:
bool m_modalShowing; // override more base class virtuals
WXHWND m_hwndOldFocus; // the window which had focus before we were shown virtual void DoSetClientSize(int width, int height);
virtual void DoGetPosition(int *x, int *y) const;
private: // show modal dialog and enter modal loop
#if wxUSE_TOOLTIPS void DoShowModal();
WXHWND m_hwndToolTip;
#endif // tooltips
private: private:
DECLARE_EVENT_TABLE() DECLARE_EVENT_TABLE()

View File

@@ -916,12 +916,10 @@ int wxApp::MainLoop()
wxMutexGuiLeaveOrEnter(); wxMutexGuiLeaveOrEnter();
#endif // wxUSE_THREADS #endif // wxUSE_THREADS
while ( !::PeekMessage(&s_currentMsg, 0, 0, 0, PM_NOREMOVE) && while ( !Pending() && ProcessIdle() )
ProcessIdle() ) ;
{
}
// a message came or no more idle processing to do
DoMessage(); DoMessage();
} }
@@ -940,12 +938,13 @@ bool wxApp::ProcessIdle()
void wxApp::ExitMainLoop() void wxApp::ExitMainLoop()
{ {
// VZ: why not ::PostQuitMessage()?
m_keepGoing = FALSE; m_keepGoing = FALSE;
} }
bool wxApp::Pending() bool wxApp::Pending()
{ {
return (::PeekMessage(&s_currentMsg, 0, 0, 0, PM_NOREMOVE) != 0); return ::PeekMessage(&s_currentMsg, 0, 0, 0, PM_NOREMOVE) != 0;
} }
void wxApp::Dispatch() void wxApp::Dispatch()

File diff suppressed because it is too large Load Diff