1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
/* The GIMP -- an image manipulation program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/*
gap_dbbrowser_utils.h (original code dbbrowser_utils.h by Thomas NOEL <thomas@minet.net>
09. dec .1998 hof: update for GIMP 1.1
20. dec .1997 hof: GAP variant of DBbrowser
removed apply_callback
added constraint_procedure,
added 2 buttons
added return type
0.08 26th sept 97 by Thomas NOEL <thomas@minet.net>
*/
#ifndef _GAP_DB_BROWSER_UTILS_H
#define _GAP_DB_BROWSER_UTILS_H
#include "libgimp/gimp.h"
typedef struct {
char selected_proc_name[256];
int button_nr; /* -1 on cancel, 0 .. n */
} GapDbBrowserResult;
/* proc to check if to add or not to add the procedure to the browsers listbox
* retcode:
* 0 ... do not add
* 1 ... add the procedure to the browsers listbox
*/
typedef int (*t_constraint_func) (gchar *proc_name, gint32 image_id);
int
gap_db_browser_dialog (char *title_txt,
char *button_1_txt,
char *button_2_txt,
t_constraint_func constraint_func,
t_constraint_func constraint_func_sel1,
t_constraint_func constraint_func_sel2,
GapDbBrowserResult *result,
gint32 image_id,
const char *help_id
);
gchar*
gap_db_get_plugin_menupath (const gchar *name);
#endif
|