Update packages.

This commit is contained in:
2025-06-04 14:34:38 -05:00
parent 48b56213d8
commit 5f53938f67
7 changed files with 83 additions and 17 deletions

View File

@@ -0,0 +1,12 @@
#pragma region
namespace JUI {
/// The CanvasBase class is an object that handles managing and drawing a RenderTarget reference.
/// This class is similar to ImageBase in that it contains and renders a texture-type object,
/// But differs in that this one is intended to be used for interactive drawing.
class CanvasBase {
};
}

View File

@@ -8,7 +8,6 @@
#include "../Style/TextStyler.hpp"
#include <JUI/Widgets/Slider.hpp>
namespace JUI {
std::string rgb2hex(int r, int g, int b, bool with_head)

View File

@@ -0,0 +1,52 @@
/// Josh's User Interface Library
/// A C++20 Library for creating, styling, and rendering of a UI/UX widgets.
/// Developed and Maintained by Josh O'Leary @ Redacted Software.
/// Special Thanks to William Tomasine II and Maxine Hayes.
/// (c) 2024 Redacted Software
/// This work is dedicated to the public domain.
/// @file FileDialog.hpp
/// @desc A dialog window that shows a selection of files on disk, and a form for naming, used for file loading and saving.
/// @edit 2024-5-29
#pragma once
#include <JUI/Widgets/Window.hpp>
#include <JUI/Widgets/UtilityBar.hpp>
#include <JUI/Widgets/ScrollingRect.hpp>
namespace JUI
{
class FileListing : public JUI::Widget { };
class FileDialogWindow : public JUI::Window
{
public:
Event<> UserCompleted;
Event<> UserConfirmed;
Event<> UserCancelled;
FileDialogWindow() : Window() {
auto* toolbar = new JUI::UtilityBar(this->Content());
auto* file_listing = new JUI::ScrollingRect(this->Content());
file_listing->Size({100_percent, 100_percent-20_px});
}
FileDialogWindow(const std::filesystem::path& root) : FileDialogWindow() {}
explicit FileDialogWindow(Widget* parent, const std::filesystem::path& root) : FileDialogWindow(root)
{
Parent(parent);
}
protected:
private:
};
class OpenFileDialogWindow : public JUI::Window { };
class SaveFileDialogWindow : public JUI::Window { };
class SelectFolderDialog : public JUI::Window { };
}

View File

@@ -9,11 +9,7 @@ namespace JUI {
Color4 color;
};
class Graph : public JUI::ImageRect {
public:
protected:
private:
};
class FpsGraph : public JUI::ImageRect
{

View File

@@ -0,0 +1,9 @@
#pragma once
#include "Rect.hpp"
#include "ImageRect.hpp"
class Graph : public JUI::ImageRect {
public:
protected:
private:
};