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

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

namespace QuickMedia {
    using TextUpdateCallback = std::function<void(const sf::String &text)>;
    // Return true to consume the search (clear the search field)
    using TextSubmitCallback = std::function<bool(const sf::String &text)>;

    class SearchBar {
    public:
        SearchBar(sf::Font &font, sf::Texture &plugin_logo);
        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;
        int text_autosearch_delay;
    private:
        sf::Text text;
        sf::RectangleShape background;
        sf::RectangleShape background_shadow;
        sf::RectangleShape shade;
        sf::Sprite plugin_logo_sprite;
        bool show_placeholder;
        bool updated_search;
        bool draw_logo;
        sf::Clock time_since_search_update;
    };
}