MyGUI
3.4.1
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
EditText
()
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
Definition:
MyGUI_EditText.h:27
MyGUI::EditText::mEmptyView
bool mEmptyView
Definition:
MyGUI_EditText.h:135
MyGUI::EditText::mFont
IFont * mFont
Definition:
MyGUI_EditText.h:151
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:143
MyGUI::EditText::mViewOffset
IntPoint mViewOffset
Definition:
MyGUI_EditText.h:163
MyGUI::EditText::mTextAlign
Align mTextAlign
Definition:
MyGUI_EditText.h:144
MyGUI::EditText::doRender
void doRender() override
Definition:
MyGUI_EditText.cpp:510
MyGUI::EditText::mRenderItem
RenderItem * mRenderItem
Definition:
MyGUI_EditText.h:166
MyGUI::EditText::updateRawData
void updateRawData() const
Definition:
MyGUI_EditText.cpp:483
MyGUI::ICroppedRectangle::mCoord
IntCoord mCoord
Definition:
MyGUI_ICroppedRectangle.h:245
MyGUI::ISubWidget::mVisible
bool mVisible
Definition:
MyGUI_ISubWidget.h:60
MyGUI::RenderItem::getCurrentUpdate
bool getCurrentUpdate() const
Definition:
MyGUI_RenderItem.cpp:225
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::TextView::getViewSize
const IntSize & getViewSize() const
Definition:
MyGUI_TextView.cpp:365
MyGUI
Definition:
MyGUI_ActionController.h:15
MyGUI::Align::isVCenter
bool isVCenter() const
Definition:
MyGUI_Align.h:49
MyGUI::Align::isRight
bool isRight() const
Definition:
MyGUI_Align.h:64
MyGUI::Align::isHCenter
bool isHCenter() const
Definition:
MyGUI_Align.h:44
MyGUI::Align::isBottom
bool isBottom() const
Definition:
MyGUI_Align.h:79
MyGUI::types::TCoord::height
T height
Definition:
MyGUI_TCoord.h:25
MyGUI::types::TCoord::width
T width
Definition:
MyGUI_TCoord.h:24
MyGUI::types::TPoint< int >
MyGUI::types::TPoint::left
T left
Definition:
MyGUI_TPoint.h:20
MyGUI::types::TPoint::top
T top
Definition:
MyGUI_TPoint.h:21
MyGUI::types::TSize< int >
MyGUI::types::TSize::width
T width
Definition:
MyGUI_TSize.h:20
MyGUI::types::TSize::height
T height
Definition:
MyGUI_TSize.h:21
Generated by
1.9.4