name change
[obnox/wireshark/wip.git] / gtk / file_dlg.h
1 /* file_utils.h
2  * Declarations of utilities to use when constructing file selection dialogs
3  *
4  * $Id$
5  *
6  * Wireshark - Network traffic analyzer
7  * By Gerald Combs <gerald@wireshark.org>
8  * Copyright 1998 Gerald Combs
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License
12  * as published by the Free Software Foundation; either version 2
13  * of the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
23  */
24
25 /** @defgroup filesel_dialog_group File Selection Dialogs
26  *
27  * Dialogs are specially created windows and are related to their parent windows (usually the main window). 
28  * See: @ref howto_window_page for details.
29  *
30  * File selection dialogs are created using file_selection_new().
31  *
32  * - "Browse" file_selection_browse()
33  * - "Open Capture File" file_open_cmd()
34  * - "Save Capture File As" file_save_as_cmd()
35  * - "Import Color Filters" file_color_import_cmd_cb()
36  * - "Export Color Filters" file_color_export_cmd_cb()
37  * - "Save TCP Follow Stream As" follow_save_as_cmd_cb()
38  * - "Export Selected Packet Bytes" savehex_cb()
39  * - "Save Data As CSV" save_csv_as_cb()
40  * - "Save Payload As ..." on_save_bt_clicked()
41  * - "Save selected stream in rtpdump" rtpstream_on_save()
42  * 
43  */
44
45 /** @file
46  * Utilities for file selection dialog boxes. Depending on the window
47  * functions in gui_utils.h, see: @ref howto_window_page for details.
48  * @ingroup filesel_dialog_group
49  */
50
51 #ifndef __FILE_DLG_H__
52 #define __FILE_DLG_H__
53
54 /** the action a file selection is designed for */
55 typedef enum {
56         FILE_SELECTION_OPEN,            /**< open a file */
57         FILE_SELECTION_READ_BROWSE,     /**< browse for a file to read */
58         FILE_SELECTION_SAVE,            /**< save/export a file */
59         FILE_SELECTION_WRITE_BROWSE     /**< browse for a file to write to */
60 } file_selection_action_t;
61
62 /** Create a file selection dialog box window that belongs to Ethereal's
63  *  main window. See window_new() for usage.
64  *
65  * @param title the title for the new file selection dialog
66  * @param action the desired action
67  * @return the newly created file selection dialog
68  */
69 extern GtkWidget *file_selection_new(const gchar *title, file_selection_action_t action);
70
71 /** Set the current folder for a file selection dialog.
72  *
73  * @param fs the file selection dialog from file_selection_new()
74  * @param filename the folder to set
75  * @return TRUE if the folder could be changed successfully
76  */
77 extern gboolean file_selection_set_current_folder(GtkWidget *fs, const gchar *filename);
78
79 /** Set the "extra" widget for a file selection dialog. This is needed to support 
80  *  user-supplied options.
81  *
82  * @param fs the file selection dialog from file_selection_new()
83  * @param extra the widget to set
84  */
85 extern void file_selection_set_extra_widget(GtkWidget *fs, GtkWidget *extra);
86
87 /** The function file_selection_browse() will OBJECT_SET_DATA() itself on it's parent window.
88  *  When destroying the parent window, it can close the corresponding file selection. */
89 #define E_FILE_SEL_DIALOG_PTR_KEY "file_sel_dialog_ptr"
90
91 /** Browse the files and fill in the associated text entry.
92  *
93  * @param file_bt the button that called us (to get the toplevel widget)
94  * @param file_te the GtkEntry the dialog will have to fill in the filename
95  * @param title the title for the file selection dialog
96  * @param action the desired action
97  */
98 extern void
99 file_selection_browse(GtkWidget *file_bt, GtkWidget *file_te, const char *title, file_selection_action_t action);
100
101 /** Get the latest opened directory.
102  *
103  * @return the dirname
104  */
105 extern char *get_last_open_dir(void);
106
107 /** Set the latest opened directory.
108  *  Will already be done when using file_selection_new().
109  *
110  * @param dirname the dirname
111  */
112 extern void set_last_open_dir(char *dirname);
113
114 #endif