tageditor/gui/previousvaluehandling.h

21 lines
565 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.
*/
enum class PreviousValueHandling : int
{
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. */
};
}
#endif // QTGUI_PREVIOUSVALUEHANDLING_H