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

« back to all changes in this revision

Viewing changes to src/stash.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
 *        stash.h - this file is part of Geany, a fast and lightweight IDE
3
3
 *
4
 
 *        Copyright 2008-2010 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
5
 
 *        Copyright 2008-2010 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
 
4
 *        Copyright 2008-2011 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
 
5
 *        Copyright 2008-2011 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
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: stash.h 4795 2010-03-31 16:21:28Z ntrel $
 
22
 * $Id: stash.h 5942 2011-09-21 15:50:36Z ntrel $
23
23
 */
24
24
 
25
25
#ifndef GEANY_STASH_H
30
30
 
31
31
/** Can be @c GtkWidget* or @c gchar* depending on whether the @a owner argument is used for
32
32
 * stash_group_display() and stash_group_update(). */
33
 
typedef gpointer StashWidgetID;
 
33
typedef gconstpointer StashWidgetID;
34
34
 
35
35
 
36
36
StashGroup *stash_group_new(const gchar *name);
37
37
 
38
 
void stash_group_set_write_once(StashGroup *group, gboolean write_once);
 
38
void stash_group_set_various(StashGroup *group, gboolean write_once);
39
39
 
40
40
void stash_group_set_use_defaults(StashGroup *group, gboolean use_defaults);
41
41
 
92
92
 
93
93
void stash_group_update(StashGroup *group, GtkWidget *owner);
94
94
 
 
95
void stash_tree_setup(GPtrArray *group_array, GtkTreeView *tree);
 
96
 
 
97
void stash_tree_display(GPtrArray *group_array, GtkTreeView *tree);
 
98
 
 
99
void stash_tree_update(GPtrArray *group_array, GtkTreeView *tree);
 
100
 
95
101
#endif