This keyword is not expanded by Git which means it's not replaced with the correct revision value in the releases made using git-based scripts and it's confusing to have lines with unexpanded "$Id$" in the released files. As expanding them with Git is not that simple (it could be done with git archive and export-subst attribute) and there are not many benefits in having them in the first place, just remove all these lines. If nothing else, this will make an eventual transition to Git simpler. Closes #14487. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
		
			
				
	
	
		
			147 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			147 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* ///////////////////////////////////////////////////////////////////////////
 | |
| // Name:        wx/gtk1/win_gtk.h
 | |
| // Purpose:     wxWidgets's GTK base widget = GtkPizza
 | |
| // Author:      Robert Roebling
 | |
| // Copyright:   (c) 1998 Robert Roebling
 | |
| // Licence:     wxWindows licence
 | |
| /////////////////////////////////////////////////////////////////////////// */
 | |
| 
 | |
| 
 | |
| #ifndef __GTK_PIZZA_H__
 | |
| #define __GTK_PIZZA_H__
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif /* __cplusplus */
 | |
| 
 | |
| #include <gdk/gdk.h>
 | |
| #include <gdk/gdkx.h>
 | |
| #include <gtk/gtkcontainer.h>
 | |
| #include <gtk/gtkadjustment.h>
 | |
| #include <gtk/gtkfeatures.h>
 | |
| 
 | |
| #include "wx/dlimpexp.h"
 | |
| 
 | |
| #define GTK_PIZZA(obj)          GTK_CHECK_CAST (obj, gtk_pizza_get_type (), GtkPizza)
 | |
| #define GTK_PIZZA_CLASS(klass)  GTK_CHECK_CLASS_CAST (klass, gtk_pizza_get_type (), GtkPizzaClass)
 | |
| #define GTK_IS_PIZZA(obj)       GTK_CHECK_TYPE (obj, gtk_pizza_get_type ())
 | |
| 
 | |
| /* Shadow types */
 | |
| typedef enum
 | |
| {
 | |
|     GTK_MYSHADOW_NONE,
 | |
|     GTK_MYSHADOW_THIN,
 | |
|     GTK_MYSHADOW_IN,
 | |
|     GTK_MYSHADOW_OUT
 | |
| } GtkMyShadowType;
 | |
| 
 | |
| typedef struct _GtkPizzaChild    GtkPizzaChild;
 | |
| typedef struct _GtkPizza        GtkPizza;
 | |
| typedef struct _GtkPizzaClass   GtkPizzaClass;
 | |
| 
 | |
| struct _GtkPizzaChild
 | |
| {
 | |
|     GtkWidget *widget;
 | |
|     gint x;
 | |
|     gint y;
 | |
|     gint width;
 | |
|     gint height;
 | |
| };
 | |
| 
 | |
| struct _GtkPizza
 | |
| {
 | |
|     GtkContainer container;
 | |
|     GList *children;
 | |
|     GtkMyShadowType shadow_type;
 | |
| 
 | |
|     guint width;
 | |
|     guint height;
 | |
| 
 | |
|     guint xoffset;
 | |
|     guint yoffset;
 | |
| 
 | |
|     GdkWindow *bin_window;
 | |
| 
 | |
|     GdkVisibilityState visibility;
 | |
|     gulong configure_serial;
 | |
|     gint scroll_x;
 | |
|     gint scroll_y;
 | |
| 
 | |
|     gboolean clear_on_draw;
 | |
|     gboolean use_filter;
 | |
|     gboolean external_expose;
 | |
| };
 | |
| 
 | |
| struct _GtkPizzaClass
 | |
| {
 | |
|   GtkContainerClass parent_class;
 | |
| 
 | |
|   void  (*set_scroll_adjustments)   (GtkPizza     *pizza,
 | |
|                                      GtkAdjustment  *hadjustment,
 | |
|                                      GtkAdjustment  *vadjustment);
 | |
| };
 | |
| 
 | |
| WXDLLIMPEXP_CORE
 | |
| GtkType    gtk_pizza_get_type        (void);
 | |
| WXDLLIMPEXP_CORE
 | |
| GtkWidget* gtk_pizza_new             (void);
 | |
| 
 | |
| WXDLLIMPEXP_CORE
 | |
| void       gtk_pizza_set_shadow_type (GtkPizza          *pizza,
 | |
|                                       GtkMyShadowType    type);
 | |
| 
 | |
| WXDLLIMPEXP_CORE
 | |
| void       gtk_pizza_set_clear       (GtkPizza          *pizza,
 | |
|                                       gboolean           clear);
 | |
| 
 | |
| WXDLLIMPEXP_CORE
 | |
| void       gtk_pizza_set_filter      (GtkPizza          *pizza,
 | |
|                                       gboolean           use);
 | |
| 
 | |
| WXDLLIMPEXP_CORE
 | |
| void       gtk_pizza_set_external    (GtkPizza          *pizza,
 | |
|                                       gboolean           expose);
 | |
| 
 | |
| WXDLLIMPEXP_CORE
 | |
| void       gtk_pizza_scroll          (GtkPizza          *pizza,
 | |
|                                       gint               dx,
 | |
|                                       gint               dy);
 | |
| 
 | |
| WXDLLIMPEXP_CORE
 | |
| gint       gtk_pizza_child_resized   (GtkPizza          *pizza,
 | |
|                                       GtkWidget         *widget);
 | |
| 
 | |
| WXDLLIMPEXP_CORE
 | |
| void       gtk_pizza_put             (GtkPizza          *pizza,
 | |
|                                       GtkWidget         *widget,
 | |
|                                       gint               x,
 | |
|                                       gint               y,
 | |
|                                       gint               width,
 | |
|                                       gint               height);
 | |
| 
 | |
| WXDLLIMPEXP_CORE
 | |
| void       gtk_pizza_move            (GtkPizza          *pizza,
 | |
|                                       GtkWidget         *widget,
 | |
|                                       gint               x,
 | |
|                                       gint               y );
 | |
| 
 | |
| WXDLLIMPEXP_CORE
 | |
| void       gtk_pizza_resize          (GtkPizza          *pizza,
 | |
|                                       GtkWidget         *widget,
 | |
|                                       gint               width,
 | |
|                                       gint               height );
 | |
| 
 | |
| WXDLLIMPEXP_CORE
 | |
| void       gtk_pizza_set_size        (GtkPizza          *pizza,
 | |
|                                       GtkWidget         *widget,
 | |
|                                       gint               x,
 | |
|                                       gint               y,
 | |
|                                       gint               width,
 | |
|                                       gint               height);
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif /* __cplusplus */
 | |
| 
 | |
| 
 | |
| #endif /* __GTK_PIZZA_H__ */
 |