Enumerations | |
enum | Rotation { NoRotation = 0, UpsideDown = 180, Clockwise = 90, CounterClockwise = 270 } |
enum | DecorationStyle { NoDecoration, Buttonlike, Menulike } |
enum | ErrorCode { NoError, UnknownError, LogicalError, Bug, UnexpectedEndOfFunction, NotImplemented, CodecError, NotInitialised, EndOfFile, FileIOError, FormatError, DeviceError, SDLError, InsufficientMemory, SeeErrorString, UnexpectedNullParameter, ClientTimeout, SocketIOError, ParserError, HeaderTooLong, Auth, Overflow } |
enum | QxtItemDataRole { ItemStartTimeRole = Qt::UserRole + 1, ItemDurationRole = ItemStartTimeRole + 1, UserRole = ItemDurationRole + 23 } |
enum | Timeunit { Second, Minute, Hour, Day, Week, Month, Year } |
The Qxt Namespace.
The Qxt Namespace
enum Qxt::DecorationStyle |
This enum describes the decoration style.
NoDecoration |
No decoration |
Buttonlike |
A style like in Qt Designer's Widget Box. |
Menulike |
A menu alike style. |
Definition at line 80 of file qxtnamespace.h.
{ NoDecoration, Buttonlike, Menulike };
enum Qxt::ErrorCode |
The error Code dropped by QxtError
Definition at line 92 of file qxtnamespace.h.
{ NoError, UnknownError, LogicalError, Bug, UnexpectedEndOfFunction, NotImplemented, CodecError, NotInitialised, EndOfFile, FileIOError, FormatError, //10 DeviceError, SDLError, InsufficientMemory, SeeErrorString, UnexpectedNullParameter, ClientTimeout, SocketIOError, ParserError, HeaderTooLong, Auth, Overflow };
enum Qxt::QxtItemDataRole |
Data roles for qxt models/views
ItemStartTimeRole |
The starttime of a item in timebased views |
ItemDurationRole |
The duration of a item in timebased views |
UserRole |
The first role that can be used for application-specific purposes. |
Definition at line 123 of file qxtnamespace.h.
{ ItemStartTimeRole = Qt::UserRole + 1, ItemDurationRole = ItemStartTimeRole + 1, UserRole = ItemDurationRole + 23 };
enum Qxt::Rotation |
This enum describes the rotation.
NoRotation |
No rotation. |
UpsideDown |
Upside down (180 degrees). |
Clockwise |
Clockwise (90 degrees). |
CounterClockwise |
CounterClockwise (-90 degrees). |
Definition at line 66 of file qxtnamespace.h.
{ NoRotation = 0, UpsideDown = 180, Clockwise = 90, CounterClockwise = 270 };
enum Qxt::Timeunit |