summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Avoid more GFile<>uri roundtripsMatthias Clasen2015-07-276-11/+9
| | | | | | Make GtkSearchHit carry a GFile instead of an uri. Most of the search engines already have the object around, and converting to an uri and back is unnecessary extra work.
* search engine: Don't crawl remote locationsMatthias Clasen2015-07-271-8/+11
| | | | | This is slow, and causes too much network I/O. So skip locations that look like they are remote.
* Add a helper function for remote locationsMatthias Clasen2015-07-272-0/+33
| | | | | | | Add a helper function that says whether a location should be considered remote. To determine this, we look at the filesystem type reported by gvfs, and say 'remote' for sftp, webdav, ftp, nfs and cifs.
* Actually use search results from the modelMatthias Clasen2015-07-271-0/+1
| | | | | | We didn't connect to the signals, so we never picked up any search results from the model engine. Good thing, since it was returning the wrong thing.
* Port to GtkSearchHitMatthias Clasen2015-07-271-18/+13
| | | | | | GtkSearchEngineModel was still trying to return uris as hits. This is not working anymore, we are expected to return GtkSearchHit structs.
* Always pass a location into the queryMatthias Clasen2015-07-271-0/+2
| | | | | Failure to do so was causing search to start from the home dir when the current folder is not represented on the sidebar.
* Store locations as GFileMatthias Clasen2015-07-275-22/+19
| | | | | | It is a bit pointless to have the file chooser get a uri from an existing GFile to put in the query, only to have some of the search engines reconstruct a GFile from it.
* Remove a redundant assignmentMatthias Clasen2015-07-271-2/+1
|
* Updated Slovak translationDušan Kazik2015-07-271-327/+497
|
* Updated Greek translationDimitris Spingos2015-07-272-857/+1005
|
* combobox: Use ui file to construct internal button childBenjamin Otte2015-07-263-12/+45
|
* combobox: Create button on init() and destroy in destroy()Benjamin Otte2015-07-261-38/+25
| | | | | The button is the same in both menu and list mode, so there's no need to destroy and recreate it.
* combobox: Add scroll support in list modeBenjamin Otte2015-07-261-0/+2
|
* combobox: Remove unused argumentBenjamin Otte2015-07-261-49/+10
| | | | The visible check is always FALSE, so no need to keep the code around.
* combobox: Remove the box from the buttonBenjamin Otte2015-07-261-42/+21
| | | | | | | ... when in menu mode. Now that we don't have a separator anymore, the box is not needed anymore.
* combobox: Remove the separatorBenjamin Otte2015-07-261-21/+0
| | | | | | | It was a special case and it's not used by themes anymore. Plus, in the CSS world, if a theme wants a separator, it can just style the button's border to create one.
* Remove a duplicate stringMatthias Clasen2015-07-261-1/+0
| | | | | dialog-information was twice in the list of accessible labels for icon names.
* listbox: Fix shift-selectionMatthias Clasen2015-07-261-7/+8
| | | | | Selecting a range of rows with Shift-click was accidentally broken in e6e511eb460d8fcd. Make it work again.
* quartz: Implement NO_TARGET drag resultMatthias Clasen2015-07-261-4/+15
| | | | | | This is necessary to make notebook tab DND work. https://bugzilla.gnome.org/show_bug.cgi?id=752638
* quartz: Check if a drag ends inside a known windowMatthias Clasen2015-07-261-0/+28
| | | | | | | | If a drag ends inside a known window, set the dest_window field in the drag context. This information is needed to implemented notebook tab dragging. https://bugzilla.gnome.org/show_bug.cgi?id=752638
* GtkMenu: Properly detach menu when the window is detachedJonas Ådahl2015-07-261-1/+21
| | | | | | | | | Without properly cleaning up GtkMenu private attach state (GtkMenuAttachData) when the attached widget is freed, we would end up with an invalid pointer to a freed widget. Trying to detach from that widget would cause a segmentation fault. https://bugzilla.gnome.org/show_bug.cgi?id=752761
* wayland: Fix initial fullscreen monitor supportGiovanni Campagna2015-07-261-1/+2
| | | | | | | | -1 means that we have no specific preference for an initial fullscreen monitor, and -1 is less than the number of monitors, so we would end up accessing invalid memory. Prevent that. https://bugzilla.gnome.org/show_bug.cgi?id=752875
* Fix a warningMatthias Clasen2015-07-261-1/+1
|
* Use standard cursor namesMatthias Clasen2015-07-2615-64/+44
| | | | | | | This changes GTK+ to use gdk_cursor_new_from_name() with the 'standard' css names, instead of GdkCursorType. https://bugzilla.gnome.org/show_bug.cgi?id=652085
* win32: Support all css cursor namesMatthias Clasen2015-07-261-0/+10
| | | | Approximate some of the resize cursors with similar cursors.
* broadway: fix use-after-free on read errorsPeter Wu2015-07-261-5/+7
| | | | | | | | | | | | | | | Call chain: - input_data_cb - broadway_server_read_all_input_nonblocking (input) - broadway_input_free (input) (now input is invalid) attempt to use input->active -> use-after-free Make broadway_server_read_all_input_nonblocking return a boolean, TRUE if the input was valid, FALSE otherwise. This allows input_data_cb to detect whether the input was gone or not. https://bugzilla.gnome.org/show_bug.cgi?id=741685
* Fix x11-less buildMatthias Clasen2015-07-261-4/+1
| | | | | We don't use pangoft2 at all in libgdk, but we are using it in libgtk both under X and Wayland.
* Don't use libcanberra without XMatthias Clasen2015-07-251-0/+4
| | | | | libcanberra calls x11 backend functions, so we can't use it when the x11 backend is disabled.
* places view: Documentation fixupsMatthias Clasen2015-07-251-12/+19
| | | | | | | | Rewrite gtk_places_sidebar_set_show_enter_location docs, add references to the relevant signals, remove mentions of GtkPlacesView from the docs, since it is not public at this point. https://bugzilla.gnome.org/show_bug.cgi?id=752633
* Added api to set a window to fullscreen on a given monitor.Jeremy Whiting2015-07-258-3/+139
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=752677
* Updated Portuguese translationPedro Albuquerque2015-07-251-100/+98
|
* Updated POTFILES.skipPiotr Drąg2015-07-242-0/+2
|
* gtk-demo: Expand the filter model exampleMatthias Clasen2015-07-243-43/+270
| | | | Show normal filtering as well.
* widget-factory: hook up callbacks to the tab close buttonsMatthias Clasen2015-07-242-2/+19
| | | | Just to show that buttons in notebook tabs work.
* Fix a typoMatthias Clasen2015-07-241-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=752810
* GdkEvent: Turn out parameters optionalCarlos Garnacho2015-07-241-4/+4
| | | | As pointed out by lazka in IRC, /me clearly out of phase after allow-none.
* GdkEvent: Fix introspection annotations on gdk_event_get(_root)_coordsCarlos Garnacho2015-07-241-4/+4
| | | | | These functions respect NULLs being passed, so the return values are (nullable).
* GtkGesture: minor cleanupCarlos Garnacho2015-07-241-2/+1
| | | | | We're not really using the coordinates in that function, we just double check it's not an unrelated event.
* MSVC Builds: Fix Introspection BuildChun-wei Fan2015-07-241-3/+16
| | | | | | The deprecated and a11y sources of GTK+ were spun off some time ago into their own Makefile.inc, which is then included by gtk/Makefile.am. Fix the generation of file sources for the GTK+ .gir.
* gtk/gtkplacessidebar.c: Fix Build on C89Chun-wei Fan2015-07-241-2/+3
| | | | | Ensure variables are declared at the top of the block, and remove a ';;', which C89 compilers don't like.
* Updated Portuguese translationPedro Albuquerque2015-07-241-121/+111
|
* Updated Portuguese translationPedro Albuquerque2015-07-241-334/+345
|
* file chooser dialog: Better spacingMatthias Clasen2015-07-231-1/+3
| | | | | | When the dialog is as narrow as possible, we still want some space between the entry and the search button, so use margins around the entry and label instead of box spacing.
* file chooser: Fix gtk_file_chooser_set_show_hiddenMatthias Clasen2015-07-231-12/+20
| | | | | | | We should not override an explicitly set show-hidden value when loading the setting. https://bugzilla.gnome.org/show_bug.cgi?id=610925
* inspector: Rescan toplevels when they changeMatthias Clasen2015-07-231-1/+18
| | | | | | | | This ensures that windows appear in the inspectors tree when they are created, and it prevents GTK_DEBUG=interactive from coming up with an empty object tree. https://bugzilla.gnome.org/show_bug.cgi?id=752664
* inspector: Add a function to rescanMatthias Clasen2015-07-232-0/+9
| | | | | Currently, we only ever scanned the toplevel list and widget tree once. That is not enough.
* Another fix for unmapped window statesMatthias Clasen2015-07-231-89/+30
| | | | | | | | | | | The previous fix was falling into the crack between realized and mapped - we would apply the state when a window is just realized, then unset the _initially flag, and then when the window gets mapped, we'd undo the state. To fix this, go back to the way things were when these flags were first introduced. https://bugzilla.gnome.org/show_bug.cgi?id=752765
* GtkWidget: Fix set_font_map docsTimm Bäder2015-07-232-2/+2
| | | | A typo and non-matching parameter names.
* gdk-win32: Send fake release key event for shift keyPavel Grunt2015-07-231-0/+34
| | | | | | | | | | | Windows does not send any release key event for one of the shift keys when both shift keys were pressed together. This commit solves the problem by sending the extra release key event for the shift key which was released as first, when the other shift key is released. Other modifiers (e.g. Ctrl, Alt) do not have this problem. https://bugzilla.gnome.org/show_bug.cgi?id=751721
* gtk3-demo: Don't use xalign on GtkCheckButtonTimm Bäder2015-07-231-45/+0
|