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
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
nautilus-window-slot.h: Nautilus window slot
Copyright (C) 2008 Free Software Foundation, Inc.
This program 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.
This program 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., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
Author: Christian Neumair <cneumair@gnome.org>
*/
#ifndef NAUTILUS_WINDOW_SLOT_H
#define NAUTILUS_WINDOW_SLOT_H
#include "nautilus-window-pane.h"
#include "nautilus-query-editor.h"
#include <glib/gi18n.h>
#define NAUTILUS_TYPE_WINDOW_SLOT (nautilus_window_slot_get_type())
#define NAUTILUS_WINDOW_SLOT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NAUTILUS_TYPE_WINDOW_SLOT, NautilusWindowSlotClass))
#define NAUTILUS_WINDOW_SLOT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NAUTILUS_TYPE_WINDOW_SLOT, NautilusWindowSlot))
#define NAUTILUS_IS_WINDOW_SLOT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NAUTILUS_TYPE_WINDOW_SLOT))
#define NAUTILUS_IS_WINDOW_SLOT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), NAUTILUS_TYPE_WINDOW_SLOT))
#define NAUTILUS_WINDOW_SLOT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NAUTILUS_TYPE_WINDOW_SLOT, NautilusWindowSlotClass))
typedef enum {
NAUTILUS_LOCATION_CHANGE_STANDARD,
NAUTILUS_LOCATION_CHANGE_BACK,
NAUTILUS_LOCATION_CHANGE_FORWARD,
NAUTILUS_LOCATION_CHANGE_RELOAD,
NAUTILUS_LOCATION_CHANGE_REDIRECT,
NAUTILUS_LOCATION_CHANGE_FALLBACK
} NautilusLocationChangeType;
struct NautilusWindowSlotClass {
GObjectClass parent_class;
/* wrapped NautilusWindowInfo signals, for overloading */
void (* active) (NautilusWindowSlot *slot);
void (* inactive) (NautilusWindowSlot *slot);
void (* update_query_editor) (NautilusWindowSlot *slot);
};
/* Each NautilusWindowSlot corresponds to
* a location in the window for displaying
* a NautilusView.
*
* For navigation windows, this would be a
* tab, while spatial windows only have one slot.
*/
struct NautilusWindowSlot {
GObject parent;
NautilusWindowPane *pane;
/* content_box contains
* 1) an event box containing extra_location_widgets
* 2) the view box for the content view
*/
GtkWidget *content_box;
GtkWidget *extra_location_frame;
GtkWidget *extra_location_widgets;
GtkWidget *view_box;
NautilusView *content_view;
NautilusView *new_content_view;
/* Information about bookmarks */
NautilusBookmark *current_location_bookmark;
NautilusBookmark *last_location_bookmark;
/* Current location. */
GFile *location;
char *title;
char *status_text;
NautilusFile *viewed_file;
gboolean viewed_file_seen;
gboolean viewed_file_in_trash;
gboolean allow_stop;
NautilusQueryEditor *query_editor;
/* New location. */
NautilusLocationChangeType location_change_type;
guint location_change_distance;
GFile *pending_location;
char *pending_scroll_to;
GList *pending_selection;
NautilusFile *determine_view_file;
GCancellable *mount_cancellable;
GError *mount_error;
gboolean tried_mount;
GCancellable *find_mount_cancellable;
gboolean visible;
};
GType nautilus_window_slot_get_type (void);
char * nautilus_window_slot_get_title (NautilusWindowSlot *slot);
void nautilus_window_slot_update_title (NautilusWindowSlot *slot);
void nautilus_window_slot_update_icon (NautilusWindowSlot *slot);
void nautilus_window_slot_update_query_editor (NautilusWindowSlot *slot);
GFile * nautilus_window_slot_get_location (NautilusWindowSlot *slot);
char * nautilus_window_slot_get_location_uri (NautilusWindowSlot *slot);
void nautilus_window_slot_close (NautilusWindowSlot *slot);
void nautilus_window_slot_reload (NautilusWindowSlot *slot);
void nautilus_window_slot_open_location (NautilusWindowSlot *slot,
GFile *location,
gboolean close_behind);
void nautilus_window_slot_open_location_with_selection (NautilusWindowSlot *slot,
GFile *location,
GList *selection,
gboolean close_behind);
void nautilus_window_slot_open_location_full (NautilusWindowSlot *slot,
GFile *location,
NautilusWindowOpenMode mode,
NautilusWindowOpenFlags flags,
GList *new_selection);
void nautilus_window_slot_stop_loading (NautilusWindowSlot *slot);
void nautilus_window_slot_set_content_view (NautilusWindowSlot *slot,
const char *id);
const char *nautilus_window_slot_get_content_view_id (NautilusWindowSlot *slot);
gboolean nautilus_window_slot_content_view_matches_iid (NautilusWindowSlot *slot,
const char *iid);
void nautilus_window_slot_connect_content_view (NautilusWindowSlot *slot,
NautilusView *view);
void nautilus_window_slot_disconnect_content_view (NautilusWindowSlot *slot,
NautilusView *view);
#define nautilus_window_slot_go_to(slot,location, new_tab) \
nautilus_window_slot_open_location_full(slot, location, NAUTILUS_WINDOW_OPEN_ACCORDING_TO_MODE, \
(new_tab ? NAUTILUS_WINDOW_OPEN_FLAG_NEW_TAB : 0), \
NULL)
#define nautilus_window_slot_go_to_with_selection(slot,location,new_selection) \
nautilus_window_slot_open_location_with_selection(slot, location, new_selection, FALSE)
void nautilus_window_slot_go_home (NautilusWindowSlot *slot,
gboolean new_tab);
void nautilus_window_slot_go_up (NautilusWindowSlot *slot,
gboolean close_behind);
void nautilus_window_slot_set_content_view_widget (NautilusWindowSlot *slot,
NautilusView *content_view);
void nautilus_window_slot_set_viewed_file (NautilusWindowSlot *slot,
NautilusFile *file);
void nautilus_window_slot_set_allow_stop (NautilusWindowSlot *slot,
gboolean allow_stop);
void nautilus_window_slot_set_status (NautilusWindowSlot *slot,
const char *status);
void nautilus_window_slot_add_extra_location_widget (NautilusWindowSlot *slot,
GtkWidget *widget);
void nautilus_window_slot_remove_extra_location_widgets (NautilusWindowSlot *slot);
void nautilus_window_slot_add_current_location_to_history_list (NautilusWindowSlot *slot);
void nautilus_window_slot_is_in_active_pane (NautilusWindowSlot *slot, gboolean is_active);
#endif /* NAUTILUS_WINDOW_SLOT_H */
|