]> Pileus Git - ~andy/gtk/log
~andy/gtk
13 years agoAdded gtk_tree_menu_set/get_tearoff to allow the root menu to have a tearoff item
Tristan Van Berkom [Tue, 23 Nov 2010 03:11:52 +0000 (12:11 +0900)]
Added gtk_tree_menu_set/get_tearoff to allow the root menu to have a tearoff item

Combo boxes expose an "add-tearoffs" feature to add a tearoff item to the root of the combo menu, added this feature to GtkTreeMenu to achieve this (and updated the testcase).

13 years agoReduced code size in GtkTreeMenu by only implementing GtkCellLayout->get_area method...
Tristan Van Berkom [Mon, 22 Nov 2010 07:32:18 +0000 (16:32 +0900)]
Reduced code size in GtkTreeMenu by only implementing GtkCellLayout->get_area method for the GtkCellLayout iface.

13 years agoReduced code in GtkCellView by just implementing the GtkCellLayout->get_area method.
Tristan Van Berkom [Mon, 22 Nov 2010 07:29:26 +0000 (16:29 +0900)]
Reduced code in GtkCellView by just implementing the GtkCellLayout->get_area method.

13 years agoConnected to GtkTreeModel signals in GtkTreeMenu
Tristan Van Berkom [Mon, 22 Nov 2010 06:53:19 +0000 (15:53 +0900)]
Connected to GtkTreeModel signals in GtkTreeMenu

Now the GtkTreeMenu properly updates its hierarchy when the underlying
model data changes (row inserted/deleted or reordered). Also some unneeded
hackery was removed, all size calculations are delegated to the cellviews.

13 years agoGtkCellView now watches the "row-changed" signal.
Tristan Van Berkom [Mon, 22 Nov 2010 06:51:51 +0000 (15:51 +0900)]
GtkCellView now watches the "row-changed" signal.

When the "row-changed" signal on the model is trapped, if the row which
changed is the displayed row then the context is flushed and sizes are
recalculated for every area in the same context.

13 years agoAdded GtkTreeMenuHeaderFunc to decide if a submenu gets a leaf header.
Tristan Van Berkom [Sat, 20 Nov 2010 07:32:24 +0000 (16:32 +0900)]
Added GtkTreeMenuHeaderFunc to decide if a submenu gets a leaf header.

GtkComboBox needs treemenus to allow selection of all leafs including
rows which may have children, this allows the combobox or combobox user
to decide which row that has children can also be selectable as a header
leaf of the submenu. Test case testtreemenu updated to reflect this.

13 years agoFixed GtkCellView to not clear the layout when disposing
Tristan Van Berkom [Sat, 20 Nov 2010 07:30:51 +0000 (16:30 +0900)]
Fixed GtkCellView to not clear the layout when disposing

The layout belongs the underlying area which may be shared across
views and treemenus, let the cells be destroyed when the area is finally
destroyed.

13 years agoAdding more "small" submenus to testtreemenu
Tristan Van Berkom [Fri, 19 Nov 2010 05:59:14 +0000 (14:59 +0900)]
Adding more "small" submenus to testtreemenu

13 years agoFixed trailing ';' on if statement in gtkmenuitem.c
Tristan Van Berkom [Fri, 19 Nov 2010 05:56:59 +0000 (14:56 +0900)]
Fixed trailing ';' on if statement in gtkmenuitem.c

13 years agoAdded submenus to tests/testtreemenu
Tristan Van Berkom [Fri, 19 Nov 2010 04:39:30 +0000 (13:39 +0900)]
Added submenus to tests/testtreemenu

13 years agoFixed GtkTreeMenu to not infinitely recurse when building submenus.
Tristan Van Berkom [Fri, 19 Nov 2010 04:30:30 +0000 (13:30 +0900)]
Fixed GtkTreeMenu to not infinitely recurse when building submenus.

GtkTreeMenu needs to only populate it's submenus when set_root()
is called, we were populating it when the model is set which cause
the tree to be infinitely populated as the root is NULL by default.

Also call gtk_menu_set_reserve_toggle_thingy (FALSE) to not reserve
space for the toggle size.

13 years agoFixed GtkMenuItem to reserve the actual arrow size and spacing
Tristan Van Berkom [Fri, 19 Nov 2010 04:29:20 +0000 (13:29 +0900)]
Fixed GtkMenuItem to reserve the actual arrow size and spacing

GtkMenuItem was reserving arrow size based on it's requested height,
now base the submenu arrow size on the actual arrow size and spacing.

13 years agoAdding GtkTreeMenu class.
Tristan Van Berkom [Thu, 18 Nov 2010 08:33:23 +0000 (17:33 +0900)]
Adding GtkTreeMenu class.

Added GtkTreeMenu class to automatically render
a GtkTreeModel into a GtkMenu hierarchy (will be
used by GtkComboBox for its dropdown menus). Included
an accompanying testcase tests/testtreemenu

13 years agoAdded gtk_menu_item_set/get_reserve_indicator.
Tristan Van Berkom [Thu, 18 Nov 2010 08:31:31 +0000 (17:31 +0900)]
Added gtk_menu_item_set/get_reserve_indicator.

This is needed by GtkTreeMenu to ensure that child menu items
reserve space for the submenu indicator even if they dont have
submenus... in this way we ensure the same size of all cell
areas in the menu items at allocation/request time.

13 years agoFixing GtkCellView PROP_CELL_AREA_CONTEXT property id
Tristan Van Berkom [Thu, 18 Nov 2010 08:30:33 +0000 (17:30 +0900)]
Fixing GtkCellView PROP_CELL_AREA_CONTEXT property id

... and renaming some internal variables.

13 years agoAdded gtk_cell_view_new_with_context().
Tristan Van Berkom [Thu, 18 Nov 2010 06:21:41 +0000 (15:21 +0900)]
Added gtk_cell_view_new_with_context().

13 years agoReimplemented GtkCellView using an internal GtkCellArea.
Tristan Van Berkom [Thu, 18 Nov 2010 04:53:55 +0000 (13:53 +0900)]
Reimplemented GtkCellView using an internal GtkCellArea.

Added construct GtkCellArea and GtkCellAreaContext properties,
the context property allows putting multiple cellviews into the
same size request context.

13 years agoRemoved GtkMenuItem->show_submenu_indicator flag
Tristan Van Berkom [Wed, 17 Nov 2010 07:00:34 +0000 (16:00 +0900)]
Removed GtkMenuItem->show_submenu_indicator flag

The show_submenu_indicator flag was explicitly set in various
places from GtkMenu/GtkMenuBar at request times, since the
GtkMenuItem already checks the parent type for GTK_IS_MENU_BAR()
in various places, removed this flag in favor of just checking
the parent type (only in the interest of better readable code).

13 years agoFormatting fixes and whitespace cleanups
Matthias Clasen [Tue, 4 Jan 2011 07:21:38 +0000 (02:21 -0500)]
Formatting fixes and whitespace cleanups

13 years agoRemove pack property altogether
Matthias Clasen [Tue, 4 Jan 2011 07:06:03 +0000 (02:06 -0500)]
Remove pack property altogether

13 years agoRemove pack consideration from tab drawing
Matthias Clasen [Tue, 4 Jan 2011 07:03:03 +0000 (02:03 -0500)]
Remove pack consideration from tab drawing

13 years agoDon't consider pack when allocating tabs
Matthias Clasen [Tue, 4 Jan 2011 06:57:22 +0000 (01:57 -0500)]
Don't consider pack when allocating tabs

13 years agoDrop pack consideration from gtk_notebook_search_page
Matthias Clasen [Tue, 4 Jan 2011 06:39:18 +0000 (01:39 -0500)]
Drop pack consideration from gtk_notebook_search_page

13 years agoDrop internal function to find page position
Matthias Clasen [Tue, 4 Jan 2011 06:36:09 +0000 (01:36 -0500)]
Drop internal function to find page position

13 years agoRemove pack consideration from tab dnd
Matthias Clasen [Tue, 4 Jan 2011 06:31:47 +0000 (01:31 -0500)]
Remove pack consideration from tab dnd

13 years agoRemove pack consideration from tab reordering
Matthias Clasen [Tue, 4 Jan 2011 06:23:05 +0000 (01:23 -0500)]
Remove pack consideration from tab reordering

13 years agoRemove pack arguments from some internal functions
Matthias Clasen [Tue, 4 Jan 2011 06:11:28 +0000 (01:11 -0500)]
Remove pack arguments from some internal functions

This removes pack from gtk_notebook_{set,query}_tab_label_packing.

13 years agoRemove the deprecated GtkNotebook:tab-pack child property
Matthias Clasen [Tue, 4 Jan 2011 05:57:34 +0000 (00:57 -0500)]
Remove the deprecated GtkNotebook:tab-pack child property

13 years agoDon't use GtkNotebook:tab-pack in testnotebookdnd
Matthias Clasen [Tue, 4 Jan 2011 05:55:50 +0000 (00:55 -0500)]
Don't use GtkNotebook:tab-pack in testnotebookdnd

13 years agoGtkNotebook: fix reference to no-longer-exiting function in docs
Matthias Clasen [Tue, 4 Jan 2011 03:55:38 +0000 (22:55 -0500)]
GtkNotebook: fix reference to no-longer-exiting function in docs

13 years agoDon't use page_size in GtkSpinButton
Matthias Clasen [Tue, 4 Jan 2011 02:51:58 +0000 (21:51 -0500)]
Don't use page_size in GtkSpinButton

It ought to be 0 anyway, but don't use it.

This puts bug 307963 to rest.

13 years agoRename gtk-update-icon-cache and gtk-builder-convert back
Matthias Clasen [Tue, 4 Jan 2011 02:31:55 +0000 (21:31 -0500)]
Rename gtk-update-icon-cache and gtk-builder-convert back

In bug 635207, it was pointed out that it is a bad idea to
rename these tools purely in the name of parallel-installability,
since it forces dependencies to make a choice between running
gtk-update-icon-cache and gtk-update-icon-cache-3.0 (or both ?!).

So, we rename these utilities back to their un-suffixed names
and rely on distributors to resolve the conflict between GTK+ 2.x
and GTK+ 3.0 packages, which can be done e.g. by dropping the
utilities from the gtk3 packages and add a gtk3 -> gtk2 dependency.

13 years agoMake GtkPathBar use ::style-updated
Carlos Garnacho [Tue, 4 Jan 2011 01:41:49 +0000 (02:41 +0100)]
Make GtkPathBar use ::style-updated

13 years agoGtkPaned: Remove unneeded call
Carlos Garnacho [Tue, 4 Jan 2011 01:41:22 +0000 (02:41 +0100)]
GtkPaned: Remove unneeded call

13 years agoMake GtkOffscreenWindow use GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:41:04 +0000 (02:41 +0100)]
Make GtkOffscreenWindow use GtkStyleContext

13 years agoGtkNotebook: remove unneeded call
Carlos Garnacho [Tue, 4 Jan 2011 01:40:49 +0000 (02:40 +0100)]
GtkNotebook: remove unneeded call

13 years agoGtkMisc: Remove unneeded calls
Carlos Garnacho [Tue, 4 Jan 2011 01:40:33 +0000 (02:40 +0100)]
GtkMisc: Remove unneeded calls

13 years agoMake GtkMessageDialog use GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:40:16 +0000 (02:40 +0100)]
Make GtkMessageDialog use GtkStyleContext

13 years agoMake GtkLinkButton use ::style-updated
Carlos Garnacho [Tue, 4 Jan 2011 01:38:24 +0000 (02:38 +0100)]
Make GtkLinkButton use ::style-updated

13 years agoGtkInvisible: Avoid chaining up in ::style-updated
Carlos Garnacho [Tue, 4 Jan 2011 01:36:45 +0000 (02:36 +0100)]
GtkInvisible: Avoid chaining up in ::style-updated

13 years agoMake GtkHandleBox size request code use GtkStyleContext for padding
Carlos Garnacho [Tue, 4 Jan 2011 01:35:19 +0000 (02:35 +0100)]
Make GtkHandleBox size request code use GtkStyleContext for padding

13 years agoMake GtkFixed use GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:34:43 +0000 (02:34 +0100)]
Make GtkFixed use GtkStyleContext

13 years agoMake GtkFileChooser use GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:34:28 +0000 (02:34 +0100)]
Make GtkFileChooser use GtkStyleContext

13 years agoMake GtkFileChooserButton use ::style-updated
Carlos Garnacho [Tue, 4 Jan 2011 01:33:24 +0000 (02:33 +0100)]
Make GtkFileChooserButton use ::style-updated

13 years agoMake DnD code use GtkStyleContext for the highlight rectangle.
Carlos Garnacho [Tue, 4 Jan 2011 01:32:04 +0000 (02:32 +0100)]
Make DnD code use GtkStyleContext for the highlight rectangle.

13 years agoMake GtkEntryCompletion use GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:31:06 +0000 (02:31 +0100)]
Make GtkEntryCompletion use GtkStyleContext

13 years agoGtkEntry: get font description from GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:28:19 +0000 (02:28 +0100)]
GtkEntry: get font description from GtkStyleContext

13 years agoGtkEntry: Remove unneeded calls
Carlos Garnacho [Tue, 4 Jan 2011 01:28:08 +0000 (02:28 +0100)]
GtkEntry: Remove unneeded calls

13 years agoMake GtkDrawingArea use GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:26:24 +0000 (02:26 +0100)]
Make GtkDrawingArea use GtkStyleContext

13 years agoGtkExpander: remove unneeded call
Carlos Garnacho [Tue, 4 Jan 2011 01:24:38 +0000 (02:24 +0100)]
GtkExpander: remove unneeded call

13 years agoRemove unneeded/deprecated call from size requisition code
Carlos Garnacho [Tue, 4 Jan 2011 01:23:23 +0000 (02:23 +0100)]
Remove unneeded/deprecated call from size requisition code

13 years agoGtkToolItem: Remove unneeded call
Carlos Garnacho [Tue, 4 Jan 2011 01:22:01 +0000 (02:22 +0100)]
GtkToolItem: Remove unneeded call

13 years agoMake GtkDialog use ::style-updated
Carlos Garnacho [Tue, 4 Jan 2011 01:20:21 +0000 (02:20 +0100)]
Make GtkDialog use ::style-updated

13 years agoMake GtkCellView use GtkStateFlags
Carlos Garnacho [Tue, 4 Jan 2011 01:19:29 +0000 (02:19 +0100)]
Make GtkCellView use GtkStateFlags

13 years agoMake GtkTooltip use GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:18:51 +0000 (02:18 +0100)]
Make GtkTooltip use GtkStyleContext

13 years agoMake GtkWin32EmbedWidget use GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:13:01 +0000 (02:13 +0100)]
Make GtkWin32EmbedWidget use GtkStyleContext

13 years agoMake GtkPlug use GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:12:11 +0000 (02:12 +0100)]
Make GtkPlug use GtkStyleContext

13 years agoMake GtkRecentChooser use GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:11:12 +0000 (02:11 +0100)]
Make GtkRecentChooser use GtkStyleContext

13 years agoGtkSeparatorToolItem: remove unneeded call
Carlos Garnacho [Tue, 4 Jan 2011 01:10:09 +0000 (02:10 +0100)]
GtkSeparatorToolItem: remove unneeded call

13 years agoMake GtkSocket use GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:09:11 +0000 (02:09 +0100)]
Make GtkSocket use GtkStyleContext

13 years agoGtkSwitch: remove deprecated call.
Carlos Garnacho [Tue, 4 Jan 2011 01:08:02 +0000 (02:08 +0100)]
GtkSwitch: remove deprecated call.

13 years agoGtkToolbar: remove deprecated call
Carlos Garnacho [Tue, 4 Jan 2011 01:07:06 +0000 (02:07 +0100)]
GtkToolbar: remove deprecated call

13 years agoMake GtkToolButton use ::style-updated
Carlos Garnacho [Tue, 4 Jan 2011 01:06:32 +0000 (02:06 +0100)]
Make GtkToolButton use ::style-updated

13 years agoUpdate GtkTrayIcon to GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 01:04:37 +0000 (02:04 +0100)]
Update GtkTrayIcon to GtkStyleContext

13 years agoCompress all ::style-updated prior to ::realize
Carlos Garnacho [Tue, 4 Jan 2011 00:59:23 +0000 (01:59 +0100)]
Compress all ::style-updated prior to ::realize

This is done to avoid early emission of this signal, that was
causing warnings during GtkDialog construction.

13 years agoUpdate GtkAssistant to GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 00:57:50 +0000 (01:57 +0100)]
Update GtkAssistant to GtkStyleContext

13 years agoUpdate GtkAboutDialog to GtkStyleContext
Carlos Garnacho [Tue, 4 Jan 2011 00:12:10 +0000 (01:12 +0100)]
Update GtkAboutDialog to GtkStyleContext

13 years agoUpdate GtkToolPalette to GtkStyleContext.
Carlos Garnacho [Mon, 3 Jan 2011 22:21:46 +0000 (23:21 +0100)]
Update GtkToolPalette to GtkStyleContext.

13 years agoGtkWindow: remove unneeded call
Carlos Garnacho [Mon, 3 Jan 2011 22:18:54 +0000 (23:18 +0100)]
GtkWindow: remove unneeded call

gtk_widget_style_attach() is no longer necessary.

13 years agogtkenums: add GTK_STATE_FLAG_NORMAL = 0
Diego Escalante Urrelo [Mon, 3 Jan 2011 20:53:45 +0000 (15:53 -0500)]
gtkenums: add GTK_STATE_FLAG_NORMAL = 0

Allows a more readable omission of GtkStateFlag arguments.

Bug #638608

13 years agoUse AM_V_GEN in a few more places
Matthias Clasen [Tue, 4 Jan 2011 01:33:36 +0000 (20:33 -0500)]
Use AM_V_GEN in a few more places

Based on a patch by Javier Jardón in

https://bugzilla.gnome.org/show_bug.cgi?id=621720

13 years agoKeep an explicit dep on cairo in the gdk pc file
Matthias Clasen [Mon, 3 Jan 2011 23:12:54 +0000 (18:12 -0500)]
Keep an explicit dep on cairo in the gdk pc file

13 years agoGtkColorButton: trivial doc and formatting fixes
Matthias Clasen [Mon, 3 Jan 2011 22:18:43 +0000 (17:18 -0500)]
GtkColorButton: trivial doc and formatting fixes

13 years agogtktexttag: Move public members to private header
Javier Jardón [Thu, 23 Dec 2010 19:03:06 +0000 (20:03 +0100)]
gtktexttag: Move public members to private header

And fix gail to not poke at GtkTextTag internals

13 years agoRelease GtkApplication earlier
Matthias Clasen [Mon, 3 Jan 2011 18:11:55 +0000 (13:11 -0500)]
Release GtkApplication earlier

GtkWindow was only releasing the application in finalize, causing
problems for language bindings. Now we release it already in destroy
(and then again in finalize for good measure).

https://bugzilla.gnome.org/show_bug.cgi?id=638580

13 years agoScale down print dialog size
Frederic Crozat [Mon, 3 Jan 2011 17:51:22 +0000 (12:51 -0500)]
Scale down print dialog size

Shrink the preview display a little to make the print dialog
fit on a typical netbook screen.

https://bugzilla.gnome.org/show_bug.cgi?id=637958

13 years agoMake styleexamples work
Matthias Clasen [Mon, 3 Jan 2011 17:34:23 +0000 (12:34 -0500)]
Make styleexamples work

If we are keeping this code in source control, might as well
make it work.

https://bugzilla.gnome.org/show_bug.cgi?id=638179

13 years agoadd gtk_selection_data_get_data_with_length API which can be bound
Matthias Clasen [Mon, 3 Jan 2011 17:11:41 +0000 (12:11 -0500)]
add gtk_selection_data_get_data_with_length API which can be bound

* gtk_selection_data_get_data can't be bound because we need to know the length
  of data inorder to marshal it

https://bugzilla.gnome.org/show_bug.cgi?id=635299

13 years agogdk/x11: don't select RANDR events if the extension is missing
Julien Cristau [Thu, 23 Dec 2010 12:50:13 +0000 (13:50 +0100)]
gdk/x11: don't select RANDR events if the extension is missing

Prevents an Xlib warning on Xnest, or Xorg with xinerama, or other
non-RANDR-capable xserver.  Reintroduce a have_randr12 field in
GdkDisplayX11 to avoid having to call XRRQuery{Extension,Version} twice,
and don't select randr 1.2 events if that's false.

https://bugzilla.gnome.org/show_bug.cgi?id=634711

Signed-off-by: Julien Cristau <jcristau@debian.org>
13 years agoconfigure.ac: Consolidate gdk backend specific checks and code
Kristian Høgsberg [Mon, 3 Jan 2011 16:29:25 +0000 (11:29 -0500)]
configure.ac: Consolidate gdk backend specific checks and code

Only the big chunk of x11 checks is left further down in the file,
but that depends on variables and checks above it, so we'll leave that in
place for now.

13 years agoSilence automake warnings
Kristian Høgsberg [Mon, 3 Jan 2011 15:55:23 +0000 (10:55 -0500)]
Silence automake warnings

When commenting out a binary, also comment out the related variables.
Don't include Makefile.decl in gtk-doc Makefile.am's as they disagree
on assigning to EXTRA_DIST.

13 years agoconfigure.ac: Support multiple GDK backends in one build
Kristian Høgsberg [Mon, 3 Jan 2011 15:45:37 +0000 (10:45 -0500)]
configure.ac: Support multiple GDK backends in one build

13 years agogdk: Simplify code
Benjamin Otte [Mon, 3 Jan 2011 16:42:35 +0000 (17:42 +0100)]
gdk: Simplify code

Move a previous vfunc into the only caller.

13 years agogdk: Get rid of GdkDisplayDeviceHooks
Benjamin Otte [Mon, 3 Jan 2011 16:31:54 +0000 (17:31 +0100)]
gdk: Get rid of GdkDisplayDeviceHooks

Move the only user to call the function directly and copy the called
function over.

13 years agogdk: Move get_device_state out of the display hooks
Benjamin Otte [Mon, 3 Jan 2011 16:16:20 +0000 (17:16 +0100)]
gdk: Move get_device_state out of the display hooks

Previous callers now use _gdk_device_query_state() directly.

13 years agogdk: Simplify code
Benjamin Otte [Mon, 3 Jan 2011 16:01:36 +0000 (17:01 +0100)]
gdk: Simplify code

Fold the previous vfunc into the only caller.

13 years agogdk: Move window_get_device_position function out of the device hooks
Benjamin Otte [Mon, 3 Jan 2011 15:56:20 +0000 (16:56 +0100)]
gdk: Move window_get_device_position function out of the device hooks

13 years agoSome configure.ac cleanups
Matthias Clasen [Mon, 3 Jan 2011 16:27:19 +0000 (11:27 -0500)]
Some configure.ac cleanups

Change from --with-xinput to --enable-xinput, and consistently
use AC_HELP_STRING. Also document the packagekit options in the
docs.

13 years agoAPI: gdk: Remove gdk_display_set_device_hooks()
Benjamin Otte [Mon, 3 Jan 2011 15:49:13 +0000 (16:49 +0100)]
API: gdk: Remove gdk_display_set_device_hooks()

There's no usecase for them, so remove them before we have to commit to
keeping an API.

Make the hooks private for now, actually removing them will come in
followup patches.

13 years agoAPI: gdk: Remove gdk_display_set_pointer_hooks()
Benjamin Otte [Mon, 3 Jan 2011 15:34:48 +0000 (16:34 +0100)]
API: gdk: Remove gdk_display_set_pointer_hooks()

Its usecase was GERD - http://testbit.eu/~timj/historic/gerd/ - and that
project is long since dead.

I couldn't find any app using it after asking around and googling either.

13 years agoAPI: gdk: Remove gdk_set_pointer_hooks()
Benjamin Otte [Mon, 3 Jan 2011 15:05:16 +0000 (16:05 +0100)]
API: gdk: Remove gdk_set_pointer_hooks()

Its usecase was GERD - http://testbit.eu/~timj/historic/gerd/ - and that
project is long since dead.

It has been superseded in GTK 2.2 by GdkDisplayPointerHooks anyway.

13 years agocups: Someone can neither type, read compiler output and run tests.
Benjamin Otte [Mon, 3 Jan 2011 15:16:02 +0000 (16:16 +0100)]
cups: Someone can neither type, read compiler output and run tests.

Being able to do one of these would have caught this.

13 years agocups printbackend: create a pdf surface when appropriate
Matthias Clasen [Mon, 3 Jan 2011 14:34:04 +0000 (09:34 -0500)]
cups printbackend: create a pdf surface when appropriate

This should address bug 560177.
Based on a patch by Adrian Johnson.

13 years agoRemove gtk_printer_new from gtkprintbackend.h
Matthias Clasen [Mon, 3 Jan 2011 13:02:41 +0000 (08:02 -0500)]
Remove gtk_printer_new from gtkprintbackend.h

The function has been in gtkprinter.h forever.

13 years agoSet file GtkPrinter accepts_pdf/ps based on selected format
Adrian Johnson [Wed, 29 Dec 2010 05:34:49 +0000 (16:04 +1030)]
Set file GtkPrinter accepts_pdf/ps based on selected format

13 years agoSet "accepts-pdf" property to true only if supported by the print backend
Adrian Johnson [Tue, 28 Dec 2010 14:48:02 +0000 (01:18 +1030)]
Set "accepts-pdf" property to true only if supported by the print backend

13 years agoGtkRadioButton: Use "radio" style class instead of "check"
Carlos Garcia Campos [Mon, 3 Jan 2011 12:09:00 +0000 (13:09 +0100)]
GtkRadioButton: Use "radio" style class instead of "check"

13 years agoDrop no-longer-used migration docs
Matthias Clasen [Mon, 3 Jan 2011 04:57:03 +0000 (23:57 -0500)]
Drop no-longer-used migration docs

13 years agogdkdnd-x11.c: fix building without HAVE_XCOMPOSITE
Nguyễn Thái Ngọc Duy [Tue, 28 Dec 2010 03:20:11 +0000 (10:20 +0700)]
gdkdnd-x11.c: fix building without HAVE_XCOMPOSITE

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
13 years agogdkcursor-x11.c: fix building without HAVE_XCURSOR
Nguyễn Thái Ngọc Duy [Tue, 28 Dec 2010 03:19:52 +0000 (10:19 +0700)]
gdkcursor-x11.c: fix building without HAVE_XCURSOR

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>