~canonical-dx-team/ubuntu/maverick/gtk+2.0/menuproxy

« back to all changes in this revision

Viewing changes to gdk/gdkvisual.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2010-06-02 15:59:27 UTC
  • mfrom: (72.1.15 experimental)
  • Revision ID: james.westby@ubuntu.com-20100602155927-uwh99v2582rw3r8z
Tags: 2.21.1-1ubuntu1
* debian/patches/070_mandatory-relibtoolize.patch:
  - refreshed
* debian/patches/072_indicator_menu_update.patch:
  - change by Cody Russell to send an update event on menu changes,
    should make the bluetooth indicator refresh correctly (lp: #558841)
* debian/patches/091_bugzilla_tooltip_refresh.patch:
  - refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
{
79
79
  GObject parent_instance;
80
80
  
81
 
  GdkVisualType type;
82
 
  gint depth;
83
 
  GdkByteOrder byte_order;
84
 
  gint colormap_size;
85
 
  gint bits_per_rgb;
86
 
 
87
 
  guint32 red_mask;
88
 
  gint red_shift;
89
 
  gint red_prec;
90
 
 
91
 
  guint32 green_mask;
92
 
  gint green_shift;
93
 
  gint green_prec;
94
 
 
95
 
  guint32 blue_mask;
96
 
  gint blue_shift;
97
 
  gint blue_prec;
 
81
  GdkVisualType GSEAL (type);
 
82
  gint GSEAL (depth);
 
83
  GdkByteOrder GSEAL (byte_order);
 
84
  gint GSEAL (colormap_size);
 
85
  gint GSEAL (bits_per_rgb);
 
86
 
 
87
  guint32 GSEAL (red_mask);
 
88
  gint GSEAL (red_shift);
 
89
  gint GSEAL (red_prec);
 
90
 
 
91
  guint32 GSEAL (green_mask);
 
92
  gint GSEAL (green_shift);
 
93
  gint GSEAL (green_prec);
 
94
 
 
95
  guint32 GSEAL (blue_mask);
 
96
  gint GSEAL (blue_shift);
 
97
  gint GSEAL (blue_prec);
98
98
};
99
99
 
100
100
GType         gdk_visual_get_type            (void) G_GNUC_CONST;
119
119
 
120
120
GdkScreen *gdk_visual_get_screen (GdkVisual *visual);
121
121
 
 
122
GdkVisualType gdk_visual_get_visual_type         (GdkVisual *visual);
 
123
gint          gdk_visual_get_depth               (GdkVisual *visual);
 
124
GdkByteOrder  gdk_visual_get_byte_order          (GdkVisual *visual);
 
125
gint          gdk_visual_get_colormap_size       (GdkVisual *visual);
 
126
gint          gdk_visual_get_bits_per_rgb        (GdkVisual *visual);
 
127
void          gdk_visual_get_red_pixel_details   (GdkVisual *visual,
 
128
                                                  guint32   *mask,
 
129
                                                  gint      *shift,
 
130
                                                  gint      *precision);
 
131
void          gdk_visual_get_green_pixel_details (GdkVisual *visual,
 
132
                                                  guint32   *mask,
 
133
                                                  gint      *shift,
 
134
                                                  gint      *precision);
 
135
void          gdk_visual_get_blue_pixel_details  (GdkVisual *visual,
 
136
                                                  guint32   *mask,
 
137
                                                  gint      *shift,
 
138
                                                  gint      *precision);
 
139
 
122
140
#ifndef GDK_DISABLE_DEPRECATED
123
141
#define gdk_visual_ref(v) g_object_ref(v)
124
142
#define gdk_visual_unref(v) g_object_unref(v)