⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gtkwidget.h

📁 gtk是linux一款强大的夸平台的图形化开发工具
💻 H
📖 第 1 页 / 共 2 页
字号:
/* GTK - The GIMP Toolkit * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. *//* * Modified by the GTK+ Team and others 1997-1999.  See the AUTHORS * file for a list of people on the GTK+ Team.  See the ChangeLog * files for a list of changes.  These files are distributed with * GTK+ at ftp://ftp.gtk.org/pub/gtk/.  */#ifndef __GTK_WIDGET_H__#define __GTK_WIDGET_H__#include <gdk/gdk.h>#include <gtk/gtkaccelgroup.h>#include <gtk/gtkobject.h>#include <gtk/gtkadjustment.h>#include <gtk/gtkstyle.h>#ifdef __cplusplusextern "C" {#endif /* __cplusplus *//* The flags that are used by GtkWidget on top of the * flags field of GtkObject. */typedef enum{  GTK_TOPLEVEL         = 1 << 4,  GTK_NO_WINDOW        = 1 << 5,  GTK_REALIZED         = 1 << 6,  GTK_MAPPED           = 1 << 7,  GTK_VISIBLE          = 1 << 8,  GTK_SENSITIVE        = 1 << 9,  GTK_PARENT_SENSITIVE = 1 << 10,  GTK_CAN_FOCUS        = 1 << 11,  GTK_HAS_FOCUS        = 1 << 12,  GTK_CAN_DEFAULT      = 1 << 13,  GTK_HAS_DEFAULT      = 1 << 14,  GTK_HAS_GRAB	       = 1 << 15,  GTK_RC_STYLE	       = 1 << 16,  GTK_COMPOSITE_CHILD  = 1 << 17,  GTK_NO_REPARENT      = 1 << 18,  GTK_APP_PAINTABLE    = 1 << 19,  GTK_RECEIVES_DEFAULT = 1 << 20} GtkWidgetFlags;/* Macro for casting a pointer to a GtkWidget or GtkWidgetClass pointer. * Macros for testing whether `widget' or `klass' are of type GTK_TYPE_WIDGET. */#define GTK_TYPE_WIDGET			  (gtk_widget_get_type ())#define GTK_WIDGET(widget)		  (GTK_CHECK_CAST ((widget), GTK_TYPE_WIDGET, GtkWidget))#define GTK_WIDGET_CLASS(klass)		  (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_WIDGET, GtkWidgetClass))#define GTK_IS_WIDGET(widget)		  (GTK_CHECK_TYPE ((widget), GTK_TYPE_WIDGET))#define GTK_IS_WIDGET_CLASS(klass)	  (GTK_CHECK_CLASS_TYPE ((klass), GTK_TYPE_WIDGET))/* Macros for extracting various fields from GtkWidget and GtkWidgetClass. */#define GTK_WIDGET_TYPE(wid)		  (GTK_OBJECT_TYPE (wid))#define GTK_WIDGET_STATE(wid)		  (GTK_WIDGET (wid)->state)#define GTK_WIDGET_SAVED_STATE(wid)	  (GTK_WIDGET (wid)->saved_state)/* Macros for extracting the widget flags from GtkWidget. */#define GTK_WIDGET_FLAGS(wid)		  (GTK_OBJECT_FLAGS (wid))#define GTK_WIDGET_TOPLEVEL(wid)	  ((GTK_WIDGET_FLAGS (wid) & GTK_TOPLEVEL) != 0)#define GTK_WIDGET_NO_WINDOW(wid)	  ((GTK_WIDGET_FLAGS (wid) & GTK_NO_WINDOW) != 0)#define GTK_WIDGET_REALIZED(wid)	  ((GTK_WIDGET_FLAGS (wid) & GTK_REALIZED) != 0)#define GTK_WIDGET_MAPPED(wid)		  ((GTK_WIDGET_FLAGS (wid) & GTK_MAPPED) != 0)#define GTK_WIDGET_VISIBLE(wid)		  ((GTK_WIDGET_FLAGS (wid) & GTK_VISIBLE) != 0)#define GTK_WIDGET_DRAWABLE(wid)	  (GTK_WIDGET_VISIBLE (wid) && GTK_WIDGET_MAPPED (wid))#define GTK_WIDGET_SENSITIVE(wid)	  ((GTK_WIDGET_FLAGS (wid) & GTK_SENSITIVE) != 0)#define GTK_WIDGET_PARENT_SENSITIVE(wid)  ((GTK_WIDGET_FLAGS (wid) & GTK_PARENT_SENSITIVE) != 0)#define GTK_WIDGET_IS_SENSITIVE(wid)	  (GTK_WIDGET_SENSITIVE (wid) && \					   GTK_WIDGET_PARENT_SENSITIVE (wid))#define GTK_WIDGET_CAN_FOCUS(wid)	  ((GTK_WIDGET_FLAGS (wid) & GTK_CAN_FOCUS) != 0)#define GTK_WIDGET_HAS_FOCUS(wid)	  ((GTK_WIDGET_FLAGS (wid) & GTK_HAS_FOCUS) != 0)#define GTK_WIDGET_CAN_DEFAULT(wid)	  ((GTK_WIDGET_FLAGS (wid) & GTK_CAN_DEFAULT) != 0)#define GTK_WIDGET_HAS_DEFAULT(wid)	  ((GTK_WIDGET_FLAGS (wid) & GTK_HAS_DEFAULT) != 0)#define GTK_WIDGET_HAS_GRAB(wid)	  ((GTK_WIDGET_FLAGS (wid) & GTK_HAS_GRAB) != 0)#define GTK_WIDGET_RC_STYLE(wid)	  ((GTK_WIDGET_FLAGS (wid) & GTK_RC_STYLE) != 0)#define GTK_WIDGET_COMPOSITE_CHILD(wid)	  ((GTK_WIDGET_FLAGS (wid) & GTK_COMPOSITE_CHILD) != 0)#define GTK_WIDGET_APP_PAINTABLE(wid)	  ((GTK_WIDGET_FLAGS (wid) & GTK_APP_PAINTABLE) != 0)#define GTK_WIDGET_RECEIVES_DEFAULT(wid)  ((GTK_WIDGET_FLAGS (wid) & GTK_RECEIVES_DEFAULT) != 0)  /* Macros for setting and clearing widget flags. */#define GTK_WIDGET_SET_FLAGS(wid,flag)	  G_STMT_START{ (GTK_WIDGET_FLAGS (wid) |= (flag)); }G_STMT_END#define GTK_WIDGET_UNSET_FLAGS(wid,flag)  G_STMT_START{ (GTK_WIDGET_FLAGS (wid) &= ~(flag)); }G_STMT_END      typedef struct _GtkRequisition	  GtkRequisition;typedef struct _GtkAllocation	  GtkAllocation;typedef struct _GtkSelectionData GtkSelectionData;typedef struct _GtkWidgetClass	  GtkWidgetClass;typedef struct _GtkWidgetAuxInfo  GtkWidgetAuxInfo;typedef struct _GtkWidgetShapeInfo GtkWidgetShapeInfo;typedef void (*GtkCallback) (GtkWidget *widget,			     gpointer	data);/* A requisition is a desired amount of space which a *  widget may request. */struct _GtkRequisition{  gint16 width;  gint16 height;};/* An allocation is a size and position. Where a widget *  can ask for a desired size, it is actually given *  this amount of space at the specified position. */struct _GtkAllocation{  gint16 x;  gint16 y;  guint16 width;  guint16 height;};/* The contents of a selection are returned in a GtkSelectionData   structure. selection/target identify the request.    type specifies the type of the return; if length < 0, and   the data should be ignored. This structure has object semantics -   no fields should be modified directly, they should not be created   directly, and pointers to them should not be stored beyond the duration of   a callback. (If the last is changed, we'll need to add reference   counting.) The time field gives the timestamp at which the data was sent. */struct _GtkSelectionData{  GdkAtom selection;  GdkAtom target;  GdkAtom type;  gint	  format;  guchar *data;  gint	  length;};/* The widget is the base of the tree for displayable objects. *  (A displayable object is one which takes up some amount *  of screen real estate). It provides a common base and interface *  which actual widgets must adhere to. */struct _GtkWidget{  /* The object structure needs to be the first   *  element in the widget structure in order for   *  the object mechanism to work correctly. This   *  allows a GtkWidget pointer to be cast to a   *  GtkObject pointer.   */  GtkObject object;    /* 16 bits of internally used private flags.   * this will be packed into the same 4 byte alignment frame that   * state and saved_state go. we therefore don't waste any new   * space on this.   */  guint16 private_flags;    /* The state of the widget. There are actually only   *  5 widget states (defined in "gtkenums.h").   */  guint8 state;    /* The saved state of the widget. When a widgets state   *  is changed to GTK_STATE_INSENSITIVE via   *  "gtk_widget_set_state" or "gtk_widget_set_sensitive"   *  the old state is kept around in this field. The state   *  will be restored once the widget gets sensitive again.   */  guint8 saved_state;    /* The widgets name. If the widget does not have a name   *  (the name is NULL), then its name (as returned by   *  "gtk_widget_get_name") is its classes name.   * Among other things, the widget name is used to determine   *  the style to use for a widget.   */  gchar *name;    /* The style for the widget. The style contains the   *  colors the widget should be drawn in for each state   *  along with graphics contexts used to draw with and   *  the font to use for text.   */  GtkStyle *style;    /* The widgets desired size.   */  GtkRequisition requisition;    /* The widgets allocated size.   */  GtkAllocation allocation;    /* The widgets window or its parent window if it does   *  not have a window. (Which will be indicated by the   *  GTK_NO_WINDOW flag being set).   */  GdkWindow *window;    /* The widgets parent.   */  GtkWidget *parent;};struct _GtkWidgetClass{  /* The object class structure needs to be the first   *  element in the widget class structure in order for   *  the class mechanism to work correctly. This allows a   *  GtkWidgetClass pointer to be cast to a GtkObjectClass   *  pointer.   */  GtkObjectClass parent_class;    /* The signal to emit when a widget of this class is activated,   * gtk_widget_activate() handles the emission.   * Implementation of this signal is optional.   */  guint activate_signal;  /* This signal is emitted  when a widget of this class is added   * to a scrolling aware parent, gtk_widget_set_scroll_adjustments()   * handles the emission.   * Implementation of this signal is optional.   */  guint set_scroll_adjustments_signal;    /* basics */  void (* show)		       (GtkWidget      *widget);  void (* show_all)            (GtkWidget      *widget);  void (* hide)		       (GtkWidget      *widget);  void (* hide_all)            (GtkWidget      *widget);  void (* map)		       (GtkWidget      *widget);  void (* unmap)	       (GtkWidget      *widget);  void (* realize)	       (GtkWidget      *widget);  void (* unrealize)	       (GtkWidget      *widget);  void (* draw)		       (GtkWidget      *widget,				GdkRectangle   *area);  void (* draw_focus)	       (GtkWidget      *widget);  void (* draw_default)	       (GtkWidget      *widget);  void (* size_request)	       (GtkWidget      *widget,				GtkRequisition *requisition);  void (* size_allocate)       (GtkWidget      *widget,				GtkAllocation  *allocation);  void (* state_changed)       (GtkWidget      *widget,				GtkStateType	previous_state);  void (* parent_set)	       (GtkWidget      *widget,				GtkWidget      *previous_parent);  void (* style_set)	       (GtkWidget      *widget,				GtkStyle       *previous_style);    /* accelerators */  gint (* add_accelerator)     (GtkWidget      *widget,				guint           accel_signal_id,				GtkAccelGroup  *accel_group,				guint           accel_key,				GdkModifierType accel_mods,				GtkAccelFlags   accel_flags);  void (* remove_accelerator)  (GtkWidget      *widget,				GtkAccelGroup  *accel_group,				guint           accel_key,				GdkModifierType accel_mods);  /* explicit focus */  void (* grab_focus)          (GtkWidget      *widget);    /* events */  gint (* event)		   (GtkWidget	       *widget,				    GdkEvent	       *event);  gint (* button_press_event)	   (GtkWidget	       *widget,				    GdkEventButton     *event);  gint (* button_release_event)	   (GtkWidget	       *widget,				    GdkEventButton     *event);  gint (* motion_notify_event)	   (GtkWidget	       *widget,				    GdkEventMotion     *event);  gint (* delete_event)		   (GtkWidget	       *widget,				    GdkEventAny	       *event);  gint (* destroy_event)	   (GtkWidget	       *widget,				    GdkEventAny	       *event);  gint (* expose_event)		   (GtkWidget	       *widget,				    GdkEventExpose     *event);  gint (* key_press_event)	   (GtkWidget	       *widget,				    GdkEventKey	       *event);  gint (* key_release_event)	   (GtkWidget	       *widget,				    GdkEventKey	       *event);  gint (* enter_notify_event)	   (GtkWidget	       *widget,				    GdkEventCrossing   *event);  gint (* leave_notify_event)	   (GtkWidget	       *widget,				    GdkEventCrossing   *event);  gint (* configure_event)	   (GtkWidget	       *widget,				    GdkEventConfigure  *event);  gint (* focus_in_event)	   (GtkWidget	       *widget,				    GdkEventFocus      *event);  gint (* focus_out_event)	   (GtkWidget	       *widget,				    GdkEventFocus      *event);  gint (* map_event)		   (GtkWidget	       *widget,				    GdkEventAny	       *event);  gint (* unmap_event)		   (GtkWidget	       *widget,				    GdkEventAny	       *event);  gint (* property_notify_event)   (GtkWidget	       *widget,				    GdkEventProperty   *event);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -