*** empty log message ***

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3278 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
David Webster
1999-08-05 04:05:25 +00:00
parent 18ac8d6919
commit c3d434725b
8 changed files with 96 additions and 251 deletions

View File

@@ -21,7 +21,7 @@
#include "wx/validate.h"
// General item class
class WXDLLEXPORT wxControl: public wxWindow
class WXDLLEXPORT wxControl: public wxControlBase
{
DECLARE_ABSTRACT_CLASS(wxControl)
public:

View File

@@ -16,6 +16,7 @@
#pragma interface "dc.h"
#endif
#include "wx/window.h"
#include "wx/pen.h"
#include "wx/brush.h"
#include "wx/icon.h"
@@ -156,16 +157,6 @@ class WXDLLEXPORT wxDC: public wxDCBase
private:
void ComputeScaleAndOrigin(void);
long XDEV2LOG(long x) const;
long XDEV2LOGREL(long x) const;
long YDEV2LOG(long y) const;
long YDEV2LOGREL(long y) const;
long XLOG2DEV(long x) const;
long XLOG2DEVREL(long x) const;
long YLOG2DEV(long y) const;
long YLOG2DEVREL(long y) const;
#if WXWIN_COMPATIBILITY
// function hiding warning supression
virtual void GetTextExtent( const wxString& string

View File

@@ -146,6 +146,7 @@ public:
// same as DoSetSize() for the client size
virtual void DoSetClientSize(int width, int height);
virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
virtual WXWidget GetHandle() const;
// ---------------------------------------------------------------------------
// wxWindowBase virtual implementations that need to be overriden