Extract cloud browser item creation helper

This commit is contained in:
2026-06-15 20:48:59 +02:00
parent 0ba7eb8331
commit 45f08ee8e4
5 changed files with 82 additions and 25 deletions

View File

@@ -5,6 +5,8 @@
#include "node_text.h"
#include "node_text_input.h"
#include <vector>
class NodeDialogCloudItem : public NodeBorder
{
public:
@@ -47,4 +49,5 @@ public:
void load_thumbs_thread();
NodeText* create_loading_status_text();
bool load_cloud_file_list(CURL* curl, std::string& response, NodeText& status_text);
std::vector<NodeDialogCloudItem*> create_cloud_file_items(const std::vector<std::string>& names);
};