1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*- */
/*
* Nautilus
*
* Copyright (C) 1999, 2000 Red Hat, Inc.
* Copyright (C) 1999, 2000, 2001 Eazel, Inc.
*
* Nautilus is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* Nautilus is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* Authors: Elliot Lee <sopwith@redhat.com>
* Darin Adler <darin@bentspoon.com>
*
*/
#ifndef NAUTILUS_WINDOW_PRIVATE_H
#define NAUTILUS_WINDOW_PRIVATE_H
#include "nautilus-window.h"
#include "nautilus-spatial-window.h"
#include "nautilus-navigation-window.h"
#include <bonobo/bonobo-ui-component.h>
#include <bonobo/bonobo-ui-container.h>
#include <bonobo/bonobo-ui-toolbar-button-item.h>
#include <libnautilus-private/nautilus-directory.h>
typedef enum {
NAUTILUS_LOCATION_CHANGE_STANDARD,
NAUTILUS_LOCATION_CHANGE_BACK,
NAUTILUS_LOCATION_CHANGE_FORWARD,
NAUTILUS_LOCATION_CHANGE_RELOAD,
NAUTILUS_LOCATION_CHANGE_REDIRECT
} NautilusLocationChangeType;
/* FIXME bugzilla.gnome.org 42575: Migrate more fields into here. */
struct NautilusWindowDetails
{
/* Bonobo. */
BonoboUIContainer *ui_container;
BonoboUIComponent *shell_ui;
BonoboUIComponent *status_ui;
gboolean updating_bonobo_state;
int ui_change_depth;
guint ui_idle_id;
gboolean ui_is_frozen;
gboolean ui_pending_initialize_menus_part_2;
/* Menus. */
guint refresh_go_menu_idle_id;
/* Current location. */
char *location;
GList *selection;
char *title;
NautilusFile *viewed_file;
gboolean viewed_file_seen;
/* New location. */
NautilusLocationChangeType location_change_type;
guint location_change_distance;
char *pending_location;
char *pending_scroll_to;
GList *pending_selection;
NautilusDetermineViewHandle *determine_view_handle;
/* View As choices */
GList *short_list_viewers;
NautilusViewIdentifier *extra_viewer;
/* Deferred location change. */
char *location_to_change_to_at_idle;
guint location_change_at_idle_id;
};
struct _NautilusNavigationWindowDetails {
GtkWidget *content_paned;
/* Location bar */
gboolean temporary_navigation_bar;
/* Side Pane */
int side_pane_width;
GtkWidget *current_side_panel;
/* Menus */
guint refresh_bookmarks_menu_idle_id;
/* Toolbar */
GtkTooltips *tooltips;
GtkWidget *back_button_item;
GtkWidget *forward_button_item;
/* Throbber */
gboolean throbber_active;
gboolean throbber_activating;
Bonobo_PropertyBag throbber_property_bag;
};
#define NAUTILUS_MENU_PATH_BACK_ITEM "/menu/Go/Back"
#define NAUTILUS_MENU_PATH_FORWARD_ITEM "/menu/Go/Forward"
#define NAUTILUS_MENU_PATH_UP_ITEM "/menu/Go/Up"
#define NAUTILUS_MENU_PATH_RELOAD_ITEM "/menu/View/Reload"
#define NAUTILUS_MENU_PATH_ZOOM_IN_ITEM "/menu/View/Zoom Items Placeholder/Zoom In"
#define NAUTILUS_MENU_PATH_ZOOM_OUT_ITEM "/menu/View/Zoom Items Placeholder/Zoom Out"
#define NAUTILUS_MENU_PATH_ZOOM_NORMAL_ITEM "/menu/View/Zoom Items Placeholder/Zoom Normal"
#define NAUTILUS_COMMAND_BACK "/commands/Back"
#define NAUTILUS_COMMAND_FORWARD "/commands/Forward"
#define NAUTILUS_COMMAND_UP "/commands/Up"
#define NAUTILUS_COMMAND_RELOAD "/commands/Reload"
#define NAUTILUS_COMMAND_BURN_CD "/commands/Burn CD"
#define NAUTILUS_COMMAND_STOP "/commands/Stop"
#define NAUTILUS_COMMAND_ZOOM_IN "/commands/Zoom In"
#define NAUTILUS_COMMAND_ZOOM_OUT "/commands/Zoom Out"
#define NAUTILUS_COMMAND_ZOOM_NORMAL "/commands/Zoom Normal"
/* window geometry */
/* These are very small, and a Nautilus window at this tiny size is *almost*
* completely unusable. However, if all the extra bits (sidebar, location bar, etc)
* are turned off, you can see an icon or two at this size. See bug 5946.
*/
#define NAUTILUS_WINDOW_MIN_WIDTH 200
#define NAUTILUS_WINDOW_MIN_HEIGHT 200
#define NAUTILUS_SPATIAL_WINDOW_DEFAULT_WIDTH 500
#define NAUTILUS_SPATIAL_WINDOW_DEFAULT_HEIGHT 300
#define NAUTILUS_NAVIGATION_WINDOW_DEFAULT_WIDTH 800
#define NAUTILUS_NAVIGATION_WINDOW_DEFAULT_HEIGHT 550
typedef void (*NautilusBookmarkFailedCallback) (NautilusWindow *window,
NautilusBookmark *bookmark);
void nautilus_window_set_status (NautilusWindow *window,
const char *status);
void nautilus_window_load_view_as_menus (NautilusWindow *window);
void nautilus_window_initialize_menus_part_1 (NautilusWindow *window);
void nautilus_window_initialize_menus_part_2 (NautilusWindow *window);
void nautilus_menus_append_bookmark_to_menu (NautilusWindow *window,
BonoboUIComponent *uic,
NautilusBookmark *bookmark,
const char *parent_path,
guint index_in_parent,
GCallback refresh_callback,
NautilusBookmarkFailedCallback failed_callback);
void nautilus_window_handle_ui_event_callback (BonoboUIComponent *ui,
const char *id,
Bonobo_UIComponent_EventType type,
const char *state,
NautilusWindow *window);
#if NEW_UI_COMPLETE
void nautilus_window_go_up (NautilusWindow *window);
#endif
void nautilus_window_update_find_menu_item (NautilusWindow *window);
void nautilus_window_remove_go_menu_callback (NautilusWindow *window);
void nautilus_window_remove_go_menu_items (NautilusWindow *window);
void nautilus_window_update_show_hide_menu_items (NautilusWindow *window);
void nautilus_window_zoom_in (NautilusWindow *window);
void nautilus_window_zoom_out (NautilusWindow *window);
void nautilus_window_zoom_to_level (NautilusWindow *window,
float level);
void nautilus_window_zoom_to_fit (NautilusWindow *window);
void nautilus_window_show_view_as_dialog (NautilusWindow *window);
void nautilus_window_set_content_view_widget (NautilusWindow *window,
NautilusViewFrame *content_view);
Bonobo_UIContainer nautilus_window_get_ui_container (NautilusWindow *window);
void nautilus_window_set_viewed_file (NautilusWindow *window,
NautilusFile *file);
void nautilus_send_history_list_changed (void);
void nautilus_window_add_current_location_to_history_list (NautilusWindow *window);
void nautilus_remove_from_history_list_no_notify (const char *location);
GList * nautilus_get_history_list (void);
void nautilus_window_bookmarks_preference_changed_callback (gpointer user_data);
void nautilus_window_update_icon (NautilusWindow *window);
/* Navigation window menus */
void nautilus_navigation_window_initialize_menus_part_1 (NautilusNavigationWindow *window);
void nautilus_navigation_window_initialize_menus_part_2 (NautilusNavigationWindow *window);
void nautilus_navigation_window_remove_bookmarks_menu_callback (NautilusNavigationWindow *window);
void nautilus_navigation_window_remove_bookmarks_menu_items (NautilusNavigationWindow *window);
void nautilus_navigation_window_update_show_hide_menu_items (NautilusNavigationWindow *window);
/* Navigation window toolbar */
void nautilus_navigation_window_activate_throbber (NautilusNavigationWindow *window);
void nautilus_navigation_window_initialize_toolbars (NautilusNavigationWindow *window);
void nautilus_navigation_window_set_throbber_active (NautilusNavigationWindow *window,
gboolean active);
void nautilus_navigation_window_go_back (NautilusNavigationWindow *window);
void nautilus_navigation_window_go_forward (NautilusNavigationWindow *window);
#endif /* NAUTILUS_WINDOW_PRIVATE_H */
|