Wed Aug 25 02:40:39 CDT 1999 Shawn T. Amundson <amundson@gimp.org>
* app/image_new.[ch]: Added new files, the UI independant part of
new image dialog.
* app/file_new_dialog.[ch]: uses image_new stuff now. Alot
changed. No UI changed. Different behavior is a bug, as
this is only for UI separation.
* app/gimpimage.[ch]: Added gimp_image_get_width () and
gimp_image_get_height ().
* app/global_edit.c: Call a function in image_new instead of
file_new_dialog for updating the status of the cut buffe.
14 lines
330 B
C
14 lines
330 B
C
#ifndef __FILE_NEW_DIALOG_H__
|
|
#define __FILE_NEW_DIALOG_H__
|
|
|
|
#include "gtk/gtk.h"
|
|
|
|
#include "image_new.h"
|
|
|
|
void file_new_cmd_callback (GtkWidget *widget,
|
|
gpointer callback_data,
|
|
guint callback_action);
|
|
|
|
void ui_new_image_window_create (const GimpImageNewValues *values);
|
|
|
|
#endif /* __FILE_NEW_DIALOG_H_H__ */
|