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 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
/*
* 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 WINSTACK_H_
#define WINSTACK_H_
void window_list_add (GtkWidget *w, int role);
void window_list_popup (GtkWidget *src, GdkEvent *event,
gpointer data);
void vwin_winlist_popup (GtkWidget *src, GdkEvent *event,
windata_t *vwin);
void vwin_record_toolbar_popup (windata_t *vwin,
GtkWidget *menu);
void vwin_free_toolbar_popups (windata_t *vwin);
gboolean window_list_exit_check (void);
windata_t *get_editor_for_file (const char *filename);
windata_t *get_browser_for_database (const char *filename);
windata_t *get_browser_for_gretl_database (const char *filename);
windata_t *get_browser_for_role (int role);
windata_t *get_viewer_for_data (const gpointer data);
GtkWidget *get_window_for_data (const gpointer data);
GtkWidget *get_window_for_plot (void *session_plot);
gboolean package_being_edited (const char *pkgname);
int get_script_output_number (void);
windata_t *get_unique_output_viewer (void);
void maybe_close_window_for_user_var (const gpointer data,
GretlObjType otype);
void close_session_windows (gretlopt opt);
void cascade_session_windows (void);
void vwin_add_winlist (windata_t *vwin);
void window_add_winlist (GtkWidget *window, GtkWidget *hbox);
windata_t *vwin_new (int role, gpointer data);
int highest_numbered_variable_in_winstack (void);
GList *windowed_model_list (void);
windata_t *gretl_viewer_new (int role, const gchar *title,
gpointer data);
windata_t *
gretl_viewer_new_with_parent (windata_t *parent, int role,
const gchar *title,
gpointer data);
windata_t *gretl_browser_new (int role, const gchar *title);
GtkWidget *vwin_toplevel (windata_t *vwin);
void vwin_pack_toolbar (windata_t *vwin);
void vwin_reinstate_toolbar (windata_t *vwin);
void gretl_viewer_present (windata_t *vwin);
void gretl_viewer_destroy (windata_t *vwin);
void gretl_viewer_set_title (windata_t *vwin, const char *title);
#endif
|