mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-23 17:38:20 +01:00
97 lines
2.4 KiB
C++
97 lines
2.4 KiB
C++
#ifndef HTML_PAGINATOR_H
|
|
#define HTML_PAGINATOR_H
|
|
|
|
#include "core/ustring.h"
|
|
#include "core/vector.h"
|
|
|
|
#include "core/reference.h"
|
|
|
|
class HTMLPaginator : public Reference {
|
|
GDCLASS(HTMLPaginator, Reference);
|
|
|
|
public:
|
|
//settint the item count will update page count and vice versa
|
|
int get_item_count() const;
|
|
void set_item_count(const int val);
|
|
|
|
int get_page_count() const;
|
|
void set_page_count(const int val);
|
|
|
|
int get_max_visible_links() const;
|
|
void set_max_visible_links(const int val);
|
|
|
|
String get_base_url();
|
|
void set_base_url(const String &val);
|
|
|
|
PoolStringArray get_links();
|
|
void set_links(const PoolStringArray &val);
|
|
|
|
bool get_use_links_array();
|
|
void set_use_links_array(const bool &val);
|
|
|
|
bool get_hide_if_one_page();
|
|
void set_hide_if_one_page(const bool &val);
|
|
|
|
String get_class_main_ul();
|
|
void set_class_main_ul(const String &val);
|
|
|
|
String get_class_enabled_li();
|
|
void set_class_enabled_li(const String &val);
|
|
|
|
String get_class_disabled_li();
|
|
void set_class_disabled_li(const String &val);
|
|
|
|
String get_text_next_link();
|
|
void set_text_next_link(const String &val);
|
|
|
|
String get_text_prev_link();
|
|
void set_text_prev_link(const String &val);
|
|
|
|
Ref<HTMLPaginator> get_renderer();
|
|
void set_renderer(const Ref<HTMLPaginator> &val);
|
|
|
|
void start();
|
|
String next();
|
|
String get_current();
|
|
|
|
String get_pagination_for_indx(const int page_index);
|
|
String get_pagination_for_num(const int page_num);
|
|
|
|
String render_indexed(Ref<HTMLPaginator> target, const int page_index);
|
|
String render_links(Ref<HTMLPaginator> target, const int page_index);
|
|
|
|
virtual String _render_indexed(Ref<HTMLPaginator> target, const int page_index);
|
|
virtual String _render_links(Ref<HTMLPaginator> target, const int page_index);
|
|
|
|
//Old methods for the time being
|
|
static String get_pagination_old(const String &base_url, const int max, const int current_index, const int max_visible_links = 10);
|
|
static String get_pagination_links_old(const String &base_url, const Vector<String> &links, const int current_index, const int max_visible_links = 10);
|
|
|
|
HTMLPaginator();
|
|
~HTMLPaginator();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
String base_url;
|
|
PoolStringArray links;
|
|
|
|
bool use_links_array;
|
|
bool hide_if_one_page;
|
|
|
|
String class_main_ul;
|
|
String class_enabled_li;
|
|
String class_disabled_li;
|
|
String text_next_link;
|
|
String text_prev_link;
|
|
|
|
Ref<HTMLPaginator> renderer;
|
|
|
|
int _item_count;
|
|
int _page_count;
|
|
int _max_visible_links;
|
|
int _current_page_index;
|
|
};
|
|
|
|
#endif
|