~wxDialog();
- void SetReturnCode(int returnCode) { m_returnCode = returnCode; }
- int GetReturnCode() const { return m_returnCode; }
-
virtual bool Destroy();
virtual void DoSetClientSize(int width, int height);
virtual bool IsIconized() const;
void Fit();
+ virtual bool IsTopLevel() const { return TRUE; }
+
void SetTitle(const wxString& title);
wxString GetTitle() const ;
void SetModal(bool flag);
virtual void Centre(int direction = wxBOTH);
- virtual bool IsModal() const
- { return ((GetWindowStyleFlag() & wxDIALOG_MODAL) == wxDIALOG_MODAL); }
+ virtual bool IsModal() const;
// For now, same as Show(TRUE) but returns return code
virtual int ShowModal();
WXHWND m_hwndToolTip;
#endif // tooltips
- int m_returnCode;
-
+private:
DECLARE_EVENT_TABLE()
};