summaryrefslogtreecommitdiff
path: root/src/nautilus-window-manage-views.c
blob: e25dfbeba5cedf82ab87985f1396edfcd6e0e777 (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
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
/* -*- 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>
 *
 */

#include "nautilus.h"
#include "ntl-window-private.h"
#include "ntl-index-panel.h"
#include "explorer-location-bar.h"

struct _NautilusWindowLoadInfo {
  /* These are the three states of loading in process.
     When the state is GETTING_URI_INFO, it's too early to
     pay attention to changes in the content view.
     Once the content view is done, we discard the load info
     structure, so there's no state for being done.
  */
  enum {
    GETTING_URI_INFO,
    WAITING_FOR_FIRST_PROGRESS_FROM_CONTENT_VIEW,
    WAITING_FOR_CONTENT_VIEW_TO_BE_DONE
  } state;

  /* These are the states that the content view can be in.
     Since the content view callback can occur when the window
     is not yet ready, this is kept separate from the window
     state until nautilus_window_advance_state is called
     and state is not GETTING_URI_INFO.
  */
  enum {
    CONTENT_VIEW_NOTHING_YET,
    CONTENT_VIEW_LOADING,
    CONTENT_VIEW_DONE
  } content_view_state;

  guint cancel_tag;
  NautilusNavigationInfo *ni;

  NautilusView *new_content_view;
  GSList *new_meta_views;

  gboolean is_back;
};

static void nautilus_window_notify_selection_change(NautilusWindow *window,
						    NautilusView *view,
						    Nautilus_SelectionInfo *loc,
						    NautilusView *requesting_view);

static void nautilus_window_advance_state(NautilusWindow *window);
static void nautilus_window_switch_to_new_views(NautilusWindow *window);
static void nautilus_window_revert_to_old_views(NautilusWindow *window);
static void nautilus_window_free_load_info(NautilusWindow *window);

static void
Nautilus_SelectionInfo__copy(Nautilus_SelectionInfo *dest_si, Nautilus_SelectionInfo *src_si)
{
  int i, n;

  dest_si->selected_uris = src_si->selected_uris;

  n = dest_si->selected_uris._length;
  dest_si->selected_uris._buffer = CORBA_sequence_CORBA_string_allocbuf(n);
  for(i = 0; i < n; i++)
    dest_si->selected_uris._buffer[i] = CORBA_string_dup(src_si->selected_uris._buffer[i]);

  dest_si->content_view = CORBA_OBJECT_NIL;
  dest_si->self_originated = CORBA_FALSE;
}


void
nautilus_window_request_status_change(NautilusWindow *window,
                                      Nautilus_StatusRequestInfo *loc,
                                      NautilusView *requesting_view)
{
  nautilus_window_set_status(window, loc->status_string);
}

void
nautilus_window_request_selection_change(NautilusWindow *window,
					 Nautilus_SelectionRequestInfo *loc,
					 NautilusView *requesting_view)
{
  GSList *cur;
  Nautilus_SelectionInfo selinfo;

  selinfo.selected_uris = loc->selected_uris;
  selinfo.content_view = nautilus_view_get_objref(NAUTILUS_VIEW(window->content_view));

  CORBA_free(window->si);

  window->si = Nautilus_SelectionInfo__alloc();
  Nautilus_SelectionInfo__copy(window->si, &selinfo);

  nautilus_window_notify_selection_change(window, window->content_view, &selinfo, requesting_view);

  for(cur = window->meta_views; cur; cur = cur->next)
    nautilus_window_notify_selection_change(window, cur->data, &selinfo, requesting_view);
}

void
nautilus_window_request_location_change(NautilusWindow *window,
					Nautilus_NavigationRequestInfo *loc,
					NautilusView *requesting_view)
{  
  nautilus_window_change_location(window, loc, requesting_view, FALSE);
}

static void
nautilus_window_notify_selection_change(NautilusWindow *window,
					NautilusView *view,
					Nautilus_SelectionInfo *loc,
					NautilusView *requesting_view)
{
  loc->self_originated = (view == requesting_view);

  nautilus_view_notify_selection_change(view, loc);
}

/* Since this is can be called while the window is still getting set up, it
   doesn't do any work directly.
*/
void
nautilus_window_request_progress_change(NautilusWindow *window,
					Nautilus_ProgressRequestInfo *loc,
					NautilusView *requesting_view)
{
  if (window->load_info == NULL)
    return;
  
  if (requesting_view != window->load_info->new_content_view)
    return; /* Only pay attention to progress information from the content view, for now */
  
  /* If the progress indicates we are done, record that, otherwise
     just record the fact that we have at least begun loading.
  */
  if (loc->type == Nautilus_PROGRESS_DONE_OK || loc->type == Nautilus_PROGRESS_DONE_ERROR)
    window->load_info->content_view_state = CONTENT_VIEW_DONE;
  else
    window->load_info->content_view_state = CONTENT_VIEW_LOADING;
  
  /* If we are past the setup state, we can reflect this change in the window. */
  nautilus_window_advance_state(window);
}

/* Called to advance the state once we are done setting up the window. */
static void
nautilus_window_advance_state(NautilusWindow *window)
{
  /* We have gotten something from the content view, which means it is safe to do the "switchover" to the new page */
  if (window->load_info->content_view_state != CONTENT_VIEW_NOTHING_YET
      && window->load_info->state == WAITING_FOR_FIRST_PROGRESS_FROM_CONTENT_VIEW)
    {
      nautilus_window_switch_to_new_views(window);
      window->load_info->state = WAITING_FOR_CONTENT_VIEW_TO_BE_DONE;
    }

  /* Check if we are completely done. */
  if (window->load_info->content_view_state == CONTENT_VIEW_DONE
      && window->load_info->state == WAITING_FOR_CONTENT_VIEW_TO_BE_DONE)
    {
      nautilus_window_free_load_info(window);

      /* This says that once the content view is loaded, we shouldn't have a stop button.
	 An alternative design would keep the stop button up until all views are loaded,
      */
      nautilus_window_allow_stop(window, FALSE);
    }
}

/* The bulk of this file - location changing */

static void
Nautilus_NavigationInfo__copy(Nautilus_NavigationInfo *dest_ni, Nautilus_NavigationInfo *src_ni)
{
  dest_ni->requested_uri = CORBA_string_dup(src_ni->requested_uri);
  dest_ni->actual_uri = CORBA_string_dup(src_ni->actual_uri);
  dest_ni->content_type = CORBA_string_dup(src_ni->content_type);
  dest_ni->referring_uri = CORBA_string_dup(src_ni->referring_uri);
  dest_ni->actual_referring_uri = CORBA_string_dup(src_ni->actual_referring_uri);
  dest_ni->referring_content_type = CORBA_string_dup(src_ni->referring_content_type);
  dest_ni->content_view = CORBA_OBJECT_NIL;
  dest_ni->self_originated = CORBA_FALSE;
}

static void
nautilus_window_load_content_view_menu (NautilusWindow *window)
{
  GList *children; 
  GList *iter_old;
  GSList *iter_new;
  GtkWidget *new_menu;
  gint index, default_view_index;

  g_return_if_fail (NAUTILUS_IS_WINDOW (window));
  g_return_if_fail (GTK_IS_OPTION_MENU (window->option_cvtype));
  g_return_if_fail (window->load_info != NULL);
  g_return_if_fail (window->load_info->ni != NULL);

  new_menu = gtk_menu_new ();

  /* Add a menu item for each available content view type */
  iter_new = window->load_info->ni->content_identifiers;
  index = 0;
  default_view_index = -1;
  while (iter_new != NULL)
  {
    GtkWidget *menu_item;
    NautilusViewIdentifier *identifier;

    identifier = (NautilusViewIdentifier *)iter_new->data;
    menu_item = gtk_menu_item_new_with_label (identifier->name);
    if (strcmp (identifier->iid, window->load_info->ni->default_content_iid) == 0)
    {
      default_view_index = index;
    }
    /* FIXME: Need to connect menu item to signal here */
    gtk_menu_append (GTK_MENU (new_menu), menu_item);
    gtk_widget_show (menu_item);
    iter_new = g_slist_next (iter_new);
    ++index;
  }

  /* We create and attach a new menu here because adding/removing items from
   * existing menu screws up the size of the option menu.
   */
  gtk_option_menu_set_menu (GTK_OPTION_MENU (window->option_cvtype), new_menu);

  g_assert (default_view_index >= 0);
  gtk_option_menu_set_history (GTK_OPTION_MENU (window->option_cvtype), 
  			       default_view_index);
}

/* Handle the changes for the NautilusWindow itself. */
static void
nautilus_window_change_location_internal(NautilusWindow *window, Nautilus_NavigationInfo *loci, gboolean is_back)
{
  GnomeVFSURI *new_uri;

  CORBA_free(window->si); window->si = NULL;

  /* Maintain history lists. */
  if (is_back)
    {
      /* Going back. Remove one item from the prev list and add the current item to the next list. */

      g_assert(window->uris_prev);
      g_assert(!strcmp((const gchar*)window->uris_prev->data, loci->requested_uri));
      g_assert(window->ni);

      window->uris_next = g_slist_prepend(window->uris_next, g_strdup(window->ni->requested_uri));
      g_free(window->uris_prev->data);
      window->uris_prev = g_slist_remove_link(window->uris_prev, window->uris_prev);
    }
  else
    {
      /* Going forward. Remove one item from the next if it's the same as the the request.
         Otherwise, clobber the entire next list.
      */

      if (window->uris_next && !strcmp(loci->requested_uri, (const gchar*)window->uris_next->data))
	{
	  g_free(window->uris_next->data);
	  window->uris_next = g_slist_remove_link(window->uris_next, window->uris_next);
	}
      else
	{
	  g_slist_foreach(window->uris_next, (GFunc)g_free, NULL);
	  g_slist_free(window->uris_next); window->uris_next = NULL;
	}
      if (window->ni)
	window->uris_prev = g_slist_prepend(window->uris_prev, g_strdup(window->ni->requested_uri));
    }

  nautilus_window_allow_back(window, window->uris_prev?TRUE:FALSE);
  nautilus_window_allow_forward(window, window->uris_next?TRUE:FALSE);
  
  new_uri = gnome_vfs_uri_new (loci->requested_uri);
  nautilus_window_allow_up(window, 
			   gnome_vfs_uri_has_parent(new_uri));
  gnome_vfs_uri_destroy(new_uri);

  if (window->ni != loci)
    {
      Nautilus_NavigationInfo *newni;

      newni = Nautilus_NavigationInfo__alloc();
      Nautilus_NavigationInfo__copy(newni, loci);
      CORBA_free(window->ni);
      window->ni = newni;

      CORBA_free(window->si);
      window->si = NULL;
    }

  nautilus_window_load_content_view_menu (window);

  explorer_location_bar_set_uri_string(EXPLORER_LOCATION_BAR(window->ent_uri),
                                       loci->requested_uri);
}

static void
nautilus_window_update_view(NautilusWindow *window,
                            NautilusView *view,
                            Nautilus_NavigationInfo *loci,
                            NautilusView *requesting_view,
			    NautilusView *content_view)
{
  g_return_if_fail(view);

  loci->self_originated = (view == requesting_view);

  nautilus_view_notify_location_change(NAUTILUS_VIEW(view), loci);

  if(window->si)
    {
      window->si->content_view = nautilus_view_get_client_objref(content_view);
      nautilus_window_notify_selection_change(window, view, window->si, NULL);
    }
}

void
nautilus_window_view_destroyed(NautilusView *view, NautilusWindow *window)
{
  if(NAUTILUS_IS_CONTENT_VIEW(view))
    {
      if(window->load_info)
	{
	  if(view == window->load_info->new_content_view)
	    {
	      nautilus_window_display_error
		(window,
		 _("A software component, needed to display the requested page, has turned fatalistic."));
	      nautilus_window_end_location_change(window);
	    }
	}

      if(view == window->content_view)
	window->content_view = NULL;
    }
  else if(NAUTILUS_IS_META_VIEW(view))
    {
      if(window->load_info)
	window->load_info->new_meta_views = g_slist_remove(window->load_info->new_meta_views, view);

      nautilus_window_remove_meta_view(window, view);
    }
}

static void
nautilus_window_load_content_view(NautilusWindow *window,
                                  const char *iid,
                                  NautilusNavigationInfo *loci,
                                  NautilusView **requesting_view)
{
  NautilusView *content_view = window->content_view;
  NautilusView *new_view;

  g_return_if_fail(iid);
  g_return_if_fail(loci);
  g_return_if_fail(requesting_view);

  if((!content_view || !NAUTILUS_IS_VIEW(content_view)) || strcmp(nautilus_view_get_iid(content_view), iid))
    {
      if(*requesting_view == window->content_view) /* If we are going to be zapping the old view,
                                                      we definitely don't want any of the new views
                                                      thinking they made the request */
        *requesting_view = NULL;

      new_view = NAUTILUS_VIEW(gtk_widget_new(nautilus_content_view_get_type(), "main_window", window, NULL));

      nautilus_window_connect_view(window, new_view);

      if(!nautilus_view_load_client(new_view, iid))
	{
	  gtk_widget_destroy(GTK_WIDGET(new_view));
	  new_view = NULL;
	}
    }
  else
    new_view = window->content_view;

  if(new_view && NAUTILUS_IS_VIEW(new_view))
    {
      gtk_object_ref(GTK_OBJECT(new_view));

      loci->navinfo.content_view = nautilus_view_get_client_objref(new_view);
      window->load_info->new_content_view = new_view;

      nautilus_view_set_active_errors(new_view, TRUE);

      nautilus_window_update_view(window, new_view, &(loci->navinfo), *requesting_view, window->load_info->new_content_view);
    }
}

static void
nautilus_window_load_meta_view(NautilusWindow *window,
                               const char *iid,
                               NautilusNavigationInfo *loci,
                               NautilusView *requesting_view)
{
  NautilusView *meta_view;
  GSList *curview;

  for(curview = window->meta_views; curview; curview = curview->next)
    {
      meta_view = NAUTILUS_VIEW(curview->data);
      if(!strcmp(nautilus_view_get_iid(meta_view), iid))
        break;
    }

  if(!curview)
    {
      meta_view = NAUTILUS_VIEW(gtk_widget_new(nautilus_meta_view_get_type(), "main_window", window, NULL));
      nautilus_window_connect_view(window, meta_view);
      if(!nautilus_view_load_client(meta_view, iid))
	{
	  gtk_widget_destroy(GTK_WIDGET(meta_view));
	  meta_view = NULL;
	}
    }

  if(meta_view)
    {
      gtk_object_ref(GTK_OBJECT(meta_view));

      nautilus_view_set_active_errors(meta_view, TRUE);

      window->load_info->new_meta_views = g_slist_prepend(window->load_info->new_meta_views, meta_view);

      nautilus_window_update_view(window, meta_view, &(loci->navinfo), requesting_view, window->load_info->new_content_view);
    }
}

/* This is called when we have decided we can actually change to the new location. */
static void
nautilus_window_switch_to_new_views(NautilusWindow *window)
{
  GSList *cur, *discard_views;
  
  /* Do lots of shuffling to make sure we don't remove views that were already there, but add new views */
  for(cur = window->load_info->new_meta_views; cur; cur = cur->next)
    {
      if(!GTK_WIDGET(cur->data)->parent)
	nautilus_window_add_meta_view(window, cur->data);
      gtk_object_unref(cur->data);
      /* nautilus_view_set_active_errors(cur->data, FALSE); */
    }
  for(discard_views = NULL, cur = window->meta_views; cur; cur = cur->next)
    if(!g_slist_find(window->load_info->new_meta_views, cur->data))
      discard_views = g_slist_prepend(discard_views, cur->data);
  
  for(cur = discard_views; cur; cur = cur->next)
    nautilus_window_remove_meta_view(window, cur->data);
  g_slist_free(discard_views);

  if(!GTK_WIDGET(window->load_info->new_content_view)->parent)
    nautilus_window_set_content_view(window, window->load_info->new_content_view);
  gtk_object_unref(GTK_OBJECT(window->load_info->new_content_view));
  /* nautilus_view_set_active_errors(window->load_info->new_content_view, FALSE); */
  
  nautilus_window_change_location_internal(window, &window->load_info->ni->navinfo, window->load_info->is_back);
}

/* This is called when we have started switching and discover the the new
   location is no good.
*/
static void
nautilus_window_revert_to_old_views(NautilusWindow *window)
{
  GSList *cur;

  for(cur = window->load_info->new_meta_views; cur; cur = cur->next)
    {
      gtk_widget_unref(cur->data);
      /* nautilus_view_set_active_errors(cur->data, FALSE); */
    }
  if(window->load_info->new_content_view)
    {
      gtk_widget_unref(GTK_WIDGET(window->load_info->new_content_view));
      /* nautilus_view_set_active_errors(window->load_info->new_content_view, FALSE); */
    }
  
  /* Tell previously-notified views to go back to the old page */
  for(cur = window->meta_views; cur; cur = cur->next)
    {
      if(g_slist_find(window->load_info->new_meta_views, cur->data))
	nautilus_window_update_view(window, cur->data, window->ni, NULL, window->content_view);
    }
  if(window->load_info->new_content_view == window->content_view)
    nautilus_window_update_view(window, window->content_view, window->ni, NULL, window->content_view);
  explorer_location_bar_set_uri_string(EXPLORER_LOCATION_BAR(window->ent_uri),
				       window->ni->requested_uri);
}

/* This is called when we are done loading to get rid of the load_info structure. */
static void
nautilus_window_free_load_info(NautilusWindow *window)
{
  if (window->load_info->ni)
    nautilus_navinfo_free(window->load_info->ni);
  g_slist_free(window->load_info->new_meta_views);
  g_free(window->load_info);
  window->load_info = NULL;
}

/* This is called when we want to abort the loading process.
   It was formerly used for successful loading too, but that's handled
   in nautilus_window_advance_state now instead.
*/
void
nautilus_window_end_location_change(NautilusWindow *window)
{
  nautilus_window_allow_stop(window, FALSE);
  
  if (window->load_info != NULL)
    {
      if (window->load_info->state == WAITING_FOR_FIRST_PROGRESS_FROM_CONTENT_VIEW)
	nautilus_window_revert_to_old_views(window);

      nautilus_window_free_load_info(window);
    }
  
  if (window->content_view)
    nautilus_view_stop_location_change (window->content_view);
  
  g_slist_foreach(window->meta_views, (GFunc) nautilus_view_stop_location_change, NULL);
}

/* This is the most complicated routine in Nautilus. Steps include:
   1. Get the information needed to load the URL.
   2. If a load is not possible, fail.
   3. Update the history, UI, and internal state for the proposed change.
   4. Load/notify content view.
   5. Load/notify meta views.
 */

/* Step 2 */
static void
nautilus_window_change_location_2(NautilusNavigationInfo *ni, gpointer data)
{
  GSList *cur, *discard_views;

  NautilusWindow *window = data;

  window->load_info->ni = ni;

  if(!ni)
    {
      nautilus_window_display_error
	(window,
	 _("The chosen hyperlink is invalid, or points to an inaccessible page."));

      nautilus_window_end_location_change(window);

      return;
    }

  if(!ni->default_content_iid)
    {
      nautilus_window_display_error
	(window,
	 _("There is no known method of displaying the selected page."));

      nautilus_window_end_location_change(window);

      return;
    }

  nautilus_window_load_content_view(window, ni->default_content_iid, ni, (NautilusView **)&ni->requesting_view);
  if(!window->load_info->new_content_view)
    {
      nautilus_window_display_error
	(window,
	 _("The software needed to display this page could not be loaded."));

      nautilus_window_end_location_change(window);

      return;
    }

  /* FIXME: notify the index panel of the location change.  Eventually, this will not be necessary
     when we restructure the index panel to be a NautilusView */
  
  nautilus_index_panel_set_uri(window->index_panel, ni->navinfo.requested_uri);
  
  /* Step 5 */

  /* Figure out which meta views are going to go away */
  discard_views = NULL;
  for(cur = window->meta_views; cur; cur = cur->next)
    {
      NautilusView *view = cur->data;

      if(!g_slist_find_custom(ni->meta_iids, view->iid, (GCompareFunc)g_str_equal))
	{
	  if(cur->data == ni->requesting_view)
	    ni->requesting_view = NULL;

	  discard_views = g_slist_prepend(discard_views, view);
	}
    }

  for(cur = ni->meta_iids; cur; cur = cur->next)
    nautilus_window_load_meta_view(window, cur->data, ni, ni->requesting_view);

  for(cur = discard_views; cur; cur = cur->next)
    nautilus_window_remove_meta_view(window, cur->data);
  g_slist_free(discard_views);

  window->load_info->state = WAITING_FOR_FIRST_PROGRESS_FROM_CONTENT_VIEW;
  nautilus_window_advance_state(window);
}

/* Step 1 */
void
nautilus_window_change_location(NautilusWindow *window,
				Nautilus_NavigationRequestInfo *loc,
				NautilusView *requesting_view,
				gboolean is_back)
{
  guint cancel_tag;

  nautilus_window_end_location_change(window); /* End any previous location change that was pending. */

  while (gdk_events_pending())
    gtk_main_iteration();

  nautilus_window_allow_stop(window, TRUE);

  /* Init load_info */
  window->load_info = g_new0(NautilusWindowLoadInfo, 1);
  window->load_info->is_back = is_back;

  cancel_tag =
    nautilus_navinfo_new(loc, window->ni, requesting_view, nautilus_window_change_location_2, window);

  if (window->load_info)
    window->load_info->cancel_tag = cancel_tag;
}