Fix indenting a snippet when there is whitespace after the
[geany-mirror.git] / src / navqueue.h
blob027ce1fb58ee2996ca24ba354fc8b47ba46c051b
1 /*
2 * navqueue.h - this file is part of Geany, a fast and lightweight IDE
4 * Copyright 2007 Dave Moore <wrex006(at)gmail(dot)com>
5 * Copyright 2007-2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
6 * Copyright 2007-2010 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
22 * $Id$
25 /**
26 * @file navqueue.h
27 * Simple code navigation
28 **/
31 #ifndef GEANY_NAVQUEUE_H
32 #define GEANY_NAVQUEUE_H 1
35 void navqueue_init(void);
37 void navqueue_free(void);
39 void navqueue_remove_file(const gchar *filename);
42 gboolean navqueue_goto_line(GeanyDocument *old_doc, GeanyDocument *new_doc, gint line);
44 void navqueue_go_back(void);
46 void navqueue_go_forward(void);
49 #endif