/* * Copyright (c) by Allin Cottrell * * 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., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #ifndef DLGUTILS_H #define DLGUTILS_H enum { GRETL_DLG_MODAL = 1 << 0, GRETL_DLG_BLOCK = 1 << 1, GRETL_DLG_RESIZE = 1 << 2 }; GtkWidget *gretl_dialog_new (const char *title, GtkWidget *parent, unsigned char flags); int maybe_raise_dialog (void); void vbox_add_hsep (GtkWidget *vbox); GtkWidget *context_help_button (GtkWidget *hbox, int cmdcode); GtkWidget *cancel_delete_button (GtkWidget *hbox, GtkWidget *targ, int *canceled); GtkWidget *cancel_options_button (GtkWidget *hbox, GtkWidget *targ, int *opt); GtkWidget *cancel_button (GtkWidget *hbox); GtkWidget *ok_button (GtkWidget *hbox); GtkWidget *apply_button (GtkWidget *hbox); GtkWidget *next_button (GtkWidget *hbox); GtkWidget *back_button (GtkWidget *hbox); void edit_dialog (const char *title, const char *info, const char *deflt, void (*okfunc)(), void *okptr, guint hlpcode, guint varclick, int *canceled); const gchar *edit_dialog_get_text (dialog_t *dlg); gchar *edit_dialog_special_get_text (dialog_t *dlg); int edit_dialog_get_action (const dialog_t *dlg); gretlopt edit_dialog_get_opt (const dialog_t *dlg); gpointer edit_dialog_get_data (dialog_t *dlg); void close_dialog (dialog_t *dlg); char *entry_box_get_trimmed_text (GtkWidget *w); #endif /* DLGUTILS_H */