- 31 Jul, 2015 1 commit
-
-
Matthias Clasen authored
Thats a more typical affirmative action in save mode.
-
- 16 Jul, 2015 1 commit
-
-
Benjamin Otte authored
-
- 04 Jul, 2015 2 commits
-
-
Matthias Clasen authored
This allows for easier testing of !local-only mode.
-
Matthias Clasen authored
It makes testing the intended user experience harder.
-
- 06 Apr, 2015 1 commit
-
-
Matthias Clasen authored
It is not ideal when the default filter filters away all files, so change things to select the 'all files' filter by default.
-
- 20 Oct, 2014 1 commit
-
-
Matthias Clasen authored
There is code in there to show a preview, use it.
-
- 22 May, 2014 1 commit
-
-
Matthias Clasen authored
No need for this anymore, now that we have the inspector everywhere.
-
- 10 Nov, 2013 1 commit
-
-
Matthias Clasen authored
Add an application shortcut for the Music folder in testfilechooser. The file chooser used to filter duplicates out, but this broke in the sidebar merge.
-
- 24 Jun, 2013 1 commit
-
-
William Jon McCann authored
With the exception of GtkActions and the tests for stock items.
-
- 21 Jun, 2013 1 commit
-
-
Federico Mena Quintero authored
It would default to GTK_FILE_CHOOSER_ACTION_OPEN if the user's specified --action could not be parsed. I can never remember what the right options are, so make the program bail out if the user specifies an unrecognized option. Signed-off-by:
Federico Mena Quintero <federico@gnome.org>
-
- 19 Jun, 2013 1 commit
-
-
Federico Mena Quintero authored
-
- 15 Jul, 2012 1 commit
-
-
Matthias Clasen authored
Add a filter to testfilechooser that can demonstrate folder filtering on common directories, such as Documents or Downloads.
-
- 27 Feb, 2012 1 commit
-
-
Javier Jardón authored
-
- 02 Jun, 2011 1 commit
-
-
- 12 Feb, 2011 1 commit
-
-
Matthias Clasen authored
-
- 02 Nov, 2010 1 commit
-
-
Michael Natterer authored
Because it's FALSE in virtually all use cases.
-
- 31 Oct, 2010 1 commit
-
-
Michael Natterer authored
Because it's FALSE in virtually all use cases.
-
- 30 Oct, 2010 4 commits
-
-
Javier Jardón authored
-
Javier Jardón authored
-
Javier Jardón authored
-
Javier Jardón authored
-
- 27 Sep, 2010 1 commit
-
-
Matthias Clasen authored
-
- 26 Sep, 2010 1 commit
-
-
Benjamin Otte authored
There's no backends anymore
-
- 12 Jun, 2009 2 commits
-
-
Federico Mena Quintero authored
Signed-off-by:
Federico Mena Quintero <federico@novell.com>
-
Federico Mena Quintero authored
We can use this to test bugs that happen when setting a filename before the file chooser is shown, as in bgo#161670 Signed-off-by:
Federico Mena Quintero <federico@novell.com>
-
- 13 Oct, 2008 1 commit
-
-
Cody Russell authored
2008-10-13 Cody Russell <cody@jhu.edu> * test/testfilechooser.c: Fix option parsing so that -a and --action work correctly. svn path=/trunk/; revision=21645
-
- 22 Jun, 2008 1 commit
-
-
Johan Dahlin authored
2008-06-21 Johan Dahlin <jdahlin@async.com.br> * *.[ch]: Include "config.h" instead of <config.h> Command used: find -name \*.[ch]|xargs perl -p -i -e 's/^#include <config.h>/#include "config.h"/g' Rubberstamped by Mitch and Tim svn path=/trunk/; revision=20669
-
- 19 Jun, 2008 1 commit
-
-
Christian Persch authored
svn path=/trunk/; revision=20463
-
- 16 Feb, 2008 1 commit
-
-
Matthias Clasen authored
2008-02-15 Matthias Clasen <mclasen@redhat.com> * tests/testfilechooser.c: Add a --backend option. (#516073, Christian Persch) svn path=/trunk/; revision=19588
-
- 15 Jul, 2005 1 commit
-
-
Federico Mena Quintero authored
2005-07-15 Federico Mena Quintero <federico@ximian.com> * tests/testfilechooser.c (confirm_overwrite_cb): Add a test for the confirm-overwrite signal.
-
- 13 Jul, 2005 1 commit
-
-
Matthias Clasen authored
-
- 25 Jan, 2005 1 commit
-
-
Federico Mena Quintero authored
2005-01-24 Federico Mena Quintero <federico@ximian.com> Merged from gtk-2-6: Fix #147785 and clean up the loading code: * gtk/gtkfilechooserdefault.c (LoadState): Make the set of states be EMPTY, PRELOAD, LOADING, FINISHED. (gtk_file_chooser_default_init): Start in the LOAD_EMPTY state. (struct _GtkFileChooserDefault): Added a pending_select_paths field. (load_remove_timer): Add the new states. (load_setup_timer): Likewise. (load_timeout_cb): Likewise. Switch to the LOAD_LOADING state. (browse_files_model_finished_loading_cb): Switch to the LOAD_FINISHED state. (enum PendingOp): Removed. (struct _GtkFileChooserDefault): Removed the pending_op and pending_select_path fields. (pending_select_paths_free): New utility function. (pending_select_paths_add): New utility function. (gtk_file_chooser_default_finalize): Call pending_select_paths_free(). (pending_op_queue): Removed. (pending_op_process): Removed. (pending_select_paths_process): New function. (browse_files_model_finished_loading_cb): Call pending_select_paths_process(). (center_selected_row_foreach_cb): Handle multiple selection by only centering the first row. (get_is_file_filtered): Constify. (gtk_file_chooser_default_select_path): Queue into a list of paths to select if we are not finished loading. (show_and_select_paths): New utility function. (up_folder_handler): Use pending_select_paths_add(). (gtk_file_chooser_default_should_respond): Do not call pending_op_queue(); free the pending_selected_paths instead. (gtk_file_chooser_default_initial_focus): Don't queue a pending operation, and don't select the first row unconditionally --- this will happen when the folder is done loading. (shortcuts_row_activated_cb): Free the pending_select_paths. (pending_select_paths_store_selection): New utility function. (gtk_file_chooser_default_map): Call pending_select_paths_store_selection() to save the selection before reloading the folder. (select_func): Umm? Call gtk_tree_selection_select_iter(). Don't move the cursor here; it will be done when processing the pending paths. * tests/testfilechooser.c (main): Add a button to the command window to unmap and remap the file chooser.
-
- 19 Nov, 2004 1 commit
-
-
Manish Singh authored
Fri Nov 19 15:18:51 2004 Manish Singh <yosh@gimp.org> * modules/engines/ms-windows/msw_rc_style.c * modules/engines/ms-windows/msw_style.c * modules/engines/ms-windows/msw_theme_main.c * modules/engines/pixbuf/pixbuf-main.c * modules/engines/pixbuf/pixbuf-rc-style.c * modules/input/gtkimcontextime.c * modules/input/gtkimcontextxim.c * modules/input/imam-et.c * modules/input/imcedilla.c * modules/input/imcyrillic-translit.c * modules/input/iminuktitut.c * modules/input/imipa.c * modules/input/imthai-broken.c * modules/input/imti-er.c * modules/input/imti-et.c * modules/input/imviqr.c * tests/prop-editor.c * tests/testentrycompletion.c * tests/testfilechooser.c * tests/testmerge.c * tests/testtoolbar.c * tests/testtreecolumns.c * tests/testtreeview.c: get rid of unnecessary casts. * tests/testgtk.c (create_labels): add GTK_LABEL() casts for gtk_label_set_ellipsize() calls. * tests/testicontheme.c (main): remove unused pixbuf variable.
-
- 07 Nov, 2004 1 commit
-
-
Matthias Clasen authored
2004-11-07 Matthias Clasen <mclasen@redhat.com> * gtk/gtkfilefilter.h: * gtk/gtkfilefilter.c (gtk_file_filter_add_pixbuf_formats): New convenience function to add a filter for image files which can be loaded by GdkPixbuf. (#145388, Anders Carlsson) * tests/testfilechooser.c: Test the image filter.
-
- 14 Sep, 2004 1 commit
-
-
Matthias Clasen authored
2004-09-14 Matthias Clasen <mclasen@redhat.com> * gtk/gtktreeview.c (gtk_tree_view_focus_to_cursor): Set the cursor to the first selected row instead of always to the first row if there is no cursor. (#143270, Jean Bréfort) * tests/testfilechooser.c (main): Fix a few typos.
-
- 09 Sep, 2004 2 commits
-
-
Matthias Clasen authored
-
Matthias Clasen authored
2004-09-09 Matthias Clasen <mclasen@redhat.com> * tests/testfilechooser.c (main): Update sensitivity of the "Select all" button.
-
- 11 Apr, 2004 1 commit
-
-
Jonathan Blandford authored
Sun Apr 11 15:08:45 2004 Jonathan Blandford <jrb@gnome.org> * gtk/gtktreeprivate.h: Moved search entries into priv data. * gtk/gtktreeview.c: Prep for type-ahead support. (gtk_tree_view_destroy): Destroy the search window explicitly. (gtk_tree_view_key_press): Minor change; prep for type-ahead (gtk_tree_view_ensure_interactive_directory): New function (gtk_tree_view_focus_out): Rework to handle new entry life-cycle. (gtk_tree_view_real_start_interactive_search): rework (gtk_tree_view_search_dialog_hide): ditto (gtk_tree_view_search_delete_event): ditto (gtk_tree_view_search_button_press_event): ditto (gtk_tree_view_search_key_press_event): ditto (gtk_tree_view_search_move): ditto (gtk_tree_view_search_init): ditto * gtk/gtktreeviewcolumn.c: (gtk_tree_view_column_cell_layout_clear): remove unused variable. * tests/testfilechooser.c: (main): change
-
- 17 Mar, 2004 1 commit
-
-
Morten Welinder authored
2004-03-17 Morten Welinder <terra@gnome.org> * tests/testfilechooser.c (main): Plug some leaks and expose others.
-
- 15 Mar, 2004 1 commit
-
-
Jonathan Blandford authored
Mon Mar 15 01:50:28 2004 Jonathan Blandford <jrb@gnome.org> * gtkfilechooserentry.c: Rewritten to use the GtkEntryCompletion API more correctly. Now pops down the dropdown well. * gtkfilesystem.c (gtk_file_path_get_type): New boxed type for the FilePath. * test/testfilechooser.c: disable preview widget temporarily. It's not representative of a good preview widget.
-