Widgets: Add [Rich]TextAreaWidget
This commit is contained in:
37
include/Nazara/Widgets/Enums.hpp
Normal file
37
include/Nazara/Widgets/Enums.hpp
Normal file
@@ -0,0 +1,37 @@
|
||||
// Copyright (C) 2021 Samy Bensaid
|
||||
// This file is part of the "Nazara Engine - Widgets module"
|
||||
// For conditions of distribution and use, see copyright notice in Config.hpp
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef NAZARA_WIDGETS_ENUMS_HPP
|
||||
#define NAZARA_WIDGETS_ENUMS_HPP
|
||||
|
||||
namespace Nz
|
||||
{
|
||||
enum class BoxLayoutOrientation
|
||||
{
|
||||
Horizontal,
|
||||
Vertical
|
||||
};
|
||||
|
||||
enum class CheckboxState
|
||||
{
|
||||
Checked,
|
||||
Tristate,
|
||||
Unchecked,
|
||||
|
||||
Max = Unchecked
|
||||
};
|
||||
|
||||
enum class EchoMode
|
||||
{
|
||||
Hidden,
|
||||
HiddenExceptLast,
|
||||
Normal,
|
||||
|
||||
Max = Normal
|
||||
};
|
||||
}
|
||||
|
||||
#endif // NAZARA_WIDGETS_ENUMS_HPP
|
||||
Reference in New Issue
Block a user