aboutsummaryrefslogtreecommitdiff
path: root/include/Entry.hpp
blob: 27c3517c6710f2671145b67f81ff29b41acc5892 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#pragma once

#include "Text.hpp"
#include "../external/RoundedRectangleShape.hpp"
#include <SFML/Graphics/Text.hpp>
#include <functional>

namespace sf {
    class Font;
    class Event;
    class RenderWindow;
}

namespace QuickMedia {
    // Return true to clear the text
    using OnEntrySubmit = std::function<bool(std::string text)>;

    class Entry {
    public:
        Entry(const std::string &placeholder_text, sf::Font *font, sf::Font *cjk_font);
        void process_event(sf::Event &event);
        void draw(sf::RenderWindow &window);

        void set_editable(bool editable);
        void set_text(std::string text);
        void set_position(const sf::Vector2f &pos);
        void set_max_width(float width);
        void move_caret_to_end();
        void append_text(std::string str);

        float get_height();

        OnEntrySubmit on_submit_callback;
        bool draw_background;
    private:
        Text text;
        float width;
        sf::RoundedRectangleShape background;
        sf::Text placeholder;
    };
}