forked from geany/geany
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsidebar.h
104 lines (76 loc) · 2.39 KB
/
sidebar.h
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
/*
* sidebar.h - this file is part of Geany, a fast and lightweight IDE
*
* Copyright 2005 The Geany contributors
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef GEANY_SIDEBAR_H
#define GEANY_SIDEBAR_H 1
#include "document.h"
#include "gtkcompat.h"
#ifdef GEANY_PRIVATE
G_BEGIN_DECLS
typedef struct SidebarTreeviews
{
GtkWidget *tree_openfiles;
GtkWidget *default_tag_tree;
GtkWidget *popup_taglist;
}
SidebarTreeviews;
extern SidebarTreeviews tv;
enum
{
SYMBOLS_COLUMN_ICON,
SYMBOLS_COLUMN_NAME,
SYMBOLS_COLUMN_TAG,
SYMBOLS_COLUMN_TOOLTIP,
SYMBOLS_N_COLUMNS
};
enum
{
OPENFILES_PATHS_NONE,
OPENFILES_PATHS_LIST,
OPENFILES_PATHS_TREE,
OPENFILES_PATHS_COUNT
};
/* documents tree model columns */
enum
{
DOCUMENTS_ICON,
DOCUMENTS_SHORTNAME, /* dirname for parents, basename for children */
DOCUMENTS_DOCUMENT,
DOCUMENTS_COLOR,
DOCUMENTS_FILENAME, /* full filename */
DOCUMENTS_FOLD, /* fold state stored when folding parent rows */
DOCUMENTS_VISIBLE,
DOCUMENTS_COLUMNS_NUM
};
void sidebar_init(void);
void sidebar_finalize(void);
void sidebar_update_tag_list(GeanyDocument *doc, gboolean update);
void sidebar_openfiles_add(GeanyDocument *doc);
void sidebar_openfiles_update(GeanyDocument *doc);
void sidebar_openfiles_update_all(void);
void sidebar_openfiles_set_filter(const gchar *filter);
void sidebar_select_openfiles_item(GeanyDocument *doc);
void sidebar_remove_document(GeanyDocument *doc);
void sidebar_add_common_menu_items(GtkMenu *menu);
void sidebar_focus_openfiles_tab(void);
void sidebar_focus_symbols_tab(void);
GtkTreeStore *sidebar_create_store_openfiles(void);
#endif
G_END_DECLS
#endif /* GEANY_SIDEBAR_H */