Merge pull request #50531 from pycbouh/editor-improve-template-downloader-3.x
[3.x] Improve the UI/UX of the Export Template Manager dialog
This commit is contained in:
commit
7fe45cb25b
File diff suppressed because it is too large
Load Diff
@ -34,50 +34,88 @@
|
|||||||
#include "editor/editor_settings.h"
|
#include "editor/editor_settings.h"
|
||||||
#include "scene/gui/dialogs.h"
|
#include "scene/gui/dialogs.h"
|
||||||
#include "scene/gui/file_dialog.h"
|
#include "scene/gui/file_dialog.h"
|
||||||
|
#include "scene/gui/menu_button.h"
|
||||||
#include "scene/gui/progress_bar.h"
|
#include "scene/gui/progress_bar.h"
|
||||||
#include "scene/gui/scroll_container.h"
|
#include "scene/gui/scroll_container.h"
|
||||||
#include "scene/main/http_request.h"
|
#include "scene/main/http_request.h"
|
||||||
|
|
||||||
class ExportTemplateVersion;
|
class ExportTemplateVersion;
|
||||||
|
|
||||||
class ExportTemplateManager : public ConfirmationDialog {
|
class ExportTemplateManager : public AcceptDialog {
|
||||||
GDCLASS(ExportTemplateManager, ConfirmationDialog);
|
GDCLASS(ExportTemplateManager, AcceptDialog);
|
||||||
|
|
||||||
AcceptDialog *template_downloader;
|
bool current_version_exists = false;
|
||||||
VBoxContainer *template_list;
|
bool downloads_available = true;
|
||||||
Label *template_list_state;
|
bool mirrors_available = false;
|
||||||
ProgressBar *template_download_progress;
|
bool is_refreshing_mirrors = false;
|
||||||
|
bool is_downloading_templates = false;
|
||||||
|
float update_countdown = 0;
|
||||||
|
|
||||||
ScrollContainer *installed_scroll;
|
Label *current_value;
|
||||||
VBoxContainer *installed_vb;
|
Label *current_missing_label;
|
||||||
HBoxContainer *current_hb;
|
Label *current_installed_label;
|
||||||
FileDialog *template_open;
|
|
||||||
|
|
||||||
ConfirmationDialog *remove_confirm;
|
HBoxContainer *current_installed_hb;
|
||||||
String to_remove;
|
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;
|
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 PoolStringArray &headers, const PoolByteArray &p_data);
|
||||||
|
void _cancel_template_download();
|
||||||
|
void _refresh_mirrors();
|
||||||
|
void _refresh_mirrors_completed(int p_status, int p_code, const PoolStringArray &headers, const PoolByteArray &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(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();
|
virtual void ok_pressed();
|
||||||
bool _install_from_file(const String &p_file, bool p_use_progress = true);
|
virtual void cancel_pressed();
|
||||||
|
void _hide_dialog();
|
||||||
void _http_download_mirror_completed(int p_status, int p_code, const PoolStringArray &headers, const PoolByteArray &p_data);
|
|
||||||
void _http_download_templates_completed(int p_status, int p_code, const PoolStringArray &headers, const PoolByteArray &p_data);
|
|
||||||
|
|
||||||
void _begin_template_download(const String &p_url);
|
|
||||||
|
|
||||||
void _window_template_downloader_closed();
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void _notification(int p_what);
|
void _notification(int p_what);
|
||||||
|
Loading…
Reference in New Issue
Block a user