~ubuntu-branches/ubuntu/raring/geany/raring-proposed

« back to all changes in this revision

Viewing changes to src/geanyobject.h

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2011-12-10 07:43:26 UTC
  • mfrom: (3.3.7 sid)
  • Revision ID: package-import@ubuntu.com-20111210074326-s8yqbew5i20h33tf
Tags: 0.21-1ubuntu1
* Merge from Debian Unstable, remaining changes:
  - debian/patches/20_use_evince_viewer.patch:
     + use evince as viewer for pdf and dvi files
  - debian/patches/20_use_x_terminal_emulator.patch:
     + use x-terminal-emulator as terminal
  - debian/control
     + Add breaks on geany-plugins-common << 0.20
* Also fixes bugs:
  - Filter for MATLAB/Octave files filters everythign (LP: 885505)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *      geanyobject.h - this file is part of Geany, a fast and lightweight IDE
3
3
 *
4
 
 *      Copyright 2007-2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5
 
 *      Copyright 2007-2010 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
 
4
 *      Copyright 2007-2011 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
 
5
 *      Copyright 2007-2011 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
6
6
 *
7
7
 *      This program is free software; you can redistribute it and/or modify
8
8
 *      it under the terms of the GNU General Public License as published by
19
19
 *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
20
 *      MA 02110-1301, USA.
21
21
 *
22
 
 * $Id: geanyobject.h 5235 2010-09-16 15:14:09Z ntrel $
 
22
 * $Id: geanyobject.h 5703 2011-04-10 13:53:05Z eht16 $
23
23
 */
24
24
 
25
25
 
34
34
{
35
35
        GCB_DOCUMENT_NEW,
36
36
        GCB_DOCUMENT_OPEN,
 
37
        GCB_DOCUMENT_RELOAD,
37
38
        GCB_DOCUMENT_BEFORE_SAVE,
38
39
        GCB_DOCUMENT_SAVE,
39
40
        GCB_DOCUMENT_FILETYPE_SET,
82
83
 
83
84
        void (*document_new)(GeanyDocument *doc);
84
85
        void (*document_open)(GeanyDocument *doc);
 
86
        void (*document_reload)(GeanyDocument *doc);
85
87
        void (*document_before_save)(GeanyDocument *doc);
86
88
        void (*document_save)(GeanyDocument *doc);
87
89
        void (*document_filetype_set)(GeanyDocument *doc, GeanyFiletype *filetype_old);