#include <string.h>
#include "buf.h"
#include "dialogs.h"
#include "exporthtml.h"
#include "exporttext.h"
#include "gui_common.h"
#include "queries.h"
Include dependency graph for export.c:
Go to the source code of this file.
Data Structures | |
struct | _export_data |
Data for dialog call. More... | |
Defines | |
#define | TYPE_KEY "Type key" |
Key for the GTK data field linked to the file extension menu. | |
Typedefs | |
typedef _export_data | ExportData |
Data for dialog call. | |
Functions | |
void | export_dialog_hide () |
Hide the export dialog. | |
void | export_dialog_show (char *title) |
Show the export dialog. | |
void | export_dialog_create () |
Create the export dialog. | |
void | add_entry_line (char *labeltext, GtkWidget *widget, GtkWidget *table, int height) |
Adds an entry line. | |
int | export_in_progress () |
Return the status of the export. | |
void | export_cancel_callback (GtkWidget *widget, gpointer data) |
Dialog cancel callback. | |
void | export_ok_callback (GtkWidget *widget, gpointer data) |
Dialog OK callback. | |
gint | delete_event (GtkWidget *widget, GdkEvent *event, gpointer data) |
Delete handler for main export dialog. | |
void | result_export () |
Display the export dialog. | |
Variables | |
ExportData | exportData |
Data for the main export dialog. |
There are a number of dialogs supported in this module.
Definition in file export.c.
|
Delete handler for main export dialog.
Definition at line 251 of file export.c. References export_cancel_callback(). Referenced by export_dialog_create(). |
|
Dialog cancel callback.
Definition at line 160 of file export.c. References update_button_sensitivity(). Referenced by delete_event(), export_dialog_create(), and export_ok_callback(). |
|
Show the export dialog.
Definition at line 296 of file export.c. References export_dialog_create(), _export_data::query, query_get_current(), query_get_current_name(), and _export_data::query_name. Referenced by result_export(). |
|
Return the status of the export.
|
|
Dialog OK callback.
Definition at line 170 of file export.c. References display_error(), export_cancel_callback(), export_dialog_hide(), _export_data::query, _export_data::query_name, TYPE_KEY, _export_data::type_menu, and update_button_sensitivity(). Referenced by export_dialog_create(). |
|
Initial value: { NULL, NULL, NULL }
|