diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-12-15 14:24:35 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-12-15 14:27:53 +0000 |
commit | ea4c75dcc9c3e53e7ef40bd273ea18a48ea9b18d (patch) | |
tree | fb0162b9210ef365d519ed01cf5635f21374a1e9 /include/vcl/window.hxx | |
parent | 4c82edfb3a9286a0bfef3f006e468e5c331987eb (diff) |
gtk3+wayland: enable manual movement of toolbars
via gtk_window_begin_move_drag so add some BYDRAG/ByDrag hints
to select mechanism to move window by
Change-Id: Icc58653dff752a6d4ee49446647d7ede2af9dd9b
Diffstat (limited to 'include/vcl/window.hxx')
-rw-r--r-- | include/vcl/window.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/vcl/window.hxx b/include/vcl/window.hxx index 06914273c891..0e95d02d1bf2 100644 --- a/include/vcl/window.hxx +++ b/include/vcl/window.hxx @@ -162,10 +162,11 @@ enum class PosSizeFlags PosSize = Pos | Size, All = PosSize, Dropdown = 0x0010, + ByDrag = 0x0020, }; namespace o3tl { - template<> struct typed_flags<PosSizeFlags> : is_typed_flags<PosSizeFlags, 0x001f> {}; + template<> struct typed_flags<PosSizeFlags> : is_typed_flags<PosSizeFlags, 0x003f> {}; } // Flags for Show() |