~ubuntu-branches/debian/experimental/geany/experimental

« back to all changes in this revision

Viewing changes to src/navqueue.h

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2008-05-02 11:37:45 UTC
  • mfrom: (1.2.1 upstream) (3.1.6 hardy)
  • Revision ID: james.westby@ubuntu.com-20080502113745-xzp4g6dmovrpoj17
Tags: 0.14-1
New upstream release (Closes: #478126)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *      navqueue.h - this file is part of Geany, a fast and lightweight IDE
 
3
 *
 
4
 *      Copyright 2007 Dave Moore <wrex006(at)gmail(dot)com>
 
5
 *      Copyright 2007-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
 
6
 *      Copyright 2007-2008 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
 
7
 *
 
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.
 
12
 *
 
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.
 
17
 *
 
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.
 
21
 *
 
22
 * $Id: navqueue.h 2505 2008-04-19 08:14:00Z eht16 $
 
23
 */
 
24
 
 
25
/**
 
26
 *  @file navqueue.h
 
27
 * Simple code navigation
 
28
 **/
 
29
 
 
30
 
 
31
#ifndef GEANY_NAVQUEUE_H
 
32
#define GEANY_NAVQUEUE_H 1
 
33
 
 
34
 
 
35
void navqueue_init(void);
 
36
 
 
37
void navqueue_free(void);
 
38
 
 
39
void navqueue_remove_file(const gchar *filename);
 
40
 
 
41
 
 
42
gboolean navqueue_goto_line(gint old_idx, gint new_idx, gint line);
 
43
 
 
44
void navqueue_go_back(void);
 
45
 
 
46
void navqueue_go_forward(void);
 
47
 
 
48
 
 
49
#endif