MyGUI
3.4.3
Main Page
Related Pages
Namespaces
Data Structures
Files
Examples
File List
Globals
MyGUIEngine
src
MyGUI_SimpleText.cpp
Go to the documentation of this file.
1
/*
2
* This source file is part of MyGUI. For the latest info, see http://mygui.info/
3
* Distributed under the MIT License
4
* (See accompanying file COPYING.MIT or copy at http://opensource.org/licenses/MIT)
5
*/
6
7
#include "
MyGUI_Precompiled.h
"
8
#include "
MyGUI_SimpleText.h
"
9
#include "
MyGUI_RenderItem.h
"
10
#include "
MyGUI_LayerNode.h
"
11
#include "
MyGUI_FontManager.h
"
12
#include "
MyGUI_CommonStateInfo.h
"
13
#include "
MyGUI_RenderManager.h
"
14
15
namespace
MyGUI
16
{
17
18
SimpleText::SimpleText
()
19
20
{
21
mIsAddCursorWidth
=
false
;
22
}
23
24
void
SimpleText::setViewOffset
(
const
IntPoint
& _point)
25
{
26
}
27
28
void
SimpleText::doRender
()
29
{
30
bool
_update =
mRenderItem
->getCurrentUpdate();
31
if
(_update)
32
mTextOutDate
=
true
;
33
34
if
(
nullptr
==
mFont
)
35
return
;
36
if
(!
mVisible
||
mEmptyView
)
37
return
;
38
39
if
(
mTextOutDate
)
40
updateRawData
();
41
42
const
IntSize
& size =
mTextView
.getViewSize();
43
44
if
(
mTextAlign
.isRight())
45
mViewOffset
.left = -(
mCoord
.width - size.
width
);
46
else
if
(
mTextAlign
.isHCenter())
47
mViewOffset
.left = -((
mCoord
.width - size.
width
) / 2);
48
else
49
mViewOffset
.left = 0;
50
51
if
(
mTextAlign
.isBottom())
52
mViewOffset
.top = -(
mCoord
.height - size.
height
);
53
else
if
(
mTextAlign
.isVCenter())
54
mViewOffset
.top = -((
mCoord
.height - size.
height
) / 2);
55
else
56
mViewOffset
.top = 0;
57
58
Base::doRender
();
59
}
60
61
}
// namespace MyGUI
MyGUI_CommonStateInfo.h
MyGUI_FontManager.h
MyGUI_LayerNode.h
MyGUI_Precompiled.h
MyGUI_RenderItem.h
MyGUI_RenderManager.h
MyGUI_SimpleText.h
MyGUI::EditText::mEmptyView
bool mEmptyView
Definition
MyGUI_EditText.h:134
MyGUI::EditText::mFont
IFont * mFont
Definition
MyGUI_EditText.h:150
MyGUI::EditText::mTextView
TextView mTextView
Definition
MyGUI_EditText.h:175
MyGUI::EditText::mIsAddCursorWidth
bool mIsAddCursorWidth
Definition
MyGUI_EditText.h:168
MyGUI::EditText::mTextOutDate
bool mTextOutDate
Definition
MyGUI_EditText.h:142
MyGUI::EditText::mViewOffset
IntPoint mViewOffset
Definition
MyGUI_EditText.h:163
MyGUI::EditText::mTextAlign
Align mTextAlign
Definition
MyGUI_EditText.h:143
MyGUI::EditText::mRenderItem
RenderItem * mRenderItem
Definition
MyGUI_EditText.h:166
MyGUI::EditText::updateRawData
void updateRawData() const
Definition
MyGUI_EditText.cpp:458
MyGUI::ICroppedRectangle::mCoord
IntCoord mCoord
Definition
MyGUI_ICroppedRectangle.h:245
MyGUI::ISubWidget::mVisible
bool mVisible
Definition
MyGUI_ISubWidget.h:68
MyGUI::SimpleText::setViewOffset
void setViewOffset(const IntPoint &_point) override
Definition
MyGUI_SimpleText.cpp:24
MyGUI::SimpleText::doRender
void doRender() override
Definition
MyGUI_SimpleText.cpp:28
MyGUI::SimpleText::SimpleText
SimpleText()
Definition
MyGUI_SimpleText.cpp:18
MyGUI
Definition
MyGUI_ActionController.h:15
MyGUI::IntPoint
types::TPoint< int > IntPoint
Definition
MyGUI_Types.h:27
MyGUI::IntSize
types::TSize< int > IntSize
Definition
MyGUI_Types.h:30
MyGUI::types::TSize::width
T width
Definition
MyGUI_TSize.h:19
MyGUI::types::TSize::height
T height
Definition
MyGUI_TSize.h:20
Generated by
1.13.2