summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* docs: Move documentation to inline comments: cairo_interactionJavier Jardón2010-10-042-99/+1
|
* docs: Move documentation to inline comments: GtkComboBoxJavier Jardón2010-10-042-461/+1
|
* docs: Move documentation to inline comments: GtkNotebookJavier Jardón2010-10-032-709/+1
|
* docs: Latest 2.x release will be 2.24, not 2.22Javier Jardón2010-10-031-3/+3
|
* docs: Use gtk_widget_get_preferred_size() instead ↵Javier Jardón2010-10-032-2/+2
| | | | | | gtk_size_request_get_preferred_size() GtkSizeRequest interface is now merged in GtkWidget
* docs: Move documentation to inline comments: GtkEntryBufferGarrett Regier2010-10-032-171/+1
| | | | | | Fixes https://bugzilla.gnome.org/show_bug.cgi?id=617320 Signed-off-by: Javier Jardón <jjardon@gnome.org>
* docs: Move documentation to inline comments: GtkTooltipJavier Jardón2010-10-032-173/+1
|
* docs: Move documentation to inline comments: GtkToolbarJavier Jardón2010-10-032-305/+1
|
* docs: Move documentation to inline comments: GtkComboBoxEntryGarrett Regier2010-10-022-123/+1
| | | | | | Fixes https://bugzilla.gnome.org/show_bug.cgi?id=617308 Signed-off-by: Javier Jardón <jjardon@gnome.org>
* gdk: Make gdk_pixbuf_get_from_*() bindableBenjamin Otte2010-10-021-2/+2
| | | | | | | | | | The ownership of the return value for gdk_pixbuf_get_from_window() and gdk_pixbuf_get_from_surface() was determined by the first argument. Because that is an ugly design and the functions are new to GTK3, we decided to adapt them. And that adaptation was quite easy since almost no one passses anything but NULL as the first argument.
* Fix make distMatthias Clasen2010-10-011-6/+8
|
* Migration guide: Add an example for creating custom cursorsMatthias Clasen2010-10-011-2/+50
|
* Revert an erroneous changeMatthias Clasen2010-10-011-1/+1
|
* GTK docs: various fixupsMatthias Clasen2010-10-011-24/+25
|
* GDK docs: help gtk-doc understand gdk_window_invalidate_maybe_recurseMatthias Clasen2010-10-011-2/+1
|
* GDK docs: Clean out some dead symbolsMatthias Clasen2010-10-011-5/+0
|
* Remove unneded castsJavier Jardón2010-09-291-4/+4
| | | | | | As gtk_adjustment_new() returns a GtkAdjustment* now https://bugzilla.gnome.org/show_bug.cgi?id=630731
* gtk_adjustment_new() should return a GtkAdjustment*Javier Jardón2010-09-291-32/+28
| | | | Fixes https://bugzilla.gnome.org/show_bug.cgi?id=630731
* API: remove gtk_window_set_visual()Benjamin Otte2010-09-281-1/+0
| | | | | | gtk_widget_set_visual() exists now and can be used instead. This reverts commit 59b227e1232998fdb854affc8dcd9dcd2a446b39.
* API: gtk: Add gtk_widget_set_visual()Benjamin Otte2010-09-281-0/+1
| | | | | | | | | | It turns out that the previous handling of just providing a way to set visuals just on toplevels was not sufficient. In particular it complicated the various implementations of the tray icon specification. This patch reintroduces gtk_widget_set_visual() which behaves very similar to GTK2's gtk_widget_set_colormap(). A future commit will remove the gtk_window_set_visual() function.
* Add a migration guide section on GtkObjectMatthias Clasen2010-09-261-0/+29
|
* Remove GtkObject from the docsMatthias Clasen2010-09-263-38/+14
|
* Remove GtkObject completelyMatthias Clasen2010-09-261-1/+0
|
* Move documentation to inline comments: GtkPaperSizeJavier Jardón2010-09-272-308/+1
|
* Move documentation to inline comments: GtkAccelMapJavier Jardón2010-09-272-173/+1
|
* Add a missing end tagMatthias Clasen2010-09-261-4/+5
|
* Migration guide: Add an example for colormap -> visualMatthias Clasen2010-09-261-7/+65
|
* Expand the migration guideMatthias Clasen2010-09-261-21/+59
| | | | | | This commit add some text about mult-window ::draw implementations, pointing out the gtk_cairo_should_draw_window() and gtk_cairo_transform_to_window() convenience functions.
* API: Add gtk_cairo_transform_to_window()Benjamin Otte2010-09-261-0/+1
| | | | | | The function reverses the transform that GTK does before emitting a draw event. So we can use it in "old" widgets to revert the coordinate system properly.
* Move GtkSizeRequest into GtkWidgetBenjamin Otte2010-09-264-12/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | It doesn't make sense to keep them separate as GtkSizeRequest requires a GtkWidget and GtkWidget implements GtkSizeRequest, so you can never have one without the other. It also makes the code a lot easier because no casts are required when calling functions. Also, the names would translate to gtk_widget_get_width() and people agreed that this would be a too generic name, so a "preferred" was added to the names. So this patch moves the functions: gtk_size_request_get_request_mode() => gtk_widget_get_request_mode() gtk_size_request_get_width() => gtk_widget_get_preferred_width() gtk_size_request_get_height() => gtk_widget_get_preferred_height() gtk_size_request_get_size() => gtk_widget_get_preferred_size() gtk_size_request_get_width_for_height() => gtk_widget_get_preferred_width_for_height() gtk_size_request_get_height_for_width() => gtk_widget_get_preferred_height_for_width() ... and moves the corresponding vfuncs to the GtkWidgetClass. The patch also renames the implementations of the vfuncs in widgets to include the word "preferrred".
* API: remove gdk_drawable_get_size()Benjamin Otte2010-09-261-1/+0
|
* docs: Get rid of gdk_drawable_get_size() usage in shooter exampleBenjamin Otte2010-09-261-1/+2
|
* API: Remove window clear APIsBenjamin Otte2010-09-261-2/+0
| | | | | | The feature can and should be implemented manually using gdk_window_get_background() and Cairo drawing. A non-cairo drawing API does not make sense in GDK anymore.
* API: Add size getters for GdkWindowBenjamin Otte2010-09-261-0/+2
| | | | | gdk_window_get_width() and gdk_window_get_height() will replace gdk_drawable_get_size().
* Add gtk_cairo_should_draw_window to the docsMatthias Clasen2010-09-261-0/+1
|
* Docs: start migration guide additionsMatthias Clasen2010-09-261-0/+53
|
* API: Add gtk_widget_draw()Benjamin Otte2010-09-261-0/+1
| | | | And here's the final patch that all the previous patches were about.
* API: Remove gtk_container_propagate_expose()Benjamin Otte2010-09-261-1/+1
| | | | | Also, move the documentation to its replacement gtk_widget_propagate_draw().
* API: ruler: Remove private ruler draw functions from headerBenjamin Otte2010-09-261-2/+0
|
* API: Add API to query width and height when renderingBenjamin Otte2010-09-261-0/+2
| | | | | | | | | | | The functions are gtk_widget_get_allocated_width() and gtk_widget_get_allocated_height(). They are currently identical to using width/height of gtk_widget_get_allocation(), but are introduced for ease of use (no need to use a custom struct) and to free people from having to think about allocation.x and allocation.y (which is where the origin of the cairo context in GtkWidget::draw is located).
* API: add gdk_cairo_get_clip_rectangle() convenience APIBenjamin Otte2010-09-261-0/+1
|
* Make the docs buildMatthias Clasen2010-09-262-4/+0
|
* API: Remove GdkColormapBenjamin Otte2010-09-261-21/+1
|
* API: Remove colormap handling from GdkScreenBenjamin Otte2010-09-261-5/+0
| | | | | | | | In particular, the following functions are gone: - gdk_screen_get_default_colormap() - gdk_screen_set_default_colormap() - gdk_screen_get_system_colormap() - gdk_screen_get_rgba_colormap()
* API: Remove gdk_drawable_get_colormap()Benjamin Otte2010-09-262-10/+0
| | | | | | And with it, remove any notion of colormaps from GdkWindow. In particular, X11 windows will now not set attrs.colormap when calling XCreateWindow.
* API: Remove gdk_drawable_get_display()Benjamin Otte2010-09-262-10/+0
|
* API: Add gdk_window_get_display()Benjamin Otte2010-09-261-0/+1
|
* API: Remove drawable getters for visual, screen and depthBenjamin Otte2010-09-261-3/+0
| | | | | | | | Removed and replaced are: gdk_drawable_get_visual() => gdk_window_get_visual() gdk_drawable_get_screen() => gdk_window_get_screen() gdk_drawable_get_depth() => gdk_visual_get_depth (gdk_window_get_visual())
* API: Add gdk_window_get_visual() and gdk_window_get_screen()Benjamin Otte2010-09-261-0/+2
| | | | | Now that we store the visual in the GdkWindow, these are rather trivial accessors.
* API: Remove gdk_drawable_set_colormap()Benjamin Otte2010-09-261-1/+0
|