Corrected cursors - not yet perfect,
  Added some tests to scroll sample
  Made wxScrolledWindow::Scroll() call Refresh(),
  Change wxListCtrl to reflect the latter change (wxTreeCtrl will follow),
  Added activate event for wxMDIChildFrame
  Implemented wxSIMPLE_BORDER for wxWindow (no controls),
  Tried to correct positioning upon start-up - no way,
  Rewrote catching of scroll events - page-up, page-down, up and down
    work now. Don't know what TOP and BOTTOM are used for.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3763 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
	
		
			
				
	
	
		
			105 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* ///////////////////////////////////////////////////////////////////////////
 | |
| // Name:        win_gtk.h
 | |
| // Purpose:     wxWindows's GTK base widget
 | |
| // Author:      Robert Roebling
 | |
| // Id:          $Id$
 | |
| // Copyright:   (c) 1998 Robert Roebling
 | |
| // Licence:   	wxWindows licence
 | |
| /////////////////////////////////////////////////////////////////////////// */
 | |
| 
 | |
| 
 | |
| #ifndef __GTK_MYFIXED_H__
 | |
| #define __GTK_MYFIXED_H__
 | |
| 
 | |
| #include <gdk/gdk.h>
 | |
| #include <gtk/gtkcontainer.h>
 | |
| #include <gtk/gtkadjustment.h>
 | |
| #include <gtk/gtkfeatures.h>
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif /* __cplusplus */
 | |
| 
 | |
| 
 | |
| #define GTK_MYFIXED(obj)          GTK_CHECK_CAST (obj, gtk_myfixed_get_type (), GtkMyFixed)
 | |
| #define GTK_MYFIXED_CLASS(klass)  GTK_CHECK_CLASS_CAST (klass, gtk_myfixed_get_type (), GtkMyFixedClass)
 | |
| #define GTK_IS_MYFIXED(obj)       GTK_CHECK_TYPE (obj, gtk_myfixed_get_type ())
 | |
| 
 | |
| /* Shadow types */
 | |
| typedef enum
 | |
| {
 | |
|   GTK_MYSHADOW_NONE,
 | |
|   GTK_MYSHADOW_THIN,
 | |
|   GTK_MYSHADOW_IN,
 | |
|   GTK_MYSHADOW_OUT,
 | |
| } GtkMyShadowType;
 | |
| 
 | |
| typedef struct _GtkMyFixed        GtkMyFixed;
 | |
| typedef struct _GtkMyFixedClass   GtkMyFixedClass;
 | |
| typedef struct _GtkMyFixedChild   GtkMyFixedChild;
 | |
| 
 | |
| struct _GtkMyFixed
 | |
| {
 | |
|   GtkContainer container;
 | |
|   GList *children;
 | |
| #if (GTK_MINOR_VERSION > 0)
 | |
|   GtkMyShadowType shadow_type;
 | |
| #endif
 | |
| };
 | |
| 
 | |
| struct _GtkMyFixedClass
 | |
| {
 | |
|   GtkContainerClass parent_class;
 | |
| 
 | |
| #if (GTK_MINOR_VERSION > 0)
 | |
|   void  (*set_scroll_adjustments)   (GtkMyFixed     *myfixed,
 | |
| 				     GtkAdjustment  *hadjustment,
 | |
| 				     GtkAdjustment  *vadjustment);
 | |
| #endif
 | |
| };
 | |
| 
 | |
| struct _GtkMyFixedChild
 | |
| {
 | |
|   GtkWidget *widget;
 | |
|   gint16 x;
 | |
|   gint16 y;
 | |
|   gint16 width;
 | |
|   gint16 height;
 | |
| };
 | |
| 
 | |
| guint      gtk_myfixed_get_type        (void);
 | |
| GtkWidget* gtk_myfixed_new             (void);
 | |
| #if (GTK_MINOR_VERSION > 0)
 | |
| void       gtk_myfixed_set_shadow_type (GtkMyFixed     *myfixed,
 | |
| 				        GtkMyShadowType  type);
 | |
| #endif
 | |
| void       gtk_myfixed_put             (GtkMyFixed     *myfixed,
 | |
|                                         GtkWidget      *widget,
 | |
|                                         gint16         x,
 | |
|                                         gint16         y,
 | |
| 					gint16         width,
 | |
| 					gint16         height);
 | |
| 
 | |
| void       gtk_myfixed_move            (GtkMyFixed     *myfixed,
 | |
|                                         GtkWidget      *widget,
 | |
|                                         gint16         x,
 | |
|                                         gint16         y );
 | |
| 					
 | |
| void       gtk_myfixed_resize          (GtkMyFixed     *myfixed,
 | |
|                                         GtkWidget      *widget,
 | |
|                                         gint16         width,
 | |
|                                         gint16         height );
 | |
| 					
 | |
| void       gtk_myfixed_set_size        (GtkMyFixed     *myfixed,
 | |
|                                         GtkWidget      *widget,
 | |
|                                         gint16         x,
 | |
|                                         gint16         y,
 | |
|                                         gint16         width,
 | |
|                                         gint16         height);
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif /* __cplusplus */
 | |
| 
 | |
| 
 | |
| #endif /* __GTK_MYFIXED_H__ */
 |