aboutsummaryrefslogtreecommitdiff
path: root/include/SearchBar.hpp
blob: c9f75f018b7a53b2882b88184bc577d033b9251b (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
#pragma once

#include <SFML/Graphics/RenderWindow.hpp>
#include <SFML/Graphics/Font.hpp>
#include <SFML/Graphics/Text.hpp>
#include <SFML/Graphics/RectangleShape.hpp>
#include <functional>

namespace QuickMedia {
    using TextUpdateCallback = std::function<void(const sf::String &text)>;
    using TextSubmitCallback = std::function<void(const sf::String &text)>;

    class SearchBar {
    public:
        SearchBar(sf::Font &font);
        void draw(sf::RenderWindow &window);
        void update();
        void onWindowResize(const sf::Vector2f &window_size);
        void onTextEntered(sf::Uint32 codepoint);
        void clear();

        float getBottom() const;

        TextUpdateCallback onTextUpdateCallback;
        TextSubmitCallback onTextSubmitCallback;
    private:
        sf::Text text;
        sf::RectangleShape background;
        bool show_placeholder;
        bool updated_search;
        sf::Clock time_since_search_update;
    };
}