Small changed to wxExtDialog

Made DnD use long instead of int
  Made DnD sample compile again
  Re-Updated wxTextDialog
  Added GetDefaultSize() to wxButton


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2951 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-07-04 13:50:13 +00:00
parent ba059d80b4
commit 8dbf458911
18 changed files with 368 additions and 372 deletions

View File

@@ -62,6 +62,14 @@ public:
{ m_clientWindow = clientWindow; }
wxWindow *GetClientWindow()
{ return m_clientWindow; }
void SetClientWindowMargin( int margin )
{ m_clientWindowMargin = margin; }
int GetClientWindowMargin()
{ return m_clientWindowMargin; }
void SetSpacePerButton( wxSize space )
{ m_spacePerButton = space; }
wxSize GetSpacePerButton()
{ return m_spacePerButton; }
void AddButton( wxButton *button );
@@ -77,7 +85,7 @@ public:
void OnYes(wxCommandEvent& event);
void OnNo(wxCommandEvent& event);
void OnCancel(wxCommandEvent& event);
protected:
wxWindow *m_clientWindow;
long m_extraStyle;
@@ -85,7 +93,9 @@ protected:
#if wxUSE_STATLINE
wxStaticLine *m_statLine;
#endif
int m_clientWindowMargin;
wxSize m_spacePerButton;
wxSize LayoutButtons();
private: