Adjustment.h
1 /* Copyright (C) 2017 Marc Boris Duerner
2 
3  This library is free software; you can redistribute it and/or
4  modify it under the terms of the GNU Lesser General Public
5  License as published by the Free Software Foundation; either
6  version 2.1 of the License, or (at your option) any later version.
7 
8  As a special exception, you may use this file as part of a free
9  software library without restriction. Specifically, if other files
10  instantiate templates or use macros or inline functions from this
11  file, or you compile this file and link it with other files to
12  produce an executable, this file does not by itself cause the
13  resulting executable to be covered by the GNU General Public
14  License. This exception does not however invalidate any other
15  reasons why the executable file might be covered by the GNU Library
16  General Public License.
17 
18  This library is distributed in the hope that it will be useful,
19  but WITHOUT ANY WARRANTY; without even the implied warranty of
20  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21  Lesser General Public License for more details.
22 
23  You should have received a copy of the GNU Lesser General Public
24  License along with this library; if not, write to the Free Software
25  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
26  MA 02110-1301 USA
27 */
28 
29 #ifndef Pt_Forms_Adjustment_H
30 #define Pt_Forms_Adjustment_H
31 
32 #include <Pt/Forms/Api.h>
33 #include <Pt/Types.h>
34 
35 namespace Pt {
36 
37 namespace Forms {
38 
60 {
61  public:
64  enum Mode
65  {
69 
73 
77 
80  Justify
81  };
82 
86  : _mode(m)
87  {}
88 
92  {
93  _mode = m;
94  return *this;
95  }
96 
99  operator Pt::uint32_t() const
100  {
101  return _mode;
102  }
103 
104  private:
105  Pt::uint32_t _mode;
106 };
107 
108 } // namespace
109 
110 } // namespace
111 
112 #endif
Core module.
Definition: Allocator.h:33
@ Left
Aligns to the start of the axis.
Definition: Adjustment.h:68
@ Center
Centers on the axis.
Definition: Adjustment.h:76
@ Right
Aligns to the end of the axis.
Definition: Adjustment.h:72
Adjustment & operator=(Mode m)
Sets the adjustment to m and returns this object.
Definition: Adjustment.h:91
uint_type uint32_t
Unsigned 32-bit integer type.
Definition: Api-Types.h:48
Aligns content along one axis.
Definition: Adjustment.h:60
Adjustment(Mode m=Left)
Creates an adjustment with mode m.
Definition: Adjustment.h:85
Mode
Alignment along one axis.
Definition: Adjustment.h:65
@ Justify
Spreads content along the axis.
Definition: Adjustment.h:80