GnuCash c935c2f+
Loading...
Searching...
No Matches
gnc-gwen-gui.h
Go to the documentation of this file.
1/*
2 * gnc-gwen-gui.h --
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of
7 * the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, contact:
16 *
17 * Free Software Foundation Voice: +1-617-542-5942
18 * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652
19 * Boston, MA 02110-1301, USA gnu@gnu.org
20 */
21
33#ifndef GNC_GWEN_GUI_H
34#define GNC_GWEN_GUI_H
35
36#include <gtk/gtk.h>
37
38G_BEGIN_DECLS
39
40typedef struct _GncGWENGui GncGWENGui;
41
48void gnc_GWEN_Gui_log_init(void);
49
60GncGWENGui *gnc_GWEN_Gui_get(GtkWidget *parent);
61
68void gnc_GWEN_Gui_release(GncGWENGui *gui);
69
73void gnc_GWEN_Gui_shutdown(void);
74
80void gnc_GWEN_Gui_set_close_flag(gboolean close_when_finished);
81
87gboolean gnc_GWEN_Gui_get_close_flag(void);
88
94gboolean gnc_GWEN_Gui_show_dialog(void);
95
100void gnc_GWEN_Gui_hide_dialog(void);
101
102G_END_DECLS
103
107#endif /* GNC_GWEN_GUI_H */
gboolean gnc_GWEN_Gui_show_dialog(void)
Unhides Online Banking Connection Window (Make log visible)
void gnc_GWEN_Gui_set_close_flag(gboolean close_when_finished)
Set "Close when finished" flag.
GncGWENGui * gnc_GWEN_Gui_get(GtkWidget *parent)
When called for the first time, create a unique GncGWENGui object featuring a GWEN_GUI with all neces...
void gnc_GWEN_Gui_log_init(void)
Hook our logging into the gwenhywfar logging framework by creating a minimalistic GWEN_GUI with only ...
void gnc_GWEN_Gui_hide_dialog(void)
Hides Online Banking Connection Window (Close log window)
void gnc_GWEN_Gui_release(GncGWENGui *gui)
Currently a no-op.
gboolean gnc_GWEN_Gui_get_close_flag(void)
Get "Close when finished" flag.
void gnc_GWEN_Gui_shutdown(void)
Free all memory related to both the full-blown and minimalistic GUI objects.