summaryrefslogtreecommitdiff
path: root/src/ntl-window-private.h
diff options
context:
space:
mode:
authorElliot Lee <sopwith@src.gnome.org>1999-12-15 00:57:04 +0000
committerElliot Lee <sopwith@src.gnome.org>1999-12-15 00:57:04 +0000
commit80bfd80a13b47d368d36974318b07e5e1378fd23 (patch)
treeef6043ccb67c9096a3347fb42797d69d7b98b9a7 /src/ntl-window-private.h
parent8585f2c4623e1882d48a834fad7458969b685036 (diff)
downloadnautilus-80bfd80a13b47d368d36974318b07e5e1378fd23.tar.gz
Restructure the whole NautilusWindow code for sanity's sake.
* src/*.c: Restructure the whole NautilusWindow code for sanity's sake. * src/ntl-uri-map.[ch]: Instead of just passing in various pieces of information about the old URL, pass in the Nautilus_NavigationInfo that has to be kept around anyways. * idl/nautilus.idl: Allow a selection to be multiple URI's.
Diffstat (limited to 'src/ntl-window-private.h')
-rw-r--r--src/ntl-window-private.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ntl-window-private.h b/src/ntl-window-private.h
new file mode 100644
index 000000000..bd6909ed5
--- /dev/null
+++ b/src/ntl-window-private.h
@@ -0,0 +1,24 @@
+#ifndef NTL_WINDOW_PRIVATE_H
+#define NTL_WINDOW_PRIVATE_H 1
+
+#include "ntl-window.h"
+#include <libnautilus/libnautilus.h>
+#include <gtk/gtk.h>
+
+void nautilus_window_real_request_selection_change(NautilusWindow *window,
+ Nautilus_SelectionRequestInfo *loc,
+ NautilusView *requesting_view);
+
+void nautilus_window_real_request_status_change(NautilusWindow *window,
+ Nautilus_StatusRequestInfo *loc,
+ NautilusView *requesting_view);
+void nautilus_window_real_request_location_change (NautilusWindow *window,
+ Nautilus_NavigationRequestInfo *loc,
+ NautilusView *requesting_view);
+void nautilus_window_set_status(NautilusWindow *window, const char *txt);
+void nautilus_window_change_location(NautilusWindow *window,
+ Nautilus_NavigationRequestInfo *loc,
+ NautilusView *requesting_view,
+ gboolean is_back);
+
+#endif