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

« back to all changes in this revision

Viewing changes to src/dialogs.h

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2009-05-29 21:22:54 UTC
  • mfrom: (1.3.1 upstream) (3.1.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 20.
  • Revision ID: james.westby@ubuntu.com-20090529212254-cx6t2a7itgii3p5f
Tags: 0.17-1
* New upstream release
* 20_add_debdiff_as_diff_type.dpatch renamed as
  20_add_debian_specific_filetypes.dpatch, 
  - add .dpatch as a diff filetype
  - add control as a conf filetype
* 20_change_gpl_location.dpatch freshen
* add 20_debian_control_tags.dpatch better handling of debian/control files.
  Thanks to Enrico Tröger. (Closes: #520776)
* debian/copyright Add Frank Lanitz, update years

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *      dialogs.h - this file is part of Geany, a fast and lightweight IDE
3
3
 *
4
 
 *      Copyright 2005-2008 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
5
 
 *      Copyright 2006-2008 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
 
4
 *      Copyright 2005-2009 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
 
5
 *      Copyright 2006-2009 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
18
18
 *      along with this program; if not, write to the Free Software
19
19
 *      Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
20
 *
21
 
 * $Id: dialogs.h 2267 2008-02-20 11:24:23Z eht16 $
 
21
 * $Id: dialogs.h 3446 2009-01-04 18:30:42Z eht16 $
22
22
 */
23
23
 
24
24
/**
37
37
 
38
38
gboolean dialogs_show_save_as(void);
39
39
 
40
 
gboolean dialogs_show_unsaved_file(gint idx);
 
40
gboolean dialogs_show_unsaved_file(GeanyDocument *doc);
41
41
 
42
42
void dialogs_show_open_font(void);
43
43
 
48
48
GtkWidget *dialogs_show_input(const gchar *title, const gchar *label_text,
49
49
        const gchar *default_text, gboolean persistent, InputCallback input_cb);
50
50
 
51
 
void dialogs_show_goto_line(void);
 
51
gboolean dialogs_show_input_numeric(const gchar *title, const gchar *label_text,
 
52
                                                                        gdouble *value, gdouble min, gdouble max, gdouble step);
52
53
 
53
 
void dialogs_show_file_properties(gint idx);
 
54
void dialogs_show_file_properties(GeanyDocument *doc);
54
55
 
55
56
gboolean dialogs_show_question(const gchar *text, ...) G_GNUC_PRINTF (1, 2);
56
57