25#include <qstringlist.h>
26#include <qstringlist.h>
29#include <qbytearray.h>
70 QApplication* _applicationInstance,
71 const QString & _organizationName,
72 const QString & _applicationName
114 QApplication* _applicationInstance,
115 const QString & _organizationName,
116 const QString & _applicationName
232 const QString & _text,
233 const QString & _iconName,
234 const QString & _iconSubFolder = QString(
"32")
244 const QString & _text,
255 const QString & _text,
256 bool _checked =
false
264 const QString & _initialText = QString(
"")
272 const QString & _initialText,
273 const QString & _infoLabelText
284 const QString & _text = QString(
"")
304 const QString & _text
313 const QString & _text,
324 const QString & _text,
325 const QString & _iconName,
326 const QString & _iconFolder
357 const QString & _text
374 const QString & _iconName,
375 const QString & _iconFolder
399 const QString & _text
425 namespace container {
440 bool _isEnabled =
true
472 const QString & _text
516 namespace niceLineEdit {
523 const QString & _text
547 const QString & _text
588 bool _ignoreIfObjectHasChildObjects =
false
597 const QString & _name
610 const QString & _name
619 const QString & _toolTip
652 template<
class T> T *
get(
657 if (obj ==
nullptr) {
709 namespace toolButton {
741 const QString & _text
749 const QString & _text
766 const QString & _iconName,
767 const QString & _iconFolder
805 bool _visible =
true,
814 bool _visible =
true,
823 const QString & _text
839 bool _continuous =
true
889 const QString& _tabName
897 const QString & _title
1005 const QString & _animationName
1031 std::string _currentState =
""
1037 const std::string & _state,
1038 bool _setPositionAndSize =
true
1043 const QStringList& _list
1048 const QString& _tabName
1060 const QString & _orig,
1090 const QString & _iconName,
1091 const QString & _iconSubPath
1096 const QString & _iconName
1101 const QString & _name
1107 const QString& _name
1114 namespace settings {
1117 const QString & _settingsName,
1118 const QString & _defaultValue = QString(
"")
1122 const QString & _settingsName,
1123 int _defaultValue = 0
1127 const QString & _settingsName,
1128 double _defaultValue = 0.0
1132 const QString & _settingsName,
1133 float _defaultValue = 0.0
1137 const QString & _settingsName,
1138 bool _defaultValue = 0.0
1142 const QString & _settingsName,
1143 const QByteArray & _defaultValue = QByteArray()
1147 const QString & _settingsName,
1148 const QString & _value
1152 const QString & _settingsName,
1157 const QString & _settingsName,
1162 const QString & _settingsName,
1167 const QString & _settingsName,
1172 const QString & _settingsName,
1173 const QByteArray & _value
1226 const QDate & _date,
1228 const QString & _delimiter
1232 const QTime & _time,
1234 const QString & _delimiter,
1235 const QString & _millisecondDelimiter =
"."
#define UICORE_API_EXPORT
Definition globalDataTypes.h:20
Definition aException.h:135
Class used to forward messages to receivers This class is used to forward a message to receivers....
Definition aMessenger.h:34
This abstract class is used to provide the receiver functionallity used in the messaging class.
Definition aNotifier.h:22
The objectManager is used for creating and manipulating objects and widgets All objects created here ...
Definition aObjectManager.h:40
aObject * object(UID _objectUid)
Will return the object with the specified object UID.
Definition aObjectManager.cpp:298
This class is used to manage UIDs. This UID manager is incrementing the UID on each getId call.
Definition aUidMangager.h:25
Definition aWindowEventHandler.h:19
The API manager is used to manage the global objects required for this API to work.
Definition uiAPI.h:57
bool m_isInitialized
Definition uiAPI.h:97
bool isInitialized(void) const
Returns true if the API was initialized.
Definition uiAPI.cpp:126
QApplication * m_app
Definition uiAPI.h:88
QScreen * screen()
Definition uiAPI.h:83
void ini(QApplication *_applicationInstance, const QString &_organizationName, const QString &_applicationName)
Will initialize the API.
Definition uiAPI.cpp:101
QSettings * settings(void) const
Definition uiAPI.h:85
QApplication * app()
Definition uiAPI.h:81
QSurfaceFormat * m_defaultSurfaceFormat
True if the core application is already running.
Definition uiAPI.h:90
QString m_applicationName
Definition uiAPI.h:94
QSettings * m_settings
Definition uiAPI.h:95
apiManager()
Constructor.
Definition uiAPI.cpp:68
QSurfaceFormat * getDefaultSurfaceFormat(void)
Will return the default surface format.
Definition uiAPI.cpp:128
virtual ~apiManager()
Deconstructor.
Definition uiAPI.cpp:80
bool m_appIsRunning
The core application.
Definition uiAPI.h:89
QScreen * m_screen
Definition uiAPI.h:91
QString m_companyName
Definition uiAPI.h:93
aUidManager * m_fileUidManager
If true, then the API was initialized.
Definition uiAPI.h:99
UICORE_API_EXPORT void setEnabled(UID _actionUID, bool _enabled)
Will set the enabled state of the action.
Definition uiAPI.cpp:339
UICORE_API_EXPORT void setText(UID _actionUID, const QString &_text)
Will set the text of the action.
Definition uiAPI.cpp:344
UICORE_API_EXPORT QString getText(UID _actionUID)
Will return the text of the action.
Definition uiAPI.cpp:362
UICORE_API_EXPORT void setIcon(UID _actionUID, const QIcon &_icon)
Will set the icon of the action.
Definition uiAPI.cpp:349
UICORE_API_EXPORT void setChecked(UID _checkBoxUID, bool _checked)
Definition uiAPI.cpp:372
UICORE_API_EXPORT bool isEnabled(UID _checkBoxUID)
Definition uiAPI.cpp:395
UICORE_API_EXPORT QString text(UID _checkBoxUID)
Definition uiAPI.cpp:387
UICORE_API_EXPORT void setEnabled(UID _checkBoxUID, bool _enabled)
Definition uiAPI.cpp:382
UICORE_API_EXPORT bool isChecked(UID _checkBoxUID)
Definition uiAPI.cpp:391
UICORE_API_EXPORT void setText(UID _checkBoxUID, const QString &_text)
Definition uiAPI.cpp:377
UICORE_API_EXPORT void addObject(UID _containerUID, UID _objectUID)
Will add an object to the specified container.
Definition uiAPI.cpp:403
UICORE_API_EXPORT bool isEnabled(UID _containerUID)
Will return the enabled state of the specified container.
Definition uiAPI.cpp:413
UICORE_API_EXPORT void setEnabled(UID _containerUID, bool _isEnabled=true)
Will set the enabled state of the specified container.
Definition uiAPI.cpp:408
UICORE_API_EXPORT QString hash(const QString &_orig, HashAlgorithm _algorithm)
Definition uiAPI.cpp:993
UICORE_API_EXPORT QString openDirectory(const QString &_title, const QString &_initialDir)
Will show an open directory dialog and return the selected directory.
Definition uiAPI.cpp:423
UICORE_API_EXPORT void setText(UID _lineEditUid, const QString &_text)
Will set the line edit text.
Definition uiAPI.cpp:431
UICORE_API_EXPORT QString text(UID _lineEditUid)
Will return the line edit text.
Definition uiAPI.cpp:451
UICORE_API_EXPORT void setEnabled(UID _lineEditUid, bool _enabled)
Will set the line edit enabled state.
Definition uiAPI.cpp:446
UICORE_API_EXPORT void setErrorStateIsForeground(UID _lineEditUid, bool _isForeground)
Will set wather the error state will have an impact on the foreground or the background.
Definition uiAPI.cpp:441
UICORE_API_EXPORT void setErrorState(UID _lineEditUid, bool _error)
Will set the nice line edit error state.
Definition uiAPI.cpp:436
UICORE_API_EXPORT bool isEnabled(UID _lineEditUid)
Will return the line edit enabled state.
Definition uiAPI.cpp:455
UICORE_API_EXPORT void setErrorState(UID _lineEditUid, bool _error)
Will set the nice line edit error state.
Definition uiAPI.cpp:468
UICORE_API_EXPORT bool isEnabled(UID _lineEditUid)
Will return the nice line edit enabled state.
Definition uiAPI.cpp:496
UICORE_API_EXPORT QString infoLabelText(UID _lineEditUid)
Will return the nice line edit info label text.
Definition uiAPI.cpp:492
UICORE_API_EXPORT void setErrorStateIsForeground(UID _lineEditUid, bool _isForeground)
Will set wather the error state will have an impact on the foreground or the background.
Definition uiAPI.cpp:473
UICORE_API_EXPORT QString text(UID _lineEditUid)
Will return the nice line edit text.
Definition uiAPI.cpp:488
UICORE_API_EXPORT void setInfoLabelText(UID _lineEditUid, const QString &_text)
Will set the nice line edit info label text.
Definition uiAPI.cpp:478
UICORE_API_EXPORT void setEnabled(UID _lineEditUid, bool _enabled)
Will set the nice line edit enabled state.
Definition uiAPI.cpp:483
UICORE_API_EXPORT void setText(UID _lineEditUid, const QString &_text)
Will set the nice line edit text.
Definition uiAPI.cpp:463
T * get(UID _objectUID)
Will cast and return the object with the specified id.
Definition uiAPI.h:652
UICORE_API_EXPORT objectType type(UID _objectUID)
Will return the object type of the specified object.
Definition uiAPI.cpp:596
UICORE_API_EXPORT void setEnabled(UID _objectUID, bool _enabled=true)
Will set the objects enabeld state For the list of suitable objects refer to the documentation.
Definition uiAPI.cpp:545
UICORE_API_EXPORT QString getObjectUniqueName(UID _objectUID)
Will return the unique name set to the object.
Definition uiAPI.cpp:517
UICORE_API_EXPORT void setToolTip(UID _objectUID, const QString &_toolTip)
Will set the objects ToolTip For the list of suitable objects refer to the documentation.
Definition uiAPI.cpp:530
UICORE_API_EXPORT void setObjectUniqueName(UID _objectUID, const QString &_name)
Will set an object name to the specified object so it can be accessed later. The name must be unique!
Definition uiAPI.cpp:512
UICORE_API_EXPORT bool getIsEnabled(UID _objectUID)
Will return the objects enabeld state For the list of suitable objects refer to the documentation.
Definition uiAPI.cpp:568
UICORE_API_EXPORT UID getUidFromObjectUniqueName(const QString &_name)
Will return the UID of the object with the specified name Will return ak::invalidUID if there is no o...
Definition uiAPI.cpp:521
UICORE_API_EXPORT bool exists(UID _objectUID)
Will return true if the specified object exists.
Definition uiAPI.cpp:589
UICORE_API_EXPORT double getDouble(const QString &_settingsName, double _defaultValue=0.0)
Definition uiAPI.cpp:1059
UICORE_API_EXPORT QByteArray getByteArray(const QString &_settingsName, const QByteArray &_defaultValue=QByteArray())
Definition uiAPI.cpp:1080
UICORE_API_EXPORT int getInt(const QString &_settingsName, int _defaultValue=0)
Definition uiAPI.cpp:1052
UICORE_API_EXPORT QString getString(const QString &_settingsName, const QString &_defaultValue=QString(""))
Definition uiAPI.cpp:1045
UICORE_API_EXPORT void setByteArray(const QString &_settingsName, const QByteArray &_value)
Definition uiAPI.cpp:1122
UICORE_API_EXPORT void setInt(const QString &_settingsName, int _value)
Definition uiAPI.cpp:1094
UICORE_API_EXPORT void setString(const QString &_settingsName, const QString &_value)
Definition uiAPI.cpp:1087
UICORE_API_EXPORT void setBool(const QString &_settingsName, bool _value)
Definition uiAPI.cpp:1115
UICORE_API_EXPORT void setFloat(const QString &_settingsName, float _value)
Definition uiAPI.cpp:1108
UICORE_API_EXPORT void setDouble(const QString &_settingsName, double _value)
Definition uiAPI.cpp:1101
UICORE_API_EXPORT float getFloat(const QString &_settingsName, float _defaultValue=0.0)
Definition uiAPI.cpp:1066
UICORE_API_EXPORT bool getBool(const QString &_settingsName, bool _defaultValue=0.0)
Definition uiAPI.cpp:1073
UICORE_API_EXPORT QString toEventText(UID _senderUID, eventType _eventType, int _info1, int _info2)
Will create a JSON type representation of the event.
Definition uiAPI.cpp:1233
UICORE_API_EXPORT QString toString(eventType _type)
Will return a string representation of the provided eventType.
Definition uiAPI.cpp:1133
UICORE_API_EXPORT void setInterval(UID _timerUID, int _interval)
Definition uiAPI.cpp:619
UICORE_API_EXPORT void shoot(UID _timerUID)
Definition uiAPI.cpp:630
UICORE_API_EXPORT void start(UID _timerUID)
Definition uiAPI.cpp:654
UICORE_API_EXPORT void stop(UID _timerUID)
Definition uiAPI.cpp:678
UICORE_API_EXPORT int getInterval(UID _timerUID)
Definition uiAPI.cpp:609
UICORE_API_EXPORT bool getStatusProgressContinuous(UID _windowUID)
Will return the continuous option of the status progress bar at the provided window.
Definition uiAPI.cpp:898
UICORE_API_EXPORT ID getCurrentTabToolBarTab(UID _windowUID)
Will return the current tab of the tab tool bar at the specified window.
Definition uiAPI.cpp:837
UICORE_API_EXPORT int getTabToolBarTabCount(UID _windowUID)
Will return the tab count of the tab tool bar at the specified window.
Definition uiAPI.cpp:853
UICORE_API_EXPORT void setWindowIcon(UID _windowUID, const QIcon &_icon)
Will set the icon at the specified window.
Definition uiAPI.cpp:877
UICORE_API_EXPORT void resize(UID _windowUID, int _width, int _height)
Will resize the window.
Definition uiAPI.cpp:957
UICORE_API_EXPORT void showMaximized(UID _windowUID)
Will show the window as maximized.
Definition uiAPI.cpp:912
UICORE_API_EXPORT void close(UID _windowUID)
Will close the provided window.
Definition uiAPI.cpp:791
UICORE_API_EXPORT void setStatusLabelText(UID _windowUID, const QString &_text)
Will set the status label text at the provided window.
Definition uiAPI.cpp:812
UICORE_API_EXPORT std::string getCurrentToolBarTabText(UID _windowUID)
Definition uiAPI.cpp:841
UICORE_API_EXPORT QString getStatusLabelText(UID _windowUID)
Will return the status label text at the provided window.
Definition uiAPI.cpp:890
UICORE_API_EXPORT void showNormal(UID _windowUID)
Will show the window.
Definition uiAPI.cpp:916
UICORE_API_EXPORT void setTitle(UID _windowUID, const QString &_title)
Will set the title at the specified window.
Definition uiAPI.cpp:872
UICORE_API_EXPORT void addEventHandler(UID _windowUID, aWindowEventHandler *_eventHandler)
Will add the provided event handler to the window.
Definition uiAPI.cpp:786
UICORE_API_EXPORT void showMinimized(UID _windowUID)
Will show the window as minimized.
Definition uiAPI.cpp:920
UICORE_API_EXPORT QPoint position(UID _windowUID)
Will return the position of the window.
Definition uiAPI.cpp:928
UICORE_API_EXPORT void setTabToolBarVisible(UID _windowUID, bool _visible=true)
Will set the visible state of the tabToolbar in the specified window.
Definition uiAPI.cpp:827
UICORE_API_EXPORT void setTabToolbarDoubleClickEnabled(UID _windowUID, bool _isEnabled)
Will set the enabled state of double click event in the tab toolbar.
Definition uiAPI.cpp:832
UICORE_API_EXPORT void removeEventHandler(UID _windowUID, aWindowEventHandler *_eventHandler)
Will remove the provided event handler from the window.
Definition uiAPI.cpp:795
UICORE_API_EXPORT int getStatusProgressValue(UID _windowUID)
Will return the status progress bar value at the provided window.
Definition uiAPI.cpp:894
UICORE_API_EXPORT void setStatusProgressContinuous(UID _windowUID, bool _continuous=true)
Will set the continuous option of the status progress bar at the provided window.
Definition uiAPI.cpp:822
UICORE_API_EXPORT void setCentralWidget(UID _windowUID, UID _widgetUID)
Will set the windows central widget (The widget will be added to a container, the actual central widg...
Definition uiAPI.cpp:902
UICORE_API_EXPORT bool getStatusProgressVisible(UID _windowUID)
Will return true if the status progress bar is visible at the provided window.
Definition uiAPI.cpp:886
UICORE_API_EXPORT std::string saveState(UID _windowUID, std::string _currentState="")
Will return the state of the window so it can be restored.
Definition uiAPI.cpp:963
UICORE_API_EXPORT void setTabToolBarTabOrder(UID _windowUID, const QStringList &_list)
Definition uiAPI.cpp:978
UICORE_API_EXPORT void setStatusLabelVisible(UID _windowUID, bool _visible=true, bool _delayed=true)
Will set the visible state of the status label of the provided window.
Definition uiAPI.cpp:800
UICORE_API_EXPORT void setCurrentTabToolBarTab(UID _windowUID, ID _tabID)
Will set the specified tab toolbar tab as current at the specified window.
Definition uiAPI.cpp:862
UICORE_API_EXPORT void setWaitingAnimationVisible(UID _windowUID, bool _visible=true)
Will set the visible state of the waiting animation.
Definition uiAPI.cpp:932
UICORE_API_EXPORT void activateToolBarTab(UID _windowUID, const QString &_tabName)
Definition uiAPI.cpp:983
UICORE_API_EXPORT QSize size(UID _windowUID)
Will return the size of the window.
Definition uiAPI.cpp:924
UICORE_API_EXPORT void enableTabToolBar(UID _windowUID, bool _enable)
Will enable or disable the tab tool bar at the specified window.
Definition uiAPI.cpp:857
UICORE_API_EXPORT double devicePixelRatio(void)
Will return the device pixel ratio of the currently used device.
Definition uiAPI.cpp:955
UICORE_API_EXPORT bool restoreState(UID _windowUID, const std::string &_state, bool _setPositionAndSize=true)
Will return the state of the window so it can be restored.
Definition uiAPI.cpp:970
UICORE_API_EXPORT bool getStatusLabelVisible(UID _windowUID)
Will return true if the status label is visible at the provided window.
Definition uiAPI.cpp:882
UICORE_API_EXPORT void setStatusProgressValue(UID _windowUID, int _value)
Will set the value of the status progress bar at the provided window.
Definition uiAPI.cpp:817
UICORE_API_EXPORT void setCentralWidgetMinimumSize(UID _windowUID, int _width, int _height)
Will set the central widget minimum size.
Definition uiAPI.cpp:949
UICORE_API_EXPORT void setStatusProgressVisible(UID _windowUID, bool _visible=true, bool _delayed=true)
Will set the visible state of the status progress bar of the provided window.
Definition uiAPI.cpp:806
UICORE_API_EXPORT void setWaitingAnimation(UID _windowUID, QMovie *_movie)
Will set the movie as waiting animation in the window.
Definition uiAPI.cpp:937
UICORE_API_EXPORT const QPixmap & getPixmap(const QString &_name)
Will return the icon with the specified name and path.
Definition uiAPI.cpp:1029
UICORE_API_EXPORT void sendMessage(UID _senderUid, eventType _event, int _info1=0, int _info2=0)
Will send a message to the messanger.
Definition uiAPI.cpp:209
UICORE_API_EXPORT void registerUidNotifier(UID _senderUid, ak::aNotifier *_notifier)
Will register the notifier at the messenger The provided notifier will get a new uid if not done so b...
Definition uiAPI.cpp:186
UICORE_API_EXPORT void setMessengerEnabled(bool _enabled)
Will set the enabled state of the messenger.
Definition uiAPI.cpp:151
UICORE_API_EXPORT UID createAction(UID _creatorUid, const QString &_text, const QString &_iconName, const QString &_iconSubFolder=QString("32"))
Will create a new Action and return its UID.
Definition uiAPI.cpp:231
UICORE_API_EXPORT const QIcon & getIcon(const QString &_iconName, const QString &_iconSubPath)
WIll return the icon with the specified name and path.
Definition uiAPI.cpp:1016
UICORE_API_EXPORT UID getObjectCreator(UID _objectUID)
Will return the creator UID of the specified object.
Definition uiAPI.cpp:172
UICORE_API_EXPORT const QIcon & getApplicationIcon(const QString &_iconName)
Will return the application icon with the specified name and path.
Definition uiAPI.cpp:1023
UICORE_API_EXPORT void disableEventTypes(eventType _types)
Will disable the provided event types to be send.
Definition uiAPI.cpp:147
UICORE_API_EXPORT void registerAllMessagesNotifier(ak::aNotifier *_notifier)
Will register the notifier for all messages send at the global messenger The provided notifier will g...
Definition uiAPI.cpp:202
UICORE_API_EXPORT QWidget * getWidget(UID _objectUid)
Will return the QWidget of the specifed object.
Definition uiAPI.cpp:168
UICORE_API_EXPORT UID createToolButton(UID _creatorUid)
Will create a toolButton and return its UID.
Definition uiAPI.cpp:292
UICORE_API_EXPORT QMovie * getMovie(const QString &_name)
Will return the movie with the specified name and path.
Definition uiAPI.cpp:1035
UICORE_API_EXPORT std::vector< eventType > disabledEventTypes(void)
Will return the disabled event types that will be send.
Definition uiAPI.cpp:166
UICORE_API_EXPORT bool messengerIsEnabled(void)
Will return the current enabled state for the messenger.
Definition uiAPI.cpp:159
UICORE_API_EXPORT std::vector< eventType > enabledEventTypes(void)
Will return the enabled event types that will be send.
Definition uiAPI.cpp:164
UICORE_API_EXPORT void setSurfaceFormatDefaultSamplesCount(int _count)
Will set the samples count for the default surface formt.
Definition uiAPI.cpp:219
UICORE_API_EXPORT UID createLineEdit(UID _creatorUid, const QString &_initialText=QString(""))
Will create a line edit and return its UID param _creatorUid The UID of the creator.
Definition uiAPI.cpp:259
UICORE_API_EXPORT UID createNiceLineEdit(UID _creatorUid, const QString &_initialText, const QString &_infoLabelText)
Will create a nice line edit.
Definition uiAPI.cpp:267
UICORE_API_EXPORT UID createTabToolBarSubContainer(UID _creatorUid, UID _parentUid, const QString &_text=QString(""))
Will create a new TabToolBar subcountainer and return its UID.
Definition uiAPI.cpp:276
UICORE_API_EXPORT aMessenger * getMessenger(void)
Will return the messenger.
Definition uiAPI.cpp:1014
UICORE_API_EXPORT UID createCheckbox(UID _creatorUid, const QString &_text, bool _checked=false)
Will create a new CheckBox and return its UID.
Definition uiAPI.cpp:250
UICORE_API_EXPORT void registerEventTypeNotifier(eventType _event, ak::aNotifier *_notifier)
Will register the notifier at the messenger The provided notifier will get a new uid if not done so b...
Definition uiAPI.cpp:194
UICORE_API_EXPORT UID createTimer(UID _creatorUid)
Will create a new timer and return its UID.
Definition uiAPI.cpp:285
UICORE_API_EXPORT UID createUid(void)
Will generate a new UID and return it.
Definition uiAPI.cpp:1009
UICORE_API_EXPORT void destroy(void)
Will destroy all objects created by this API.
Definition uiAPI.cpp:141
UICORE_API_EXPORT void ini(QApplication *_applicationInstance, const QString &_organizationName, const QString &_applicationName)
Will initialize the application.
Definition uiAPI.cpp:135
UICORE_API_EXPORT UID createWindow(UID _creatorUid)
Will create a new UI manager and return its UID.
Definition uiAPI.cpp:326
UICORE_API_EXPORT void enableEventTypes(eventType _types)
Will enable the provided event types to be send.
Definition uiAPI.cpp:143
UICORE_API_EXPORT aObjectManager * getObjectManager(void)
Will return the object manager used in this API.
Definition uiAPI.cpp:179
UICORE_API_EXPORT void creatorDestroyed(UID _creatorUid)
Will destroy all objects created by this creator.
Definition uiAPI.cpp:1000
timeFormat
Describes the time format.
Definition akCore.h:217
valueType
Definition akCore.h:223
unsigned long long UID
The UID datatype used for objects.
Definition globalDataTypes.h:65
objectType
Describes the type of an object.
Definition akCore.h:167
tabLocation
Descirbes the tab location.
Definition akCore.h:202
textAlignment
Describes the text alignment.
Definition akCore.h:210
HashAlgorithm
Definition akCore.h:121
eventType
Describes the type of an event.
Definition akCore.h:86
int ID
The ID datatype used for items.
Definition globalDataTypes.h:68
dockLocation
Describes the dock location of a dock widget.
Definition akCore.h:79
keyType
Definition akCore.h:143
dateFormat
Describes the date format.
Definition akCore.h:71