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
|
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*-
caja-window-pane.h: Caja 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 CAJA_WINDOW_PANE_H
#define CAJA_WINDOW_PANE_H
#include "caja-window.h"
#define CAJA_TYPE_WINDOW_PANE (caja_window_pane_get_type())
#define CAJA_WINDOW_PANE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), CAJA_TYPE_WINDOW_PANE, CajaWindowPaneClass))
#define CAJA_WINDOW_PANE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), CAJA_TYPE_WINDOW_PANE, CajaWindowPane))
#define CAJA_IS_WINDOW_PANE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CAJA_TYPE_WINDOW_PANE))
#define CAJA_IS_WINDOW_PANE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), CAJA_TYPE_WINDOW_PANE))
#define CAJA_WINDOW_PANE_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), CAJA_TYPE_WINDOW_PANE, CajaWindowPaneClass))
typedef struct _CajaWindowPaneClass CajaWindowPaneClass;
struct _CajaWindowPaneClass
{
GObjectClass parent_class;
void (*show) (CajaWindowPane *pane);
void (*set_active) (CajaWindowPane *pane,
gboolean is_active);
void (*sync_search_widgets) (CajaWindowPane *pane);
void (*sync_location_widgets) (CajaWindowPane *pane);
};
/* A CajaWindowPane is a layer between a slot and a window.
* Each slot is contained in one pane, and each pane can contain
* one or more slots. It also supports the notion of an "active slot".
* On the other hand, each pane is contained in a window, while each
* window can contain one or multiple panes. Likewise, the window has
* the notion of an "active pane".
*
* A spatial window has only one pane, which contains a single slot.
* A navigation window may have one or more panes.
*/
struct _CajaWindowPane
{
GObject parent;
/* hosting window */
CajaWindow *window;
gboolean visible;
/* available slots, and active slot.
* Both of them may never be NULL. */
GList *slots;
GList *active_slots;
CajaWindowSlot *active_slot;
/* whether or not this pane is active */
gboolean is_active;
};
GType caja_window_pane_get_type (void);
CajaWindowPane *caja_window_pane_new (CajaWindow *window);
void caja_window_pane_show (CajaWindowPane *pane);
void caja_window_pane_zoom_in (CajaWindowPane *pane);
void caja_window_pane_zoom_to_level (CajaWindowPane *pane, CajaZoomLevel level);
void caja_window_pane_zoom_out (CajaWindowPane *pane);
void caja_window_pane_zoom_to_default (CajaWindowPane *pane);
void caja_window_pane_sync_location_widgets (CajaWindowPane *pane);
void caja_window_pane_sync_search_widgets (CajaWindowPane *pane);
void caja_window_pane_set_active (CajaWindowPane *pane, gboolean is_active);
void caja_window_pane_slot_close (CajaWindowPane *pane, CajaWindowSlot *slot);
CajaWindowSlot* caja_window_pane_get_slot_for_content_box (CajaWindowPane *pane, GtkWidget *content_box);
void caja_window_pane_switch_to (CajaWindowPane *pane);
void caja_window_pane_grab_focus (CajaWindowPane *pane);
#endif /* CAJA_WINDOW_PANE_H */
|