summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Make setting the root cursor work againMatthias Clasen2009-08-111-1/+4
| | | | This used to work, and CSW broke it. Bug 591462, 589844.
* Fix make checkMatthias Clasen2009-08-112-0/+9
|
* UpdatesMatthias Clasen2009-08-111-0/+62
|
* Fix clearing of window background for some transparent notification iconsAlexander Larsson2009-08-111-1/+19
| | | | | | | | This extends the usage of the native clear region call such that its called also for windows that have parent relative background all the way up to a native window. That way we get true background relative background clearing even to a foreign parent, which means that some transparent notification icons look right again.
* Implement fallback for old draw_drawable vfuncAlexander Larsson2009-08-111-0/+35
| | | | | | | | | | GdkDrawable->draw_drawback was replaced with a new vfunc draw_drawback_with_src that is now called from gdk_draw_drawable. However, some code seems to call the vfunc directly (see bug #591288), so make it chain to the new call. Note that such direct vfunc calls are a bad idea and won't work for all cases.
* Show/Hide native window when updating viewableAlexander Larsson2009-08-112-66/+65
| | | | | | | | | | | | This moves the native show/hide calls to the generic code for calculating viewable rather than in its own separate code called from gdk_window_show/hide. This simplifies the code a bit, but most significantly it means things are correctly shown when they become viewable for other reasons than a show/hide call. For instance, this fixes bug 590442 (gvim embedding) where the toplevel GtkPlug is mapped by the embedder and we didn't previously pick up that the native children became viewable and should be shown.
* Print when Enter pressed in certain GtkEntries of the print dialogMarek Kasik2009-08-116-18/+49
| | | | | | | | Print when Enter pressed in Name entry or Command Line entry in the print dialog (#564695). Add gtk_printer_option_set_activates_default() function and gtk_printer_option_get_activates_default() function to control behaviour of GtkPrinterOptionWidget.
* Updating Estonian translationIvar Smolin2009-08-111-5/+12
|
* Updated Basque languageInaki Larranaga Murgoitio2009-08-101-33/+1755
|
* Updated Galician translationAntón Méixome2009-08-102-3974/+2986
|
* Updated Basque languageInaki Larranaga Murgoitio2009-08-101-17/+31
|
* Updated Basque languageInaki Larranaga Murgoitio2009-08-101-1991/+1922
|
* Don't invalidate unnecessary areas on raiseAlexander Larsson2009-08-101-1/+16
| | | | | | | | We used to invalidate the whole window when raised, but this is unnecessary much, we now just invalidate the visible area minus the previously visible area. This also fixes a problem where expose calling raise caused a loop (#588438)
* Remove old comment about guffaw scrollingAlexander Larsson2009-08-101-112/+0
| | | | | We no longer use guffaw scrolling since the client side windows branch was merged.
* Don't ever invalidate the root windowAlexander Larsson2009-08-101-1/+2
| | | | | | | | | | | | This never worked before csw since the root window is never set as IS_MAPPED, but with the new viewable check (which is true for the root window) we could erronously queue exposes on the root window. This happened unexpectedly in bug 589369, where metacity got a GraphicsExpose event on the root window due to some graphics operation, queueing an expose which would be handled by clearing that area. That is fixed with this commit.
* Updated Basque languageInaki Larranaga Murgoitio2009-08-101-2622/+839
|
* Increment page sequence before print of the page, not afterMarek Kasik2009-08-101-6/+11
| | | | | | | When printing, increment page sequence before rendering of the page, not after (#590084). In opposite case it runs "end_page" function with wrong parameters when drawing a page in another thread.
* Remove some unused variables (GnomeBug:591218)Javier Jardón2009-08-107-7/+0
|
* Correct a doc commentMatthias Clasen2009-08-081-1/+1
| | | | | Add 'papi' to the list of possible print backends, and mention 'file' instead of 'pdf'.
* Avoid some gratitious behaviour changesMatthias Clasen2009-08-081-71/+69
| | | | | Go back to allowing a lot of the WM-level functions on foreign windows, since we used to allow that before csw. Fixes bug 589732.
* Updated Arabic translationKhaled Hosny2009-08-081-1169/+1160
|
* Updated Irish translationSeán de Búrca2009-08-081-1884/+1897
|
* Updated Spanish translationJorge González2009-08-071-60/+65
|
* Updated Spanish translationJorge González2009-08-071-67/+81
|
* Updated Spanish translationJorge González2009-08-071-152/+156
|
* Revert "Bug 590959 - Set child_has_focus flag properly"Xan Lopez2009-08-071-2/+2
| | | | | | | This reverts commit 6e0af6c25225440263792a3cbecd8f4301e3def5. The patch seems to break focus handling in some applications, like Epiphany.
* Bug 69872 – GTK_WIDGET_SET_FLAGS should be deprecatedMichael Natterer2009-08-073-1/+25
| | | | Add gtk_widget_has_grab() as replacement for GTK_WIDGET_HAS_GRAB().
* Updated Irish translationSeán de Búrca2009-08-071-3/+3
|
* Add gtk_print_operation_get_n_pages_to_print()Carlos Garcia Campos2009-08-072-1/+56
| | | | | It returns the number of pages that will be printed to allow tracking the progress of a print operation. Fixes bgo#582964.
* Updated Irish translationSeán de Búrca2009-08-071-1150/+1126
|
* Bug 69872 – GTK_WIDGET_SET_FLAGS should be deprecatedMichael Natterer2009-08-073-0/+58
| | | | | | Add gtk_widget_get_visible(). For symmetry reasons and for convenience when a widget's visibility state is available as a boolean condition, also add gtk_widget_set_visible() (which simply calls show()/hide()).
* Fix a logic error in gdk_window_set_title on OS XMatthias Clasen2009-08-071-1/+1
| | | | | Also fix a similar error in gdk_window_set_transient_for. This fixes bug 589738
* Fix a logic error in gdk_window_set_title on OS XMatthias Clasen2009-08-071-2/+2
| | | | This fixes bug 589738
* Add a GtkIconView::item-padding propertyMatthias Clasen2009-08-064-21/+90
| | | | | The property can be used to fine-tune who much space each column needs. See bug 586100.
* Emit GtkAssistant::apply before computing the next stepMatthias Clasen2009-08-061-2/+2
| | | | This fixes bug 589745.
* Fix a typoMatthias Clasen2009-08-061-5/+5
| | | | This was reported in bug 586808.
* Fix a typoMatthias Clasen2009-08-061-1/+1
| | | | This was reported in bug 586347.
* Update tooltip if no removable one is selectedPascal Terjan2009-08-061-11/+14
|
* Bug 590959 - Set child_has_focus flag properlyBenjamin Otte2009-08-061-2/+2
| | | | | | | | | Previously, this flag wasn't cleared properly when the notebook lost focus, but only when the notebook was focussed again later. As this flag is only used to advance correctly focus pages by grabbing focus to the new page after switching the page, this is not good. In particular, it can cause a focus grab when programmatically switching the notebook page and the focus is inside a completely different widget.
* Check for details request before printMarek Kasik2009-08-061-57/+104
| | | | | | Checks for details request before sending a job to a printer. Shows busy state indication (cursor + status field). This avoids printing to wrong printer (bug #576601).
* Get default cover sheets from each printer separatelyMarek Kasik2009-08-053-20/+22
| | | | | | Fixes bug #590309. Add default_cover_before string and default_cover_after string to GtkPrinterCups and fill it when getting list of printers.
* Updated Spanish translationJorge González2009-08-041-1717/+1771
|
* Updated Spanish translationJorge González2009-08-041-1095/+1102
|
* Updating Estonian translationIvar Smolin2009-08-041-2/+5
|
* Updating Estonian translationIvar Smolin2009-08-031-7/+7
|
* Add SVG support to GtkPrintBackendFileMarek Kasik2009-08-032-8/+52
| | | | This add support for printing to SVG 1.2 files (#357655).
* Updated breton translationDenis Arnaud2009-08-031-1815/+1603
|
* Updated Norwegian bokmål translation.Kjartan Maraas2009-08-031-126/+104
|
* Make gdk-pixbuf-csource work on Windows also in the build tree.Sam Thursfield2009-08-021-0/+6
| | | | Patch from bug #590448.
* Fix configure.in to work without --with-gdktarget on non-X11.Sam Thursfield2009-08-021-3/+6
| | | | Patch from bug #590086.