Files
NazaraEngine/include/Nazara/Widgets/Enums.hpp
SirLynix 5130a2ff84 Remove Config.hpp options and refactor headers
- Rename Config.hpp to Export.hpp
- Remove Debug.hpp and DebugOff.hpp (not used anymore)
2024-02-19 15:11:34 +01:00

46 lines
648 B
C++

// Copyright (C) 2024 Samy Bensaid
// This file is part of the "Nazara Engine - Widgets module"
// For conditions of distribution and use, see copyright notice in Export.hpp
#pragma once
#ifndef NAZARA_WIDGETS_ENUMS_HPP
#define NAZARA_WIDGETS_ENUMS_HPP
namespace Nz
{
enum class BoxLayoutOrientation
{
BottomToTop,
LeftToRight,
RightToLeft,
TopToBottom
};
enum class CheckboxState
{
Checked,
Tristate,
Unchecked,
Max = Unchecked
};
enum class EchoMode
{
Hidden,
HiddenExceptLast,
Normal,
Max = Normal
};
enum class ScrollbarOrientation
{
Horizontal,
Vertical
};
}
#endif // NAZARA_WIDGETS_ENUMS_HPP