summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Destroy cairo context after painting css image urlPaolo Borelli2012-01-141-0/+1
|
* parser: remove unused _gtk_css_parser_read_uri()Cosimo Cecchi2012-01-132-50/+0
| | | | It's not used anymore now.
* provider: use _gtk_css_parse_read_url() in parse_import()Cosimo Cecchi2012-01-131-7/+12
| | | | Instead of _gtk_css_parser_read_uri(), which is going away.
* parser: remove a duplicate copy of gtk_css_parse_url()Cosimo Cecchi2012-01-134-114/+60
| | | | Move the function to gtkcssparser.c and use it in both places.
* Updated POTFILES.inPiotr Drąg2012-01-132-0/+2
|
* wayland: Add basic implementation of GtkClipboard for WaylandRob Bradford2012-01-132-0/+884
| | | | | | | | This follows the approach used by the Quartz port - that of a separate implementation matching GtkClipboard. The simple clipboard tests in gtk3-demo function correctly but there are almost certainly leaks and bugs.
* wayland: Free the internal selection data when the selection is clearedRob Bradford2012-01-131-0/+11
|
* wayland: Fix memory handling for the selection callbacksRob Bradford2012-01-132-5/+8
|
* wayland: Add basic API for setting and clearing the selection on the deviceRob Bradford2012-01-132-0/+158
|
* wayland: Expose basic mechanism for getting selection content by callbackRob Bradford2012-01-132-1/+127
| | | | | | | This version has a couple of TODOs/FIXMEs: * We should do something better than g_io_channel_read_to_end * Need to check the mime type is valid
* wayland: Add call to get types available for the selection as atomsRob Bradford2012-01-132-0/+41
|
* wayland: Remove unused variables to silence compiler warningRob Bradford2012-01-131-4/+0
|
* wayland: Set surface type based on GdkWindow hintKristian Høgsberg2012-01-131-2/+13
|
* Updated Spanish translationDaniel Mustieles2012-01-131-2/+2
|
* wayland: Update to new SHM buffer format typeRob Bradford2012-01-131-1/+1
|
* Updated Hebrew translation.Yaron Shahrabani2012-01-131-435/+517
|
* Updated Hebrew translation.Yaron Shahrabani2012-01-131-669/+613
|
* UpdatesMatthias Clasen2012-01-121-0/+78
|
* Expand the docs for GtkWindow::attached-toMatthias Clasen2012-01-121-6/+12
|
* visuals: remove copy paste leftoverCosimo Cecchi2012-01-121-2/+0
|
* Updated POTFILES.skipPiotr Drąg2012-01-122-0/+4
|
* visuals: add a runner for visual GtkBuilder filesCosimo Cecchi2012-01-126-1/+448
| | | | | | This is useful to sketch out in GtkBuilder widgets in different states all at once, so that we can check theming is right for them. Add some initial UI files for primary-toolbar and inline-toolbar widgets.
* gtk.symbols: fix a symbol nameDan Winship2012-01-121-1/+1
|
* Update Arabic translationKhaled Hosny2012-01-121-693/+785
|
* window: improve docs for gtk_window_set_attached_to()Cosimo Cecchi2012-01-121-7/+12
|
* Introduce gtk_window_get/set_attached_to()Andrea Cimitan2012-01-127-4/+152
| | | | | | | | | | | gtk_window_get/set_attached_to() is a new API that allows for windows to be attached to a GtkWidget. The attachment is a logical binding between the toplevel window and the widget that generated it; this kind of information is currently used to propagate style information from the widget to the window, but is also useful e.g. for accessibility. https://bugzilla.gnome.org/show_bug.cgi?id=666103
* treeview: Do not focus a path on model changeBenjamin Otte2012-01-121-10/+2
| | | | | | | | | | | Instead, focus nothing and wait until we get focus before doing so. This restores previous behaviour but still emits proper cursor-changed events. Fixes a bunch of bugs in the filechooser which populates the treeview asynchronously. https://bugzilla.gnome.org/show_bug.cgi?id=613728
* filechooser: Use SELECTION_SINGLEBenjamin Otte2012-01-121-1/+1
| | | | We want to allow people to unselect the item.
* wayland: Remove unused variable from grab implementationRob Bradford2012-01-121-3/+0
|
* wayland: Fix compilation warning for destroy function implementationRob Bradford2012-01-121-1/+1
|
* wayland: Fix implementation of gdk_atom_nameRob Bradford2012-01-121-2/+2
|
* wayland: Remove unused variableRob Bradford2012-01-121-1/+0
|
* gtkapplication.c: Add missing "Since" tagJavier Jardón2012-01-121-0/+2
|
* Updated Spanish translationDaniel Mustieles2012-01-121-391/+368
|
* a11y: Disconnect from buffer signalsBenjamin Otte2012-01-123-35/+72
| | | | | | | This way, we don't get crashes when the buffer is still in use after a TextView gets finalized. https://bugzilla.gnome.org/show_bug.cgi?id=667632
* accessible: Remove stray semicolonBenjamin Otte2012-01-121-1/+1
| | | | Note to self: Use -Wempty-body more
* styleproperty: Fix 'currentColor'Benjamin Otte2012-01-121-6/+18
| | | | | | | It was always looking at the 'color' keyword for the parent context instead of only doing that when used with the 'color' property. Tested by border-color-default.ui reftest.
* stylecontext: Don't unref animation descriptionBenjamin Otte2012-01-121-6/+1
| | | | We get it without a ref since 6962b49a99eadc7f4266d13f66fca8611802fe09
* tests: add a CSS test for currentColor in border-colorCosimo Cecchi2012-01-113-0/+11
|
* shorthand: fix parsing of currentColor for border-color shorthandCosimo Cecchi2012-01-111-6/+14
| | | | Code for border-color was missing the currentColor parsing.
* reftests: fix background-area reftestCosimo Cecchi2012-01-111-2/+1
| | | | | background-clip: content-box broke when I made GtkButton allocate its border-width, as for the CSS box model.
* testlogout: actually quit if told toDan Winship2012-01-111-1/+2
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=667705
* GtkApplication: add inhibitor dialog under OS XDan Winship2012-01-111-21/+66
| | | | | | | Since OS X doesn't have an inhibitors API, we need to display the inhibit reason ourselves. https://bugzilla.gnome.org/show_bug.cgi?id=667705
* GtkApplication: fix/simplify OS X implementationDan Winship2012-01-111-35/+9
| | | | | | | Make the OS X implementation compile, and remove the code that was only needed to support user interaction during the quit request. https://bugzilla.gnome.org/show_bug.cgi?id=667705
* widget-factory: make the combobox entry focusableCosimo Cecchi2012-01-111-1/+0
|
* widget-factory: add items to the entry dropdownCosimo Cecchi2012-01-111-0/+5
|
* reftests: Add reftest for empty area fixBenjamin Otte2012-01-113-0/+36
|
* themingengine: Don't draw background image if no areaBenjamin Otte2012-01-111-1/+5
| | | | | If the background positioning area is empty (width/height <=0), don't attempt to draw the background image.
* API: Add gtk_style_context_get_section()Benjamin Otte2012-01-114-0/+47
| | | | | This API allows querying the location where style properties were defined. An example implementation will be committed soon.
* css: Introduce GtkCssComputedValuesBenjamin Otte2012-01-116-145/+389
| | | | | To be used for storing computed values. Is the replacement for GtkStyleProperties, which is now legacy code.