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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
|
/* File: gui_toolbox.h; Copyright and License: see below */
#ifndef GUI_TOOLBOX_H
#define GUI_TOOLBOX_H
/* public file for the doxygen documentation: */
/*! \file
* \brief Informs the listener on the currently selected tool
*/
#include "gui_tool.h"
#include "gui_marked_set.h"
#include "gui_simple_message_to_user.h"
#include "gui_clipboard.h"
#include "set/data_stat.h"
#include "ctrl_controller.h"
#include "utf8stringbuf/utf8stringbuf.h"
#include <gtk/gtk.h>
/*!
* \brief attributes of the sketch tools object
*/
struct gui_toolbox_struct {
gui_tool_t selected_tool;
data_database_reader_t *db_reader; /*!< pointer to external data_database_reader */
ctrl_controller_t *controller; /*!< pointer to external controller */
gui_marked_set_t *marker; /*!< pointer to external sketch marker */
gui_simple_message_to_user_t *message_to_user; /*!< pointer to external message-displayer */
gui_clipboard_t clipboard; /*!< own instance of a clipboard object */
GtkWidget *toolbar; /*!< pointer to external GObject which is used as origin of tool change signals */
GtkWidget *tool_navigate; /*!< pointer to external GtkRadioToolButton */
GtkWidget *tool_edit; /*!< pointer to external GtkRadioToolButton */
GtkWidget *tool_create; /*!< pointer to external GtkRadioToolButton */
GtkWidget *tool_search; /*!< pointer to external GtkRadioToolButton */
};
typedef struct gui_toolbox_struct gui_toolbox_t;
extern const char *GUI_TOOLBOX_GLIB_SIGNAL_NAME;
/*!
* \brief initializes the gui_toolbox_t struct
*
* \param this_ pointer to own object attributes
* \param toolbar the GTK widget that contains the buttons. Ownership remains at caller.
* \param tool_navigate the GTK widget. Ownership remains at caller.
* \param tool_edit the GTK widget. Ownership remains at caller.
* \param tool_create the GTK widget. Ownership remains at caller.
* \param tool_search the GTK widget. Ownership remains at caller.
* \param gtk_clipboard pointer to the main/primary GdkClipboard
* \param marker pointer to the set of marked items
* \param message_to_user pointer to an object that can show a message to the user
* \param db_reader pointer to a database reader
* \param controller pointer to a controller object which can modify the database
*/
void gui_toolbox_init ( gui_toolbox_t *this_,
GtkWidget *toolbar,
GtkWidget *tool_navigate,
GtkWidget *tool_edit,
GtkWidget *tool_create,
GtkWidget *tool_search,
GdkClipboard *gtk_clipboard,
gui_marked_set_t *marker,
gui_simple_message_to_user_t *message_to_user,
data_database_reader_t *db_reader,
ctrl_controller_t *controller
);
/*!
* \brief destroys the gui_toolbox_t struct
*
* \param this_ pointer to own object attributes
*/
void gui_toolbox_destroy ( gui_toolbox_t *this_ );
/*!
* \brief gets the selected tool
*
* \param this_ pointer to own object attributes
*/
static inline gui_tool_t gui_toolbox_get_selected_tool ( gui_toolbox_t *this_ );
/*!
* \brief sets the selected tool
*
* \param this_ pointer to own object attributes
* \param tool tool to be selected
*/
void gui_toolbox_set_selected_tool ( gui_toolbox_t *this_, gui_tool_t tool );
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_navigate_btn_callback( GtkWidget* button, gpointer data );
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_edit_btn_callback( GtkWidget* button, gpointer data );
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_create_btn_callback( GtkWidget* button, gpointer data );
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_search_btn_callback( GtkWidget* button, gpointer data );
/*!
* \brief callback that informs that the earch_for_id button was pressed
*/
void gui_toolbox_search_id_btn_callback( GtkWidget* button, gpointer data );
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_cut_btn_callback( GtkWidget* button, gpointer data );
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_copy_btn_callback( GtkWidget* button, gpointer data );
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_paste_btn_callback( GtkWidget* button, gpointer data );
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_delete_btn_callback( GtkWidget* button, gpointer data );
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_highlight_btn_callback( GtkWidget* button, gpointer data );
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_instantiate_btn_callback( GtkWidget* button, gpointer data );
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_reset_btn_callback( GtkWidget* button, gpointer data );
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_undo_btn_callback( GtkWidget* button, gpointer data );
#if ( GTK_MAJOR_VERSION >= 4 )
/*!
* \brief callback that informs that the undo shortcut was activated
*/
gboolean gui_toolbox_undo_shortcut_callback( GtkWidget* widget, GVariant* args, gpointer user_data );
#else
#endif
/*!
* \brief callback that informs that the tool button was pressed
*/
void gui_toolbox_redo_btn_callback( GtkWidget* button, gpointer data );
#if ( GTK_MAJOR_VERSION >= 4 )
/*!
* \brief callback that informs that the redo shortcut was activated
*/
gboolean gui_toolbox_redo_shortcut_callback( GtkWidget* widget, GVariant* args, gpointer user_data );
#else
#endif
/*!
* \brief notifies the listeners
*
* \param this_ pointer to own object attributes
*/
void gui_toolbox_private_notify_listeners( gui_toolbox_t *this_ );
/*!
* \brief cuts the selected objects to the clipboard
*/
void gui_toolbox_cut( gui_toolbox_t *this_ );
/*!
* \brief copies the selected objects to the clipboard
*/
void gui_toolbox_copy( gui_toolbox_t *this_ );
/*!
* \brief pastes the objects from the clipboard
*/
void gui_toolbox_paste( gui_toolbox_t *this_ );
/*!
* \brief deletes the selected objects
*/
void gui_toolbox_delete( gui_toolbox_t *this_ );
/*!
* \brief deletes a set of objects
*
* \param this_ pointer to own object attributes
* \param set_to_be_deleted set of element ids to be deleted
* \param io_stat undefined in case of an error in the return value,
* otherwise statistics on DATA_STAT_SERIES_DELETED,
* DATA_STAT_SERIES_IGNORED (e.g. lifelines) and
* DATA_STAT_SERIES_ERROR (e.g. if t.b.d.).
* Statistics are only added, *io_stat shall be initialized by caller.
* \return U8_ERROR_NONE in case of success
*/
u8_error_t gui_toolbox_private_delete_set( gui_toolbox_t *this_,
const data_small_set_t *set_to_be_deleted,
data_stat_t *io_stat
);
/*!
* \brief toggles display flags in a set of objects
*/
void gui_toolbox_private_toggle_display_flag_in_set( gui_toolbox_t *this_,
const data_small_set_t *set_to_be_toggled,
data_diagramelement_flag_t flag_bits_to_toggle
);
#include "gui_toolbox.inl"
#endif /* GUI_TOOLBOX_H */
/*
Copyright 2016-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.
*/
|