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 67 68 69 70 71 72 73 74 75
|
/*
* gretl -- Gnu Regression, Econometrics and Time-series Library
* Copyright (C) 2001 Allin Cottrell and Riccardo "Jack" Lucchetti
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef GUI_UTILS_H
#define GUI_UTILS_H
#ifdef G_OS_WIN33
#define IS_SLASH(c) (c == '\\' || c == '/')
#else
#define IS_SLASH(c) (c == '/')
#endif
int latex_is_ok (void);
void mark_dataset_as_modified (void);
void register_data (int flags);
void register_startup_data (const char *fname);
gboolean do_open_data (windata_t *vwin, int code);
gboolean verify_open_data (windata_t *vwin, int code);
gboolean verify_open_session (void);
windata_t *console_window (int hsize, int vsize);
windata_t *view_model (PRN *prn, MODEL *pmod, char *title);
int gui_validate_varname_strict (const char *name, GretlType type,
GtkWidget *parent);
int gui_validate_varname (const char *varname, GretlType type,
GtkWidget *parent);
int gui_validate_varname_easy (const char *varname, GretlType type);
gretlopt get_tex_eqn_opt (void);
gint popup_menu_handler (GtkWidget *widget, GdkEventButton *event,
gpointer data);
void add_popup_item (const gchar *label, GtkWidget *menu,
GCallback callback, gpointer data);
void add_system_ui_to_vwin (windata_t *vwin);
GtkWidget *make_bundle_content_menu (windata_t *vwin);
GtkWidget *make_bundle_plot_menu (windata_t *vwin);
GtkWidget *make_bundle_save_menu (windata_t *vwin);
void save_bundled_item_call (GtkAction *action, gpointer p);
int get_imported_data (char *fname, int ftype, int append);
#endif /* GUI_UTILS_H */
|