home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2002 April / pcpro0402.iso / essentials / graphics / Gimp / gimp-src-20001226.exe / src / gimp / plug-ins / FractalExplorer / Dialogs.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-01-30  |  1.1 KB  |  30 lines

  1. #ifndef __FRACTALEXPLORER_DIALOGS_H__
  2. #define __FRACTALEXPLORER_DIALOGS_H__
  3.  
  4. gint        explorer_dialog            (void);
  5. void        dialog_update_preview      (void);
  6.  
  7. void        set_cmap_preview           (void);
  8. void        make_color_map             (void);
  9.  
  10. void        dialog_change_scale        (void);
  11. void        save_options               (FILE               *fp);
  12. void        save_callback              (void);
  13. void        file_selection_ok          (GtkWidget          *widget,
  14.                     GtkFileSelection   *fs,
  15.                     gpointer            data);
  16. void        load_file_selection_ok     (GtkWidget          *widget,
  17.                     GtkFileSelection   *fs,
  18.                     gpointer            data);
  19. void        create_load_file_selection (void);
  20. void        create_file_selection      (void);
  21. gchar     * get_line                   (gchar              *buf,
  22.                     gint                s,
  23.                     FILE               *from,
  24.                     gint                init);
  25. gint        load_options               (fractalexplorerOBJ *xxx,
  26.                     FILE               *fp);
  27. void        explorer_load              (void);
  28.  
  29. #endif
  30.