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 99 100 101 102
|
/* File: gui_file_export_dialog.h; Copyright and License: see below */
#ifndef GUI_FILE_EXPORT_DIALOG_H
#define GUI_FILE_EXPORT_DIALOG_H
/* public file for the doxygen documentation: */
/*!
* \file
* \brief Displays a file export dialog and reacts on user events
*/
#include "gui_simple_message_to_user.h"
#include "io_exporter.h"
#include "storage/data_database.h"
#include <gtk/gtk.h>
/*!
* \brief attributes of the file export dialog
*/
struct gui_file_export_dialog_struct {
data_database_t *database; /*!< pointer to external data_database_t */
io_exporter_t file_exporter; /*!< own instance of io_exporter_t */
gui_simple_message_to_user_t *message_to_user; /*!< pointer to external gui_simple_message_to_user_t */
GtkWidget *export_file_chooser; /*!< pointer to instance of a file chooser for export */
//GtkWidget *format_asciidoc; /*!< pointer to checkbox for export-format asciidoc */
GtkWidget *format_docbook; /*!< pointer to checkbox for export-format docbook */
//GtkWidget *format_doxygen; /*!< pointer to checkbox for export-format doxygen */
//GtkWidget *format_latex; /*!< pointer to checkbox for export-format latex */
//GtkWidget *format_rtf; /*!< pointer to checkbox for export-format rtf */
GtkWidget *format_pdf; /*!< pointer to checkbox for export-format pdf */
GtkWidget *format_png; /*!< pointer to checkbox for export-format png */
GtkWidget *format_ps; /*!< pointer to checkbox for export-format ps */
GtkWidget *format_svg; /*!< pointer to checkbox for export-format svg */
GtkWidget *format_txt; /*!< pointer to checkbox for export-format txt */
GtkWidget *format_xhtml; /*!< pointer to checkbox for export-format xhtml */
GtkWidget *format_xmi2; /*!< pointer to checkbox for export-format xmi version 2.x */
GtkWidget *format_json; /*!< pointer to checkbox for export-format json */
GtkWidget *diagram_set_label; /*!< the label for filetype-sets */
GtkWidget *document_label; /*!< the label for document-types */
GtkWidget *options_layout; /*!< the grid layout container for the export options */
};
typedef struct gui_file_export_dialog_struct gui_file_export_dialog_t;
/*!
* \brief initializes the file export dialog
*
* \param this_ pointer to own object attributes
* \param database pointer to external data_database_t
* \param db_reader pointer to a database reader object
* \param parent_window pointer to the gtk parent window, to which this modal dialog belongs
* \param message_to_user pointer to the message_to_user object to use
*/
void gui_file_export_dialog_init( gui_file_export_dialog_t *this_,
data_database_t *database,
data_database_reader_t *db_reader,
GtkWindow *parent_window,
gui_simple_message_to_user_t *message_to_user
);
/*!
* \brief destroys the file export dialog
*
* \param this_ pointer to own object attributes
*/
void gui_file_export_dialog_destroy( gui_file_export_dialog_t *this_ );
/*!
* \brief shows the file export dialog
*
* \param this_ pointer to own object attributes
*/
void gui_file_export_dialog_show( gui_file_export_dialog_t *this_ );
/*!
* \brief callback function of the GtkDialog
*/
void gui_file_export_dialog_response_callback( GtkDialog *dialog, gint response_id, gpointer user_data );
#endif /* GUI_FILE_EXPORT_DIALOG_H */
/*
Copyright 2019-2023 Andreas Warnke
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
|