Otclient  14/8/2020
uiverticallayout.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2020 OTClient <https://github.com/edubart/otclient>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a copy
5  * of this software and associated documentation files (the "Software"), to deal
6  * in the Software without restriction, including without limitation the rights
7  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8  * copies of the Software, and to permit persons to whom the Software is
9  * furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
20  * THE SOFTWARE.
21  */
22 
23 #ifndef UIVERTICALLAYOUT_H
24 #define UIVERTICALLAYOUT_H
25 
26 #include "uiboxlayout.h"
27 
28 // @bindclass
30 {
31 public:
32  UIVerticalLayout(UIWidgetPtr parentWidget) : UIBoxLayout(parentWidget) { }
33 
34  void applyStyle(const OTMLNodePtr& styleNode);
35 
36  void setAlignBottom(bool aliginBottom) { m_alignBottom = aliginBottom; update(); }
37  bool isAlignBottom() { return m_alignBottom; }
38 
39  bool isUIVerticalLayout() { return true; }
40 
41 protected:
42  bool internalUpdate();
43 
45 };
46 
47 #endif
UIVerticalLayout::applyStyle
void applyStyle(const OTMLNodePtr &styleNode)
Definition: uiverticallayout.cpp:27
UIVerticalLayout::isAlignBottom
bool isAlignBottom()
Definition: uiverticallayout.h:37
uiboxlayout.h
UIVerticalLayout::internalUpdate
bool internalUpdate()
Definition: uiverticallayout.cpp:37
stdext::boolean< false >
UIVerticalLayout::m_alignBottom
stdext::boolean< false > m_alignBottom
Definition: uiverticallayout.h:44
UIVerticalLayout::setAlignBottom
void setAlignBottom(bool aliginBottom)
Definition: uiverticallayout.h:36
UIVerticalLayout
Definition: uiverticallayout.h:29
UIBoxLayout
Definition: uiboxlayout.h:29
UILayout::update
void update()
Definition: uilayout.cpp:28
UIVerticalLayout::UIVerticalLayout
UIVerticalLayout(UIWidgetPtr parentWidget)
Definition: uiverticallayout.h:32
stdext::shared_object_ptr< UIWidget >
UIVerticalLayout::isUIVerticalLayout
bool isUIVerticalLayout()
Definition: uiverticallayout.h:39