aboutsummaryrefslogtreecommitdiff
path: root/src/ui/controls/text_block.cpp
blob: 7c52684d3baa3ae4dfdf1fcd39691f4ce1ee3ac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "text_block.h"

#include "ui/window.h"

namespace cru
{
    namespace ui
    {
        namespace controls
        {
            TextBlock::TextBlock(const Microsoft::WRL::ComPtr<IDWriteTextFormat>& init_text_format,
                const Microsoft::WRL::ComPtr<ID2D1Brush>& init_brush) : TextControl(init_text_format, init_brush)
            {

            }

            StringView TextBlock::GetControlType() const
            {
                return control_type;
            }
        }
    }
}