geany  1.38
About: Geany is a text editor (using GTK2) with basic features of an integrated development environment (syntax highlighting, code folding, symbol name auto-completion, ...). F: office T: editor programming GTK+ IDE
  Fossies Dox: geany-1.38.tar.bz2  ("unofficial" and yet experimental doxygen-generated source code documentation)  

sidebar.h
Go to the documentation of this file.
1/*
2 * sidebar.h - this file is part of Geany, a fast and lightweight IDE
3 *
4 * Copyright 2005 The Geany contributors
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 */
20
21
22
23#ifndef GEANY_SIDEBAR_H
24#define GEANY_SIDEBAR_H 1
25
26#include "document.h"
27
28#include "gtkcompat.h"
29
30G_BEGIN_DECLS
31
32typedef struct SidebarTreeviews
33{
34 GtkWidget *tree_openfiles;
35 GtkWidget *default_tag_tree;
36 GtkWidget *popup_taglist;
37}
39
40extern SidebarTreeviews tv;
41
42enum
43{
49};
50
51void sidebar_init(void);
52
53void sidebar_finalize(void);
54
55void sidebar_update_tag_list(GeanyDocument *doc, gboolean update);
56
58
60
62
64
66
67void sidebar_add_common_menu_items(GtkMenu *menu);
68
70
72
73G_END_DECLS
74
75#endif /* GEANY_SIDEBAR_H */
Document related actions: new, save, open, etc.
void sidebar_finalize(void)
Definition: sidebar.c:1115
void sidebar_add_common_menu_items(GtkMenu *menu)
Definition: sidebar.c:591
void sidebar_focus_openfiles_tab(void)
Definition: sidebar.c:1129
SidebarTreeviews tv
Definition: sidebar.c:50
void sidebar_focus_symbols_tab(void)
Definition: sidebar.c:1141
void sidebar_remove_document(GeanyDocument *doc)
Definition: sidebar.c:554
@ SYMBOLS_COLUMN_TAG
Definition: sidebar.h:46
@ SYMBOLS_COLUMN_ICON
Definition: sidebar.h:44
@ SYMBOLS_COLUMN_TOOLTIP
Definition: sidebar.h:47
@ SYMBOLS_N_COLUMNS
Definition: sidebar.h:48
@ SYMBOLS_COLUMN_NAME
Definition: sidebar.h:45
void sidebar_openfiles_update_all(void)
Definition: sidebar.c:542
struct SidebarTreeviews SidebarTreeviews
void sidebar_openfiles_update(GeanyDocument *doc)
Definition: sidebar.c:507
void sidebar_select_openfiles_item(GeanyDocument *doc)
Definition: sidebar.c:790
void sidebar_init(void)
Definition: sidebar.c:1085
void sidebar_openfiles_add(GeanyDocument *doc)
Definition: sidebar.c:462
void sidebar_update_tag_list(GeanyDocument *doc, gboolean update)
Definition: sidebar.c:188
Structure for representing an open tab with all its properties.
Definition: document.h:81
GtkWidget * tree_openfiles
Definition: sidebar.h:34
GtkWidget * default_tag_tree
Definition: sidebar.h:35
GtkWidget * popup_taglist
Definition: sidebar.h:36