GnuCash  5.6-150-g038405b370+
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 
38 G_BEGIN_DECLS
39 
40 typedef struct _GncGWENGui GncGWENGui;
41 
48 void gnc_GWEN_Gui_log_init(void);
49 
60 GncGWENGui *gnc_GWEN_Gui_get(GtkWidget *parent);
61 
68 void gnc_GWEN_Gui_release(GncGWENGui *gui);
69 
73 void gnc_GWEN_Gui_shutdown(void);
74 
80 void gnc_GWEN_Gui_set_close_flag(gboolean close_when_finished);
81 
87 gboolean gnc_GWEN_Gui_get_close_flag(void);
88 
94 gboolean gnc_GWEN_Gui_show_dialog(void);
95 
100 void gnc_GWEN_Gui_hide_dialog(void);
101 
102 G_END_DECLS
103 
107 #endif /* GNC_GWEN_GUI_H */
gboolean gnc_GWEN_Gui_show_dialog(void)
Unhides Online Banking Connection Window (Make log visible)
Definition: gnc-gwen-gui.c:350
void gnc_GWEN_Gui_shutdown(void)
Free all memory related to both the full-blown and minimalistic GUI objects.
Definition: gnc-gwen-gui.c:290
gboolean gnc_GWEN_Gui_get_close_flag(void)
Get "Close when finished" flag.
Definition: gnc-gwen-gui.c:344
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...
Definition: gnc-gwen-gui.c:245
void gnc_GWEN_Gui_release(GncGWENGui *gui)
Currently a no-op.
Definition: gnc-gwen-gui.c:280
void gnc_GWEN_Gui_log_init(void)
Hook our logging into the gwenhywfar logging framework by creating a minimalistic GWEN_GUI with only ...
Definition: gnc-gwen-gui.c:229
void gnc_GWEN_Gui_set_close_flag(gboolean close_when_finished)
Set "Close when finished" flag.
Definition: gnc-gwen-gui.c:325
void gnc_GWEN_Gui_hide_dialog(void)
Hides Online Banking Connection Window (Close log window)
Definition: gnc-gwen-gui.c:381