~ubuntu-branches/ubuntu/jaunty/geany/jaunty

« back to all changes in this revision

Viewing changes to src/msgwindow.h

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2007-02-25 21:12:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070225211213-jk4d4vxtgji0rj74
Tags: 0.10.2-0ubuntu1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 *      msgwindow.h - this file is part of Geany, a fast and lightweight IDE
3
3
 *
4
 
 *      Copyright 2005 Enrico Troeger <enrico.troeger@uvena.de>
 
4
 *      Copyright 2005-2007 Enrico Tröger <enrico.troeger@uvena.de>
 
5
 *      Copyright 2006-2007 Nick Treleaven <nick.treleaven@btinternet.com>
5
6
 *
6
7
 *      This program is free software; you can redistribute it and/or modify
7
8
 *      it under the terms of the GNU General Public License as published by
17
18
 *      along with this program; if not, write to the Free Software
18
19
 *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20
 *
20
 
 * $Id: msgwindow.h 1090 2006-12-13 16:41:25Z ntrel $
 
21
 * $Id: msgwindow.h 1269 2007-02-12 17:21:57Z eht16 $
21
22
 */
22
23
 
23
24
 
70
71
 
71
72
void msgwin_msg_add(gint line, gint idx, const gchar *string);
72
73
 
73
 
void msgwin_compiler_add(gint msg_color, const gchar *format, ...)
74
 
                G_GNUC_PRINTF (2, 3);
 
74
void msgwin_compiler_add_fmt(gint msg_color, const gchar *format, ...) G_GNUC_PRINTF (2, 3);
 
75
 
 
76
void msgwin_compiler_add(gint msg_color, const gchar *msg);
75
77
 
76
78
void msgwin_status_add(const gchar *format, ...) G_GNUC_PRINTF (1, 2);
77
79