added stock-id parameters to all statusbar setters.
2008-04-14 Sven Neumann <sven@gimp.org> * app/display/gimpstatusbar.[ch]: added stock-id parameters to all statusbar setters. * app/display/gimpdisplayshell-title.c: pass NULL as stock-id. * app/tools/gimptool.c: pass the tool icon to the statusbar. * app/tools/gimpeditselectiontool.c (gimp_edit_selection_tool_start): inherit the tool-info from the parent tool. svn path=/trunk/; revision=25477
This commit is contained in:

committed by
Sven Neumann

parent
9db8d2ef35
commit
e7c5bf8086
@ -82,14 +82,17 @@ void gimp_statusbar_fill (GimpStatusbar *statusbar);
|
||||
|
||||
void gimp_statusbar_push (GimpStatusbar *statusbar,
|
||||
const gchar *context,
|
||||
const gchar *stock_id,
|
||||
const gchar *format,
|
||||
...) G_GNUC_PRINTF(3,4);
|
||||
...) G_GNUC_PRINTF(4,5);
|
||||
void gimp_statusbar_push_valist (GimpStatusbar *statusbar,
|
||||
const gchar *context,
|
||||
const gchar *stock_id,
|
||||
const gchar *format,
|
||||
va_list args);
|
||||
void gimp_statusbar_push_coords (GimpStatusbar *statusbar,
|
||||
const gchar *context,
|
||||
const gchar *stock_id,
|
||||
const gchar *title,
|
||||
gdouble x,
|
||||
const gchar *separator,
|
||||
@ -97,16 +100,19 @@ void gimp_statusbar_push_coords (GimpStatusbar *statusbar,
|
||||
const gchar *help);
|
||||
void gimp_statusbar_push_length (GimpStatusbar *statusbar,
|
||||
const gchar *context,
|
||||
const gchar *stock_id,
|
||||
const gchar *title,
|
||||
GimpOrientationType axis,
|
||||
gdouble value,
|
||||
const gchar *help);
|
||||
void gimp_statusbar_replace (GimpStatusbar *statusbar,
|
||||
const gchar *context,
|
||||
const gchar *stock_id,
|
||||
const gchar *format,
|
||||
...) G_GNUC_PRINTF(3,4);
|
||||
...) G_GNUC_PRINTF(4,5);
|
||||
void gimp_statusbar_replace_valist (GimpStatusbar *statusbar,
|
||||
const gchar *context,
|
||||
const gchar *stock_id,
|
||||
const gchar *format,
|
||||
va_list args);
|
||||
const gchar * gimp_statusbar_peek (GimpStatusbar *statusbar,
|
||||
|
Reference in New Issue
Block a user