mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* src/report/report-gnome/window-report.c: move some report initialization here from top-level.c * src/report/report-gnome/gncmod-report-gnome.c: call new report initialization function * src/report/report-gnome/Makefile.am: add app-utils dependency git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6409 57a11ea4-9604-0410-9ed3-97b8803252fd
67 lines
3.2 KiB
C
67 lines
3.2 KiB
C
/********************************************************************\
|
|
* window-report.h -- a report window for hypertext report. *
|
|
* Copyright (C) 1997 Robin D. Clark *
|
|
* *
|
|
* 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, contact: *
|
|
* *
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
* 59 Temple Place - Suite 330 Fax: +1-617-542-2652 *
|
|
* Boston, MA 02111-1307, USA gnu@gnu.org *
|
|
\********************************************************************/
|
|
|
|
#ifndef GNC_REPORT_WINDOW_H
|
|
#define GNC_REPORT_WINDOW_H
|
|
|
|
#include <gnome.h>
|
|
#include <guile/gh.h>
|
|
|
|
#include "gnc-html.h"
|
|
#include "gnc-mdi-utils.h"
|
|
|
|
typedef struct gnc_report_window_s gnc_report_window;
|
|
|
|
/** PROTOTYPES ******************************************************/
|
|
|
|
gnc_report_window * gnc_report_window_new(GNCMDIChildInfo * mc);
|
|
void gnc_report_window_destroy(gnc_report_window * rep);
|
|
void gnc_report_window_show_report(gnc_report_window * rw, int id);
|
|
void gnc_report_window_reload(gnc_report_window * rw);
|
|
gnc_html * gnc_report_window_get_html(gnc_report_window * rw);
|
|
GtkWidget * gnc_report_window_get_container(gnc_report_window * rw);
|
|
SCM gnc_report_window_get_report(gnc_report_window * rw);
|
|
|
|
void gnc_report_window_create_menu(gnc_report_window * report,
|
|
GNCMDIChildInfo * child);
|
|
void gnc_report_window_create_toolbar(gnc_report_window * report,
|
|
GNCMDIChildInfo * child);
|
|
|
|
GtkWidget * gnc_report_window_default_params_editor(SCM options, SCM report);
|
|
|
|
void gnc_main_window_open_report (int report_id, gint toplevel);
|
|
void gnc_main_window_open_report_url (const char * url, gint toplevel);
|
|
|
|
GnomeMDIChild * gnc_report_window_create_child(const gchar * url);
|
|
void reportWindow(int id);
|
|
void gnc_print_report (int report_id);
|
|
|
|
void gnc_report_window_add_edited_report(gnc_report_window * win,
|
|
SCM report);
|
|
void gnc_report_window_remove_edited_report(gnc_report_window * win,
|
|
SCM report);
|
|
void gnc_report_raise_editor(SCM report);
|
|
|
|
void gnc_report_init (void);
|
|
|
|
#endif
|