blob: 36ced929ab0fdbe64cb7e798bec5ea34611aa315 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
#pragma once
#include <SFML/Graphics/Font.hpp>
#include <SFML/Graphics/Text.hpp>
#include <SFML/Graphics/Texture.hpp>
#include <SFML/Graphics/RenderWindow.hpp>
#include <json/value.h>
#include <thread>
namespace QuickMedia {
class Program;
class BodyItem {
public:
BodyItem(std::string _title): visible(true), num_lines(0) {
set_title(std::move(_title));
}
void set_title(std::string new_title) {
title = std::move(new_title);
// TODO: Optimize this
num_lines = 0;
for(char c : title) {
if(c == '\n')
++num_lines;
}
}
std::string title;
std::string url;
std::string thumbnail_url;
std::string author;
bool visible;
// Used by image boards for example. The elements are indices to other body items
std::vector<size_t> replies;
int num_lines;
std::string post_number;
};
using BodyItems = std::vector<std::unique_ptr<BodyItem>>;
class Body {
public:
Body(Program *program, sf::Font &font, sf::Font &bold_font);
// Select previous item, ignoring invisible items
void select_previous_item();
// Select next item, ignoring invisible items
void select_next_item();
void select_first_item();
void reset_selected();
void clear_items();
BodyItem* get_selected() const;
void clamp_selection();
void draw(sf::RenderWindow &window, sf::Vector2f pos, sf::Vector2f size);
void draw(sf::RenderWindow &window, sf::Vector2f pos, sf::Vector2f size, const Json::Value &content_progress);
static bool string_find_case_insensitive(const std::string &str, const std::string &substr);
// TODO: Make this actually fuzzy... Right now it's just a case insensitive string find.
// TODO: Highlight the part of the text that matches the search.
// TODO: Ignore dot, whitespace and special characters
void filter_search_fuzzy(const std::string &text);
sf::Text title_text;
sf::Text progress_text;
sf::Text author_text;
sf::Text replies_text;
int selected_item;
BodyItems items;
std::thread thumbnail_load_thread;
bool draw_thumbnails;
private:
struct ThumbnailData {
std::string url;
std::shared_ptr<sf::Texture> texture;
};
Program *program;
std::shared_ptr<sf::Texture> load_thumbnail_from_url(const std::string &url);
std::vector<ThumbnailData> item_thumbnail_textures;
bool loading_thumbnail;
};
}
|