2006-10-02 11:31:54 +00:00
|
|
|
/*
|
|
|
|
* symbols.h - this file is part of Geany, a fast and lightweight IDE
|
|
|
|
*
|
2008-01-06 18:11:57 +00:00
|
|
|
* Copyright 2006-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
|
|
|
|
* Copyright 2006-2008 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
|
2006-10-02 11:31:54 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GEANY_SYMBOLS_H
|
|
|
|
#define GEANY_SYMBOLS_H 1
|
|
|
|
|
2006-12-16 17:18:53 +00:00
|
|
|
extern const guint TM_GLOBAL_TYPE_MASK;
|
|
|
|
|
|
|
|
|
2006-10-02 11:31:54 +00:00
|
|
|
void symbols_global_tags_loaded(gint file_type_idx);
|
|
|
|
|
2007-10-09 12:04:15 +00:00
|
|
|
GString *symbols_find_tags_as_string(GPtrArray *tags_array, guint tag_types, gint lang);
|
2006-11-08 11:42:05 +00:00
|
|
|
|
2007-08-15 15:37:21 +00:00
|
|
|
const gchar *symbols_get_context_separator(gint ft_id);
|
2007-01-12 12:33:17 +00:00
|
|
|
|
2006-11-08 11:42:05 +00:00
|
|
|
const GList *symbols_get_tag_list(gint idx, guint tag_types);
|
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
GString *symbols_get_macro_list(void);
|
2006-11-08 11:42:05 +00:00
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
const gchar **symbols_get_html_entities(void);
|
2006-12-15 17:09:05 +00:00
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
void symbols_finalize(void);
|
2006-12-15 17:09:05 +00:00
|
|
|
|
2007-08-15 17:58:58 +00:00
|
|
|
gboolean symbols_recreate_tag_list(gint idx, gboolean sort_by_name);
|
2007-01-13 13:25:05 +00:00
|
|
|
|
2007-09-28 11:48:55 +00:00
|
|
|
gint symbols_generate_global_tags(gint argc, gchar **argv, gboolean want_preprocess);
|
2007-03-21 13:26:16 +00:00
|
|
|
|
2008-02-20 11:24:23 +00:00
|
|
|
void symbols_show_load_tags_dialog(void);
|
2007-04-18 15:21:33 +00:00
|
|
|
|
2007-09-25 12:39:41 +00:00
|
|
|
gboolean symbols_goto_tag(const gchar *name, gboolean definition);
|
|
|
|
|
2006-10-02 11:31:54 +00:00
|
|
|
#endif
|