blob: 1ee237b61c69a886949344d17349c1985895dc46 (
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
42
43
44
45
46
47
48
49
|
#pragma once
#include "Text.hpp"
#include "RoundedRectangle.hpp"
#include <SFML/Graphics/Text.hpp>
#include <functional>
namespace sf {
class Font;
class Event;
class RenderWindow;
class Shader;
}
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::Shader *rounded_rectangle_shader);
void process_event(sf::Event &event);
void draw(sf::RenderWindow &window);
void set_single_line(bool single_line);
void set_editable(bool editable);
void set_text(const std::string &text);
void set_position(const sf::Vector2f &pos);
void set_max_width(float width);
void move_caret_to_end();
void append_text(const std::string &str);
void replace(size_t start_index, size_t length, const sf::String &insert_str);
int get_caret_index() const;
bool is_editable() const;
float get_height();
const sf::String& get_text() const;
OnEntrySubmit on_submit_callback;
bool draw_background;
private:
Text text;
float width;
RoundedRectangle background;
sf::Text placeholder;
bool mouse_left_inside;
};
}
|