summaryrefslogtreecommitdiff
path: root/gtk
Commit message (Collapse)AuthorAgeFilesLines
* widget: Ignore text direction in gtk_widget_set_state_flags()Benjamin Otte2014-02-071-2/+10
| | | | | | | | | Previously we did a semi-successful job at ignoring it. Unfortunately this job was bad enough that we could lose the direction. We still allow passing in the enum values, because we want code like this to work: set_state_flags (get_state_flags() | SOME_FLAGS)
* gtkmagnifier: do not use P_() macro for property namesCarlos Garcia Campos2014-02-071-2/+2
|
* Revert "Fix memory leak in GtkTreeViewAccessible"Ignacio Casal Quinteiro2014-02-061-1/+1
| | | | | This reverts commit 7a411eb6dd4dd0dedf28f3b5414561e765886369. This also makes gedit external tools manager to crash
* GtkApplication: install gtk option groupRyan Lortie2014-02-061-0/+11
| | | | | Install Gtk's GOptionGroup in GApplication just before commandline arguments are parsed.
* GtkTreeViewColumn: fix critical warningClaudio Saavedra2014-02-061-2/+2
| | | | | | Do not call _column_autosize() if there is no treeview set yet. https://bugzilla.gnome.org/show_bug.cgi?id=723637
* gtkwindow: remove delete-event idle function on finalizeClaudio Saavedra2014-02-061-2/+14
| | | | | | | | Heavy duty can prevent this idle function from being called before the window is destroyed, so make sure that the source is removed when the window is finalized. https://bugzilla.gnome.org/show_bug.cgi?id=723771
* docs: fix quotes in exampleWilliam Jon McCann2014-02-061-1/+1
|
* popover: Emit ::closed once modality is clearedBastien Nocera2014-02-061-2/+2
| | | | | Otherwise, calling gtk_widget_grab_focus() on a widget when the popover send ::closed won't work.
* docs: Don't use warningsWilliam Jon McCann2014-02-064-14/+9
|
* popover: Add ::closed signalCarlos Garnacho2014-02-062-0/+18
| | | | | | This signal is emitted when the popover is dismissed either through API or user interaction, somewhat more friendly than connecting to ::unmap.
* popover: Add padding pointers to GtkPopoverClassCarlos Garnacho2014-02-061-0/+3
|
* docs: don't use <important>William Jon McCann2014-02-061-7/+6
|
* docs: don't use <warning>William Jon McCann2014-02-061-3/+2
|
* docs: use markdown instead of <note>William Jon McCann2014-02-069-69/+57
|
* docs: use proper quotesWilliam Jon McCann2014-02-05141-668/+668
|
* docs: fix missing quotation markWilliam Jon McCann2014-02-051-1/+1
|
* docs: add back id for section headingWilliam Jon McCann2014-02-052-2/+2
| | | | It was lost during the markdown conversion.
* docs: Don't use <xi:include>William Jon McCann2014-02-054-20/+4
|
* label: Invalidate link colors on style changeBenjamin Otte2014-02-051-0/+14
| | | | | | Discovered-by: Timm Bäder <mail@baedert.org> https://bugzilla.gnome.org/show_bug.cgi?id=721309
* label: refactor codeBenjamin Otte2014-02-051-63/+75
| | | | | Split out function for setting attributes. This will be needed in future patches.
* label: Avoid creating new attribute listBenjamin Otte2014-02-051-1/+1
| | | | | | Only create an attribute list for merging if we actually need to merge. This bug was introduced in 5230cfe805b8f0046896c029612180fc9d4cc5df
* widget: Fix margin-start and margin-end propertiesBastien Nocera2014-02-051-2/+2
| | | | | | | The margin-start and margin-end properties were incorrectly defined, so margins weren't respected for RTL languages. https://bugzilla.gnome.org/show_bug.cgi?id=723627
* Add minimal popover theming to RaleighMatthias Clasen2014-02-051-0/+7
| | | | Add background and border, so the popover boundaries are visible.
* docs: Use "#" for refsect2 instead of ##William Jon McCann2014-02-0435-75/+98
|
* docs: don't use <para id="">William Jon McCann2014-02-045-14/+17
|
* docs: use a list instead of a tableWilliam Jon McCann2014-02-041-98/+56
|
* docs: don't use <variablelist>William Jon McCann2014-02-042-82/+64
|
* docs: don't use itemizedlistWilliam Jon McCann2014-02-042-27/+27
|
* docs: don't use <keycap> tagsWilliam Jon McCann2014-02-046-47/+29
|
* docs: don't use <replaceable>William Jon McCann2014-02-048-71/+71
|
* docs: don't use ulink. use markdown insteadWilliam Jon McCann2014-02-0416-64/+60
|
* docs: don't use <varnam>William Jon McCann2014-02-041-2/+2
|
* docs: don't use <parameter> tagsWilliam Jon McCann2014-02-044-17/+12
|
* docs: use ` instead of <literal>William Jon McCann2014-02-0437-224/+224
|
* docs: use quotes instead of <firstterm>William Jon McCann2014-02-0411-26/+26
|
* docs: don't use <application> tagsWilliam Jon McCann2014-02-046-11/+11
|
* docs: don't use <option>William Jon McCann2014-02-042-4/+4
|
* docs: don't use <quote>William Jon McCann2014-02-042-9/+8
|
* docs: don't use <tag> docbook elementsWilliam Jon McCann2014-02-044-12/+13
|
* docs: replace all figures with headings and imagesWilliam Jon McCann2014-02-042-24/+29
|
* docs: fix last commitWilliam Jon McCann2014-02-041-1/+0
|
* docs: replace all <examples> with markdown headingsWilliam Jon McCann2014-02-0427-151/+108
|
* docs: Use markdown for section headingsWilliam Jon McCann2014-02-046-69/+49
|
* docs: use markdown instead of inlinegraphic tagsWilliam Jon McCann2014-02-047-159/+163
|
* docs: use markdown instead of <filename> tagsWilliam Jon McCann2014-02-0411-27/+27
|
* docs: use markdown for <envar> tagsWilliam Jon McCann2014-02-044-12/+12
|
* scalebutton: Apply a shape on the popoverCarlos Garnacho2014-02-041-0/+4
| | | | | | | | This hideous hack is necessary so far because the main users of GtkScaleButton are also clutter users, so the GtkScaleButton popover will be very likely shaped against a clutter-enabled native window. https://bugzilla.gnome.org/show_bug.cgi?id=723556
* popover: Add private _gtk_popover_set_apply_shape() callCarlos Garnacho2014-02-043-39/+67
| | | | | | | | | Popovers no longer sets a shape, unless this function is called. This function exists so widgets that are potentially placed on top of other native windows can get a popover that's nicely shaped, even if it has no border shadow around. https://bugzilla.gnome.org/show_bug.cgi?id=723556
* popover: Apply child shapes on the GtkWidget popover subwindowAlexander Larsson2014-02-041-0/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=723556
* Use gdk_screen_get_preferred_visual()Matthias Clasen2014-02-041-7/+2
| | | | | When creating windows, and when returning a widgets visual, use the new API to get the preferred visual.