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

   nautilus-navigation-window-pane.h: Nautilus navigation window pane
 
   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: Holger Berndt <berndth@gmx.de>
*/

#ifndef NAUTILUS_NAVIGATION_WINDOW_PANE_H
#define NAUTILUS_NAVIGATION_WINDOW_PANE_H

#include "nautilus-window-pane.h"
#include "nautilus-navigation-window-slot.h"

#define NAUTILUS_TYPE_NAVIGATION_WINDOW_PANE     (nautilus_navigation_window_pane_get_type())
#define NAUTILUS_NAVIGATION_WINDOW_PANE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), NAUTILUS_TYPE_NAVIGATION_WINDOW_PANE, NautilusNavigationWindowPaneClass))
#define NAUTILUS_NAVIGATION_WINDOW_PANE(obj)     (G_TYPE_CHECK_INSTANCE_CAST ((obj), NAUTILUS_TYPE_NAVIGATION_WINDOW_PANE, NautilusNavigationWindowPane))
#define NAUTILUS_IS_NAVIGATION_WINDOW_PANE(obj)  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NAUTILUS_TYPE_NAVIGATION_WINDOW_PANE))
#define NAUTILUS_IS_NAVIGATION_WINDOW_PANE_CLASS(k)  (G_TYPE_CHECK_CLASS_TYPE ((k), NAUTILUS_TYPE_NAVIGATION_WINDOW_PANE))
#define NAUTILUS_NAVIGATION_WINDOW_PANE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), NAUTILUS_TYPE_NAVIGATION_WINDOW_PANE, NautilusNavigationWindowPaneClass))

typedef struct _NautilusNavigationWindowPaneClass NautilusNavigationWindowPaneClass;
typedef struct _NautilusNavigationWindowPane      NautilusNavigationWindowPane;

#include "nautilus-toolbar.h"

struct _NautilusNavigationWindowPaneClass {
	NautilusWindowPaneClass parent_class;
};

struct _NautilusNavigationWindowPane {
	NautilusWindowPane parent;

	GtkWidget *widget;

	/* location bar */
	GtkWidget *location_bar;
	GtkWidget *path_bar;
	GtkWidget *search_bar;
	GtkWidget *tool_bar;

	gboolean temporary_navigation_bar;
	gboolean temporary_search_bar;

	/* notebook */
	GtkWidget *notebook;

	/* split view */
	GtkWidget *split_view_hpane;
};

#include "nautilus-toolbar.h"

GType    nautilus_navigation_window_pane_get_type (void);

NautilusNavigationWindowPane* nautilus_navigation_window_pane_new (NautilusWindow *window);

/* bars */
void     nautilus_navigation_window_pane_ensure_location_bar (NautilusNavigationWindowPane *pane);
void     nautilus_navigation_window_pane_ensure_search_bar (NautilusNavigationWindowPane *pane);
void      nautilus_navigation_window_pane_hide_search_bar (NautilusNavigationWindowPane *pane);

/* notebook */
void     nautilus_navigation_window_pane_add_slot_in_tab (NautilusNavigationWindowPane *pane, NautilusWindowSlot *slot, NautilusWindowOpenSlotFlags flags);
void     nautilus_navigation_window_pane_remove_page (NautilusNavigationWindowPane *pane, int page_num);

#endif /* NAUTILUS_NAVIGATION_WINDOW_PANE_H */