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
|
/* File: gui_simple_message_content.h; Copyright and License: see below */
#ifndef GUI_SIMPLE_MESSAGE_CONTENT_H
#define GUI_SIMPLE_MESSAGE_CONTENT_H
/* public file for the doxygen documentation: */
/*! \file
* \brief Defines a list of message text-ids
*/
#include "set/data_stat.h"
/*!
* \brief enumeration on message text-ids that have no parameter
*/
enum gui_simple_message_content_enum {
GUI_SIMPLE_MESSAGE_CONTENT_NO_MESSAGE, /*!< there is no message */
GUI_SIMPLE_MESSAGE_CONTENT_ABOUT, /*!< shows the about text */
GUI_SIMPLE_MESSAGE_CONTENT_STRING_TRUNCATED, /*!< a stringlength is exceeded, a string was truncated */
GUI_SIMPLE_MESSAGE_CONTENT_NO_SELECTION, /*!< selected set is empty, action could not be performed */
GUI_SIMPLE_MESSAGE_CONTENT_NO_FOCUS, /*!< no element is focused, action could not be performed */
GUI_SIMPLE_MESSAGE_CONTENT_DELETING_NOT_POSSIBLE, /*!< some objects could not be deleted because they are still referenced */
GUI_SIMPLE_MESSAGE_CONTENT_NO_MORE_UNDO, /*!< undo failed, nothing more to undo */
GUI_SIMPLE_MESSAGE_CONTENT_UNDO_NOT_POSSIBLE, /*!< undo failed, list bounds of undo exceeded */
GUI_SIMPLE_MESSAGE_CONTENT_NO_MORE_REDO, /*!< redo failed, nothing more to undo */
GUI_SIMPLE_MESSAGE_CONTENT_NO_INPUT_DATA, /*!< paste failed, no input data */
GUI_SIMPLE_MESSAGE_CONTENT_SET_PARTLY_UNSUITABLE, /*!< operation cannot be performed on some elements in the set */
GUI_SIMPLE_MESSAGE_CONTENT_DB_FILE_WRITE_ERROR, /*!< database could not write to file */
GUI_SIMPLE_MESSAGE_CONTENT_ANCESTOR_IS_NOT_DESCENDANT, /*!< root/ancestor/parent diagram cannot move to descendant tree location */
GUI_SIMPLE_MESSAGE_CONTENT_DEBUG_MODE, /*!< program was compiled in debug mode and may therefore be slower */
GUI_SIMPLE_MESSAGE_CONTENT_NO_RELATIONSHIPS, /*!< current diagram type does not allow one to create relationships */
GUI_SIMPLE_MESSAGE_CONTENT_NO_FEATURES, /*!< current diagram type does not allow one to create features */
GUI_SIMPLE_MESSAGE_CONTENT_FEATURELESS_CLASSIFIER, /*!< current classifier type does not allow one to create features */
GUI_SIMPLE_MESSAGE_CONTENT_IS_ALWAYS_INSTANCE, /*!< current classifier type does not allow one to remove the instance flag */
GUI_SIMPLE_MESSAGE_CONTENT_DB_IS_READ_ONLY, /*!< the database file is opened readonly, no modifications possible */
};
typedef enum gui_simple_message_content_enum gui_simple_message_content_t;
/*! \brief tag-type to identify constants that may be used only at gui_simple_message_to_user_show_message_with_quantity method.
*
* This type allows the compiler to check if a constant is used in the right function context.
*
* The idea is similar to C++ tag dispatching.
*/
typedef struct gui_simple_message_content_quantity_struct { const int quantity; } gui_simple_message_content_quantity_t;
extern const gui_simple_message_content_quantity_t *GUI_SIMPLE_MESSAGE_CONTENT_DB_INCONSISTENT; /*!< the current database file is inconsistent */
extern const gui_simple_message_content_quantity_t *GUI_SIMPLE_MESSAGE_CONTENT_MAX_WINDOWS_ALREADY_OPEN; /*!< the maximum number of windows is already open */
#if 0
/*! \brief tag-type to identify constants that may be used only at gui_simple_message_to_user_show_message_with_position method.
*
* This type allows the compiler to check if a constant is used in the right function context.
*
* The idea is similar to C++ tag dispatching.
*/
typedef struct gui_simple_message_content_position_struct { const int stream_position; } gui_simple_message_content_position_t;
extern const gui_simple_message_content_position_t *GUI_SIMPLE_MESSAGE_CONTENT_INVALID_INPUT_DATA; /*!< paste failed, parser error at input data */
#endif
/*! \brief tag-type to identify constants that may be used only at gui_simple_message_to_user_show_message_with_name method.
*
* This type allows the compiler to check if a constant is used in the right function context.
*
* The idea is similar to C++ tag dispatching.
*/
typedef struct gui_simple_message_content_name_struct { const char *name; } gui_simple_message_content_name_t;
extern const gui_simple_message_content_name_t *GUI_SIMPLE_MESSAGE_CONTENT_DB_FILE_NOT_OPENED; /*!< the chosen database file cannot be used */
extern const gui_simple_message_content_name_t *GUI_SIMPLE_MESSAGE_CONTENT_DB_FILE_NOT_CREATEABLE; /*!< the chosen database file cannot be created */
extern const gui_simple_message_content_name_t *GUI_SIMPLE_MESSAGE_CONTENT_DB_FILE_OPENED_WITH_ERROR; /*!< the chosen database file was opened but with a warning/error */
extern const gui_simple_message_content_name_t *GUI_SIMPLE_MESSAGE_CONTENT_FILE_EXPORT_FAILED; /*!< some or all diagrams could not be exported */
extern const gui_simple_message_content_name_t *GUI_SIMPLE_MESSAGE_CONTENT_NAME_NOT_UNIQUE; /*!< object not created or name not changed */
extern const gui_simple_message_content_name_t *GUI_SIMPLE_MESSAGE_CONTENT_LOADING_WAIT; /*!< pls wait while loading */
extern const gui_simple_message_content_name_t *GUI_SIMPLE_MESSAGE_CONTENT_EXPORTING_WAIT; /*!< pls wait while exporting */
/*! \brief tag-type to identify constants that may be used only at gui_simple_message_to_user_show_message_with_names method.
*
* This type allows the compiler to check if a constant is used in the right function context.
*
* The idea is similar to C++ tag dispatching.
*/
typedef struct gui_simple_message_content_names_struct { const char *list_of_names; } gui_simple_message_content_names_t;
/*! \brief tag-type to identify constants that may be used only at gui_simple_message_to_user_show_message_with_error method.
*
* This type allows the compiler to check if a constant is used in the right function context.
*
* The idea is similar to C++ tag dispatching.
*/
typedef struct gui_simple_message_content_error_struct { const char *error_message; } gui_simple_message_content_error_t;
extern const gui_simple_message_content_error_t *GUI_SIMPLE_MESSAGE_CONTENT_NOT_YET_IMPLEMENTED; /*!< the feature is not yet implemented */
/*! \brief tag-type to identify constants that may be used only at gui_simple_message_to_user_show_message_with_stat method.
*
* This type allows the compiler to check if a constant is used in the right function context.
*
* The idea is similar to C++ tag dispatching.
*/
typedef struct gui_simple_message_content_stat_struct { const data_stat_t *stat; } gui_simple_message_content_stat_t;
extern const gui_simple_message_content_stat_t *GUI_SIMPLE_MESSAGE_CONTENT_CUT_TO_CLIPBOARD; /*!< show statistics on cut elements */
extern const gui_simple_message_content_stat_t *GUI_SIMPLE_MESSAGE_CONTENT_COPY_TO_CLIPBOARD; /*!< show statistics on copied elements */
extern const gui_simple_message_content_stat_t *GUI_SIMPLE_MESSAGE_CONTENT_PASTE_FROM_CLIPBOARD; /*!< show statistics on pasted elements */
extern const gui_simple_message_content_stat_t *GUI_SIMPLE_MESSAGE_CONTENT_DELETE; /*!< show statistics on deleted elements */
extern const gui_simple_message_content_stat_t *GUI_SIMPLE_MESSAGE_CONTENT_UNDO; /*!< show statistics on undo actions */
extern const gui_simple_message_content_stat_t *GUI_SIMPLE_MESSAGE_CONTENT_REDO; /*!< show statistics on redo actions */
/*! \brief tag-type to identify constants that may be used only at gui_simple_message_to_user_show_message_with_names_and_stat method.
*
* This type allows the compiler to check if a constant is used in the right function context.
*
* The idea is similar to C++ tag dispatching.
*/
typedef struct gui_simple_message_content_names_stat_struct { const char *list_of_names; const data_stat_t *stat; } gui_simple_message_content_names_stat_t;
extern const gui_simple_message_content_names_stat_t *GUI_SIMPLE_MESSAGE_CONTENT_EXPORT_FINISHED; /*!< files exported successfully */
#endif /* GUI_SIMPLE_MESSAGE_CONTENT_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.
*/
|