New scrolling for GTK
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@565 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -169,8 +169,6 @@ class wxDC: public wxObject
|
||||
virtual void GetLogicalOrigin( long *x, long *y );
|
||||
virtual void SetDeviceOrigin( long x, long y );
|
||||
virtual void GetDeviceOrigin( long *x, long *y );
|
||||
virtual void SetInternalDeviceOrigin( long x, long y );
|
||||
virtual void GetInternalDeviceOrigin( long *x, long *y );
|
||||
|
||||
virtual void SetAxisOrientation( bool xLeftRight, bool yBottomUp );
|
||||
|
||||
@@ -283,14 +281,6 @@ class wxDC: public wxObject
|
||||
// not sure what for, but what is a mm on a screen you don't know the size of?
|
||||
double m_mm_to_pix_x,m_mm_to_pix_y;
|
||||
|
||||
long m_internalDeviceOriginX,m_internalDeviceOriginY; // If un-scrolled is non-zero or
|
||||
// d.o. changes with scrolling.
|
||||
// Set using SetInternalDeviceOrigin().
|
||||
|
||||
long m_externalDeviceOriginX,m_externalDeviceOriginY; // To be set by external classes
|
||||
// such as wxScrolledWindow
|
||||
// using SetDeviceOrigin()
|
||||
|
||||
long m_deviceOriginX,m_deviceOriginY; // Sum of the two above.
|
||||
|
||||
long m_logicalOriginX,m_logicalOriginY; // User defined.
|
||||
|
@@ -36,9 +36,6 @@ struct _GtkMyFixed
|
||||
GtkContainer container;
|
||||
|
||||
GList *children;
|
||||
|
||||
gint16 scroll_offset_x;
|
||||
gint16 scroll_offset_y;
|
||||
};
|
||||
|
||||
struct _GtkMyFixedClass
|
||||
@@ -55,9 +52,6 @@ struct _GtkMyFixedChild
|
||||
|
||||
guint gtk_myfixed_get_type (void);
|
||||
GtkWidget* gtk_myfixed_new (void);
|
||||
void gtk_myfixed_set_offset (GtkMyFixed *myfixed,
|
||||
gint16 x,
|
||||
gint16 y);
|
||||
void gtk_myfixed_put (GtkMyFixed *myfixed,
|
||||
GtkWidget *widget,
|
||||
gint16 x,
|
||||
|
@@ -235,7 +235,6 @@ public: // cannot get private going yet
|
||||
bool HasVMT();
|
||||
virtual void ImplementSetSize();
|
||||
virtual void ImplementSetPosition();
|
||||
void GetDrawingOffset( long *x, long *y );
|
||||
|
||||
wxWindow *m_parent;
|
||||
wxList m_children;
|
||||
@@ -257,7 +256,6 @@ public: // cannot get private going yet
|
||||
bool m_isShown;
|
||||
bool m_isEnabled;
|
||||
wxString m_windowName;
|
||||
long m_drawingOffsetX,m_drawingOffsetY;
|
||||
|
||||
GtkWidget *m_widget;
|
||||
GtkWidget *m_wxwindow;
|
||||
|
Reference in New Issue
Block a user