tageditor/gui/previousvaluehandling.h

20 lines
584 B
C
Raw Normal View History

2015-04-22 19:33:53 +02:00
#ifndef QTGUI_PREVIOUSVALUEHANDLING_H
#define QTGUI_PREVIOUSVALUEHANDLING_H
namespace QtGui {
/*!
* \brief Specifies the "previous value handling" policy.
*/
2018-03-07 01:18:01 +01:00
enum class PreviousValueHandling : int {
2015-04-22 19:33:53 +02:00
Auto, /**< The policy is determined automatically. */
Clear, /**< The previous value will be cleared. */
Update, /**< The previous value will be updated. */
IncrementUpdate, /**< The previous value will be updated or - if possible - incremented. */
Keep /**< The previous value will be kept. */
};
2018-03-07 01:18:01 +01:00
} // namespace QtGui
2015-04-22 19:33:53 +02:00
#endif // QTGUI_PREVIOUSVALUEHANDLING_H