Improve the UI/UX of the Export Template Manager dialog

This commit is contained in:
Yuri Sizov 2021-05-20 23:15:49 +03:00
parent 932ab0c637
commit c7bb08fc61
2 changed files with 689 additions and 386 deletions

File diff suppressed because it is too large Load diff

View file

@ -34,50 +34,87 @@
#include "editor/editor_settings.h"
#include "scene/gui/dialogs.h"
#include "scene/gui/file_dialog.h"
#include "scene/gui/menu_button.h"
#include "scene/gui/progress_bar.h"
#include "scene/gui/scroll_container.h"
#include "scene/main/http_request.h"
class ExportTemplateVersion;
class ExportTemplateManager : public ConfirmationDialog {
GDCLASS(ExportTemplateManager, ConfirmationDialog);
class ExportTemplateManager : public AcceptDialog {
GDCLASS(ExportTemplateManager, AcceptDialog);
AcceptDialog *template_downloader;
VBoxContainer *template_list;
Label *template_list_state;
ProgressBar *template_download_progress;
bool current_version_exists = false;
bool downloads_available = true;
bool mirrors_available = false;
bool is_refreshing_mirrors = false;
bool is_downloading_templates = false;
float update_countdown = 0;
ScrollContainer *installed_scroll;
VBoxContainer *installed_vb;
HBoxContainer *current_hb;
FileDialog *template_open;
Label *current_value;
Label *current_missing_label;
Label *current_installed_label;
ConfirmationDialog *remove_confirm;
String to_remove;
HBoxContainer *current_installed_hb;
LineEdit *current_installed_path;
Button *current_open_button;
Button *current_uninstall_button;
HTTPRequest *request_mirror;
VBoxContainer *install_options_vb;
OptionButton *mirrors_list;
enum MirrorAction {
VISIT_WEB_MIRROR,
COPY_MIRROR_URL,
};
MenuButton *mirror_options_button;
HBoxContainer *download_progress_hb;
ProgressBar *download_progress_bar;
Label *download_progress_label;
HTTPRequest *download_templates;
Button *install_file_button;
HTTPRequest *request_mirrors;
Vector<uint8_t> download_data;
enum TemplatesAction {
OPEN_TEMPLATE_FOLDER,
UNINSTALL_TEMPLATE,
};
float update_countdown;
Tree *installed_table;
void _update_template_list();
ConfirmationDialog *uninstall_confirm;
String uninstall_version;
FileDialog *install_file_dialog;
AcceptDialog *hide_dialog_accept;
void _update_template_status();
void _download_current();
void _download_template(const String &p_url, bool p_skip_check = false);
void _download_template_completed(int p_status, int p_code, const PackedStringArray &headers, const PackedByteArray &p_data);
void _cancel_template_download();
void _refresh_mirrors();
void _refresh_mirrors_completed(int p_status, int p_code, const PackedStringArray &headers, const PackedByteArray &p_data);
bool _humanize_http_status(HTTPRequest *p_request, String *r_status, int *r_downloaded_bytes, int *r_total_bytes);
void _set_current_progress_status(const String &p_status, bool p_error = false);
void _set_current_progress_value(float p_value, const String &p_status);
void _install_file();
bool _install_file_selected(const String &p_file, bool p_skip_progress = false);
void _download_template(const String &p_version);
void _uninstall_template(const String &p_version);
void _uninstall_template_confirm();
void _uninstall_template_confirmed();
String _get_selected_mirror() const;
void _mirror_options_button_cbk(int p_id);
void _installed_table_button_cbk(Object *p_item, int p_column, int p_id);
void _open_template_folder(const String &p_version);
virtual void ok_pressed() override;
bool _install_from_file(const String &p_file, bool p_use_progress = true);
void _http_download_mirror_completed(int p_status, int p_code, const PackedStringArray &headers, const PackedByteArray &p_data);
void _http_download_templates_completed(int p_status, int p_code, const PackedStringArray &headers, const PackedByteArray &p_data);
void _begin_template_download(const String &p_url);
void _window_template_downloader_closed();
void _hide_dialog();
protected:
void _notification(int p_what);