summaryrefslogtreecommitdiff
path: root/gtk/gtksearchengine.c
Commit message (Collapse)AuthorAgeFilesLines
* Don't bother compiling gtksearchenginebeagle.c andTor Lillqvist2008-04-021-0/+6
| | | | | | | | | | | | | 2008-04-02 Tor Lillqvist <tml@novell.com> * gtk/Makefile.am: Don't bother compiling gtksearchenginebeagle.c and gtksearchenginetracker.c on Windows. * gtk/gtksearchengine.c: Don't define HAVE_BEAGLE and HAVE_TRACKER on Windows. svn path=/trunk/; revision=19959
* Add a search engine which queries the Spotlight database on MacOS X (onlyKristian Rietveld2007-06-241-0/+9
| | | | | | | | | | | | | | | | 2007-06-24 Kristian Rietveld <kris@gtk.org> * gtk/gtksearchenginequartz.[ch]: Add a search engine which queries the Spotlight database on MacOS X (only available in 10.4 and higher). * gtk/gtksearchengine.c (_gtk_search_engine_new): try creating quartz search engine if we are on OS X. * Makefile.am: added use_quartz_sources section with new file. svn path=/trunk/; revision=18222
* Fall back to GtkSearchEngineSimple only if gthread has already beenEmmanuele Bassi2007-05-111-2/+4
| | | | | | | | | | | 2007-05-11 Emmanuele Bassi <ebassi@gnome.org> * gtk/gtksearchengine.c (_gtk_search_engine_new): Fall back to GtkSearchEngineSimple only if gthread has already been initialiased; otherwise, disable search support in the file chooser widget. (#435847) svn path=/trunk/; revision=17819
* Add search file support in the GtkFileChooser. Original patch by FedericoEmmanuele Bassi2007-05-021-0/+197
2007-05-02 Emmanuele Bassi <ebassi@gnome.org> Add search file support in the GtkFileChooser. Original patch by Federico Mena Quintero; patch updated by Matthias Clasen. See bug #344785. * gtk/gtksearchengine.[ch]: Private search engine abstraction object. * gtk/gtksearchenginebeagle.[ch]: Private search engine implementation using libbeagle (via g_module_open()). * gtk/gtksearchenginesimple.[ch]: Private search engine implementation using file tree walking. * gtk/gtksearchenginetracker.[ch]: Private earch engine implementation using libtracker (via g_module_open()). * gtk/gtkquery.[ch]: Private query object for the search engines. * gtk/gtkfilechooserprivate.h: * gtk/gtkfilechooserdefault.c: Use the GtkSearchEngine to query a search engine backend using GtkQuery; create a new operating mode, OPERATION_MODE_SEARCH, and call the common operating mode OPERATION_MODE_BROWSE; add support for virtual shortcuts inside the shortcuts model and create a new "Search" virtual shortcut. * gtk/Makefile.am: Update the build with the new files svn path=/trunk/; revision=17783