summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-08-26 17:36:38 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-08-27 10:16:00 +0200
commit3636972c4ef6135ffa8de7c94412b9cdcbaaf169 (patch)
tree7c7ec1ce7c37aedf9f7941488bc94fa744819292 /include
parentf9f52b918a3255521bd74cd88939c45381297e19 (diff)
move DrawFrameFlags to vclenum.hxx
Change-Id: I49c4a95dc30584753724c1f824f12ce33317312d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101428 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/vcl/decoview.hxx15
-rw-r--r--include/vcl/vclenum.hxx15
2 files changed, 15 insertions, 15 deletions
diff --git a/include/vcl/decoview.hxx b/include/vcl/decoview.hxx
index 40dc600b87d2..4ab2fe70d314 100644
--- a/include/vcl/decoview.hxx
+++ b/include/vcl/decoview.hxx
@@ -42,21 +42,6 @@ namespace o3tl
template<> struct typed_flags<DrawSymbolFlags> : is_typed_flags<DrawSymbolFlags, 0x03> {};
}
-// Flags for DrawFrame()
-enum class DrawFrameFlags
-{
- NONE = 0x0000,
- Menu = 0x0010,
- WindowBorder = 0x0020,
- BorderWindowBorder = 0x0040,
- Mono = 0x1000,
- NoDraw = 0x8000,
-};
-namespace o3tl
-{
- template<> struct typed_flags<DrawFrameFlags> : is_typed_flags<DrawFrameFlags, 0x9070> {};
-}
-
// Flags for DrawHighlightFrame()
enum class DrawHighlightFrameStyle
{
diff --git a/include/vcl/vclenum.hxx b/include/vcl/vclenum.hxx
index 9ac6e79b7737..59f0cb3c9f39 100644
--- a/include/vcl/vclenum.hxx
+++ b/include/vcl/vclenum.hxx
@@ -343,6 +343,21 @@ enum class DrawFrameStyle
NWF = 0x0006,
};
+// Flags for DrawFrame()
+enum class DrawFrameFlags
+{
+ NONE = 0x0000,
+ Menu = 0x0010,
+ WindowBorder = 0x0020,
+ BorderWindowBorder = 0x0040,
+ Mono = 0x1000,
+ NoDraw = 0x8000,
+};
+namespace o3tl
+{
+ template<> struct typed_flags<DrawFrameFlags> : is_typed_flags<DrawFrameFlags, 0x9070> {};
+}
+
enum class TxtAlign
{
Left,