projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add a ctor that is compatible with the documented wxHelpController API
[wxWidgets.git]
/
include
/
wx
/
motif
/
toplevel.h
diff --git
a/include/wx/motif/toplevel.h
b/include/wx/motif/toplevel.h
index eaca8020f64fe29660c80ad5664dc5e46fe4496c..4144b83a3a48952156a0dcd1fccc889f031027f8 100644
(file)
--- a/
include/wx/motif/toplevel.h
+++ b/
include/wx/motif/toplevel.h
@@
-12,10
+12,6
@@
#ifndef __MOTIFTOPLEVELH__
#define __MOTIFTOPLEVELH__
#ifndef __MOTIFTOPLEVELH__
#define __MOTIFTOPLEVELH__
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
- #pragma interface "toplevel.h"
-#endif
-
class WXDLLIMPEXP_CORE wxTopLevelWindowMotif : public wxTopLevelWindowBase
{
public:
class WXDLLIMPEXP_CORE wxTopLevelWindowMotif : public wxTopLevelWindowBase
{
public:
@@
-56,10
+52,6
@@
public:
virtual wxString GetTitle() const { return m_title; }
virtual void SetTitle( const wxString& title ) { m_title = title; }
virtual wxString GetTitle() const { return m_title; }
virtual void SetTitle( const wxString& title ) { m_title = title; }
- virtual void DoSetSizeHints( int minW, int minH,
- int maxW = -1, int maxH = -1,
- int incW = -1, int incH = -1 );
-
virtual bool SetShape( const wxRegion& region );
WXWidget GetShellWidget() const;
virtual bool SetShape( const wxRegion& region );
WXWidget GetShellWidget() const;
@@
-70,19
+62,20
@@
protected:
void PreDestroy();
virtual void DoGetPosition(int* x, int* y) const;
void PreDestroy();
virtual void DoGetPosition(int* x, int* y) const;
+ virtual void DoSetSizeHints(int minW, int minH,
+ int maxW, int maxH,
+ int incW, int incH);
+
private:
private:
- // both these functions should be pure virtual
- virtual bool DoCreate( wxWindow* parent, wxWindowID id,
- const wxString& title,
- const wxPoint& pos,
- const wxSize& size,
- long style,
- const wxString& name )
- {
- return false;
- }
+ // really create the Motif widget for TLW
+ virtual bool XmDoCreateTLW(wxWindow* parent,
+ wxWindowID id,
+ const wxString& title,
+ const wxPoint& pos,
+ const wxSize& size,
+ long style,
+ const wxString& name) = 0;
- virtual void DoDestroy() { }
wxString m_title;
};
wxString m_title;
};