summaryrefslogtreecommitdiff
path: root/src/nautilus-navigation-window.h
blob: dbebf91dfe2eaa3567dbac41a7c6b2198fcd14a2 (plain)
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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */

/*
 *  Nautilus
 *
 *  Copyright (C) 1999, 2000 Red Hat, Inc.
 *  Copyright (C) 1999, 2000 Eazel, Inc.
 *
 *  This library 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 library 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 library; if not, write to the Free Software
 *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 *  Author: Elliot Lee <sopwith@redhat.com>
 *
 */
/* ntl-window.h: Interface of the main window object */

#ifndef NTL_WINDOW_H
#define NTL_WINDOW_H

#include <libgnomeui/gnome-app.h>
#include <libnautilus-extensions/nautilus-glib-extensions.h>
#include <libnautilus-extensions/nautilus-bookmark.h>
#include "ntl-uri-map.h"
#include "ntl-view.h"
#include "ntl-index-panel.h"

#define NAUTILUS_TYPE_WINDOW (nautilus_window_get_type())
#define NAUTILUS_WINDOW(obj)	        (GTK_CHECK_CAST ((obj), NAUTILUS_TYPE_WINDOW, NautilusWindow))
#define NAUTILUS_WINDOW_CLASS(klass)      (GTK_CHECK_CLASS_CAST ((klass), NAUTILUS_TYPE_WINDOW, NautilusWindowClass))
#define NAUTILUS_IS_WINDOW(obj)	        (GTK_CHECK_TYPE ((obj), NAUTILUS_TYPE_WINDOW))
#define NAUTILUS_IS_WINDOW_CLASS(klass)   (GTK_CHECK_CLASS_TYPE ((klass), NAUTILUS_TYPE_WINDOW))

typedef struct _NautilusWindow NautilusWindow;

typedef struct {
  GnomeAppClass parent_spot;
  GnomeAppClass *parent_class;
} NautilusWindowClass;

typedef struct _NautilusWindowStateInfo NautilusWindowStateInfo;

typedef enum {
  NAUTILUS_LOCATION_CHANGE_STANDARD,
  NAUTILUS_LOCATION_CHANGE_BACK,
  NAUTILUS_LOCATION_CHANGE_FORWARD,
  NAUTILUS_LOCATION_CHANGE_RELOAD
} NautilusLocationChangeType;

struct _NautilusWindow {
  GnomeApp parent_object;

  /** UI stuff **/
  NautilusIndexPanel *index_panel;
  GtkWidget *content_hbox;
  GtkWidget *option_cvtype, *ent_uri;

  guint statusbar_ctx, statusbar_clear_id;

  /** CORBA-related elements **/
  BonoboObject *ntl_viewwindow;
  BonoboUIHandler *uih;
  BonoboObject *app;

  /** State information **/

  /* Information about current location/selection */
  Nautilus_NavigationInfo *ni;
  Nautilus_SelectionInfo *si;
  char *requested_title;
  char *default_title;
  
  /* Back/Forward chain, and history list. 
   * The data in these lists are NautilusBookmark pointers. 
   */
  GSList *back_list, *forward_list;

  NautilusBookmark *current_location_bookmark; 
  NautilusBookmark *last_location_bookmark;

  /* Current views stuff */
  NautilusView *content_view;
  GSList *meta_views;

  /* Widgets to keep track of (for state changes, etc) */
  GtkWidget *back_button;
  GtkWidget *forward_button;
  GtkWidget *up_button;
  GtkWidget *reload_button;
  GtkWidget *stop_button;
  GtkWidget *zoom_control;

  /* Pending changes */
  NautilusNavigationInfo *pending_ni;
  NautilusView *new_content_view, *new_requesting_view;
  GSList *new_meta_views, *error_views;

  enum { NW_LOADING_INFO, NW_LOADING_VIEWS, NW_IDLE } state;

  NautilusNavigationInfo *cancel_tag;
  guint action_tag;
  guint16 made_changes, making_changes;

  NautilusLocationChangeType location_change_type;
  guint location_change_distance;
  
  nautilus_boolean_bit changes_pending : 1;
  nautilus_boolean_bit views_shown : 1;
  nautilus_boolean_bit view_bombed_out : 1;
  nautilus_boolean_bit view_activation_complete : 1;
  nautilus_boolean_bit sent_update_view : 1;
  nautilus_boolean_bit cv_progress_initial : 1;
  nautilus_boolean_bit cv_progress_done : 1;
  nautilus_boolean_bit cv_progress_error : 1;
  nautilus_boolean_bit reset_to_idle : 1;
};

GtkType          nautilus_window_get_type          	(void);
void             nautilus_window_close             	(NautilusWindow *window);
void             nautilus_window_set_content_view 	(NautilusWindow *window,
                                                   	 NautilusView   *content_view);
void             nautilus_window_add_meta_view     	(NautilusWindow *window,
                                                    	 NautilusView   *meta_view);
void             nautilus_window_remove_meta_view  	(NautilusWindow *window,
                                                    	 NautilusView   *meta_view);
void             nautilus_window_goto_uri          	(NautilusWindow *window,
                                                    	 const char     *uri);
void             nautilus_window_display_error     	(NautilusWindow *window,
                                                    	 const char     *error_msg);
const char *     nautilus_window_get_requested_uri 	(NautilusWindow *window);
BonoboUIHandler  *nautilus_window_get_uih           	(NautilusWindow *window);
void             nautilus_window_allow_back        	(NautilusWindow *window,
                                                    	 gboolean        allow);
void             nautilus_window_allow_forward     	(NautilusWindow *window,
                                                    	 gboolean        allow);
void             nautilus_window_allow_up          	(NautilusWindow *window,
                                                    	 gboolean        allow);
void             nautilus_window_allow_reload      	(NautilusWindow *window,
                                                    	 gboolean        allow);
void             nautilus_window_allow_stop        	(NautilusWindow *window,
                                                    	 gboolean        allow);
void             nautilus_bookmarks_exiting        	(void);

#endif