root/sources/gtkd.diff
| Revision 582, 8.9 kB (checked in by Gregor, 2 years ago) |
|---|
-
dsss.conf
old new 1 name = gtkd 2 3 [src] 4 type = subdir -
src/dsss.conf
old new 1 name = gtkd 2 3 [atk] 4 [cairoLib] 5 [gdk] 6 [gdkpixbuf] 7 [glade] 8 [glib] 9 [gobject] 10 [gthread] 11 [gtk] 12 [gtkc] 13 [pango] -
src/gdk/Colormap.d
old new 153 153 * Returns: 154 154 * the colormap 155 155 */ 156 public Colormap ref ()156 public Colormap ref_() 157 157 { 158 158 // GdkColormap* gdk_colormap_ref (GdkColormap *cmap); 159 159 return new Colormap( gdk_colormap_ref(gdkColormap) ); -
src/gdk/Cursor.d
old new 312 312 * Returns: 313 313 * Same cursor that was passed in 314 314 */ 315 public Cursor ref ()315 public Cursor ref_() 316 316 { 317 317 // GdkCursor* gdk_cursor_ref (GdkCursor *cursor); 318 318 return new Cursor( gdk_cursor_ref(gdkCursor) ); -
src/gdk/Font.d
old new 383 383 * Returns: 384 384 * font 385 385 */ 386 public Font ref ()386 public Font ref_() 387 387 { 388 388 // GdkFont* gdk_font_ref (GdkFont *font); 389 389 return new Font( gdk_font_ref(gdkFont) ); -
src/gdk/GC.d
old new 192 192 * Returns: 193 193 * the gc. 194 194 */ 195 public GC ref ()195 public GC ref_() 196 196 { 197 197 // GdkGC* gdk_gc_ref (GdkGC *gc); 198 198 return new GC( gdk_gc_ref(gdkGC) ); -
src/gdk/ImageGdk.d
old new 193 193 * Returns: 194 194 * the image 195 195 */ 196 public GdkImage* ref ()196 public GdkImage* ref_() 197 197 { 198 198 // GdkImage* gdk_image_ref (GdkImage *image); 199 199 return gdk_image_ref(gdkImage); -
src/gdkpixbuf/PixbufAnimation.d
old new 137 137 * Returns: 138 138 * The same as the animation argument. 139 139 */ 140 public PixbufAnimation ref ()140 public PixbufAnimation ref_() 141 141 { 142 142 // GdkPixbufAnimation* gdk_pixbuf_animation_ref (GdkPixbufAnimation *animation); 143 143 return new PixbufAnimation( gdk_pixbuf_animation_ref(gdkPixbufAnimation) ); -
src/glib/AsyncQueue.d
old new 150 150 * Returns: 151 151 * the queue that was passed in (since 2.6) 152 152 */ 153 public AsyncQueue ref ()153 public AsyncQueue ref_() 154 154 { 155 155 // GAsyncQueue* g_async_queue_ref (GAsyncQueue *queue); 156 156 return new AsyncQueue( g_async_queue_ref(gAsyncQueue) ); -
src/glib/HashTable.d
old new 433 433 * the passed in GHashTable. 434 434 * Since 2.10 435 435 */ 436 public HashTable ref ()436 public HashTable ref_() 437 437 { 438 438 // GHashTable* g_hash_table_ref (GHashTable *hash_table); 439 439 return new HashTable( g_hash_table_ref(gHashTable) ); -
src/glib/IOChannel.d
old new 524 524 * Returns: 525 525 * the channel that was passed in (since 2.6) 526 526 */ 527 public IOChannel ref ()527 public IOChannel ref_() 528 528 { 529 529 // GIOChannel* g_io_channel_ref (GIOChannel *channel); 530 530 return new IOChannel( g_io_channel_ref(gIOChannel) ); -
src/glib/MainContext.d
old new 205 205 * Returns: 206 206 * the context that was passed in (since 2.6) 207 207 */ 208 public MainContext ref ()208 public MainContext ref_() 209 209 { 210 210 // GMainContext* g_main_context_ref (GMainContext *context); 211 211 return new MainContext( g_main_context_ref(gMainContext) ); -
src/glib/MainLoop.d
old new 168 168 * Returns: 169 169 * loop 170 170 */ 171 public MainLoop ref ()171 public MainLoop ref_() 172 172 { 173 173 // GMainLoop* g_main_loop_ref (GMainLoop *loop); 174 174 return new MainLoop( g_main_loop_ref(gMainLoop) ); -
src/glib/Source.d
old new 260 260 * Returns: 261 261 * source 262 262 */ 263 public Source ref ()263 public Source ref_() 264 264 { 265 265 // GSource* g_source_ref (GSource *source); 266 266 return new Source( g_source_ref(gSource) ); -
src/gobject/Closure.d
old new 175 175 * Returns: 176 176 * The closure passed in, for convenience 177 177 */ 178 public Closure ref ()178 public Closure ref_() 179 179 { 180 180 // GClosure* g_closure_ref (GClosure *closure); 181 181 return new Closure( g_closure_ref(gClosure) ); -
src/gobject/ObjectG.d
old new 589 589 * Returns: 590 590 * the same object 591 591 */ 592 public static void* ref (void* object)592 public static void* ref_(void* object) 593 593 { 594 594 // gpointer g_object_ref (gpointer object); 595 595 return g_object_ref(object); -
src/gobject/ParamSpec.d
old new 128 128 * Returns: 129 129 * the GParamSpec that was passed into this function 130 130 */ 131 public ParamSpec ref ()131 public ParamSpec ref_() 132 132 { 133 133 // GParamSpec* g_param_spec_ref (GParamSpec *pspec); 134 134 return new ParamSpec( g_param_spec_ref(gParamSpec) ); -
src/gtk/ObjectGtk.d
old new 234 234 * Returns: 235 235 * object. 236 236 */ 237 public GtkObject* ref ()237 public GtkObject* ref_() 238 238 { 239 239 // GtkObject* gtk_object_ref (GtkObject *object); 240 240 return gtk_object_ref(gtkObject); -
src/gtk/Style.d
old new 248 248 * Returns: 249 249 * style. 250 250 */ 251 public Style ref ()251 public Style ref_() 252 252 { 253 253 // GtkStyle* gtk_style_ref (GtkStyle *style); 254 254 return new Style( gtk_style_ref(gtkStyle) ); -
src/gtk/TextAttributes.d
old new 205 205 * Background color as a string. 206 206 * Default value: NULL 207 207 */ 208 public TextAttributes ref ()208 public TextAttributes ref_() 209 209 { 210 210 // GtkTextAttributes* gtk_text_attributes_ref (GtkTextAttributes *values); 211 211 return new TextAttributes( gtk_text_attributes_ref(gtkTextAttributes) ); -
src/gtkc/glibtypes.d
old new 1215 1215 /** 1216 1216 * The GSourceCallbackFuncs struct contains 1217 1217 * functions for managing callback objects. 1218 * ref ()1218 * ref_() 1219 1219 * Called when a reference is added to the callback object. 1220 1220 * unref() 1221 1221 * Called when a reference to the callback object is dropped. -
src/pango/PgCoverage.d
old new 92 92 * Returns: 93 93 * coverage 94 94 */ 95 public static PangoCoverage* ref (PangoCoverage* coverage)95 public static PangoCoverage* ref_(PangoCoverage* coverage) 96 96 { 97 97 // PangoCoverage* pango_coverage_ref (PangoCoverage *coverage); 98 98 return pango_coverage_ref(coverage); -
src/pango/PgFontMetrics.d
old new 191 191 * Returns: 192 192 * metrics 193 193 */ 194 public PangoFontMetrics* ref ()194 public PangoFontMetrics* ref_() 195 195 { 196 196 // PangoFontMetrics* pango_font_metrics_ref (PangoFontMetrics *metrics); 197 197 return pango_font_metrics_ref(pangoFontMetrics);
Note: See TracBrowser for help on using the browser.
