Update to latest ZWidget

This commit is contained in:
dpjudas 2025-02-27 02:54:04 +01:00
commit 92b08a5c18
78 changed files with 7123 additions and 1261 deletions

View file

@ -7,13 +7,13 @@
class Widget;
/// \brief Displays the system folder browsing dialog
class BrowseFolderDialog
class OpenFolderDialog
{
public:
/// \brief Constructs an browse folder dialog.
static std::unique_ptr<BrowseFolderDialog> Create(Widget*owner);
static std::unique_ptr<OpenFolderDialog> Create(Widget*owner);
virtual ~BrowseFolderDialog() = default;
virtual ~OpenFolderDialog() = default;
/// \brief Get the full path of the directory selected.
virtual std::string SelectedPath() const = 0;