UI Widget Enhancements: - Add texture support to UICheckbox (box and checkmark textures) - Add texture support to UISlider (track and handle textures) - Add texture support to UIPanel (background texture) - Add texture support to UIProgressBar (background and fill textures) - Add texture support to UIScrollPanel (background and scrollbar textures) - All widgets now support textureId with tint color for flexible styling BgfxRenderer: - Add texture loading helpers for widget texturing - Update RHI device for texture management - Add ResourceCache texture ID support Maintenance: - Add tmpclaude-* to .gitignore (temporary Claude Code directories) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
98 lines
2.8 KiB
C++
98 lines
2.8 KiB
C++
#pragma once
|
|
|
|
#include "../Core/UIWidget.h"
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
namespace grove {
|
|
|
|
/**
|
|
* @brief Slider widget for numeric value input
|
|
*
|
|
* Draggable slider for selecting a value within a range.
|
|
* Supports horizontal and vertical orientation.
|
|
*/
|
|
class UISlider : public UIWidget {
|
|
public:
|
|
UISlider() = default;
|
|
~UISlider() override = default;
|
|
|
|
void update(UIContext& ctx, float deltaTime) override;
|
|
void render(UIRenderer& renderer) override;
|
|
std::string getType() const override { return "slider"; }
|
|
|
|
/**
|
|
* @brief Check if a point is inside this slider
|
|
*/
|
|
bool containsPoint(float px, float py) const;
|
|
|
|
/**
|
|
* @brief Handle mouse button event
|
|
*/
|
|
bool onMouseButton(int button, bool pressed, float x, float y);
|
|
|
|
/**
|
|
* @brief Handle mouse drag
|
|
*/
|
|
void onMouseDrag(float x, float y);
|
|
|
|
/**
|
|
* @brief Set value (clamped to min/max)
|
|
*/
|
|
void setValue(float newValue);
|
|
|
|
/**
|
|
* @brief Get current value
|
|
*/
|
|
float getValue() const { return value; }
|
|
|
|
// Slider properties
|
|
float minValue = 0.0f;
|
|
float maxValue = 100.0f;
|
|
float value = 50.0f;
|
|
float step = 0.0f; // 0 = continuous, >0 = snap to steps
|
|
|
|
bool horizontal = true; // true = horizontal, false = vertical
|
|
std::string onChange; // Action to publish when value changes
|
|
|
|
// Style
|
|
uint32_t trackColor = 0x34495eFF;
|
|
uint32_t fillColor = 0x3498dbFF;
|
|
uint32_t handleColor = 0xecf0f1FF;
|
|
float handleSize = 16.0f;
|
|
|
|
// Texture support
|
|
int trackTextureId = 0; // Track texture ID (0 = solid color)
|
|
bool useTrackTexture = false; // Use texture for track
|
|
uint32_t trackTintColor = 0xFFFFFFFF; // Tint for track texture
|
|
|
|
int fillTextureId = 0; // Fill texture ID (0 = solid color)
|
|
bool useFillTexture = false; // Use texture for fill
|
|
uint32_t fillTintColor = 0xFFFFFFFF; // Tint for fill texture
|
|
|
|
int handleTextureId = 0; // Handle texture ID (0 = solid color)
|
|
bool useHandleTexture = false; // Use texture for handle
|
|
uint32_t handleTintColor = 0xFFFFFFFF; // Tint for handle texture
|
|
|
|
// State
|
|
bool isDragging = false;
|
|
bool isHovered = false;
|
|
|
|
private:
|
|
/**
|
|
* @brief Calculate handle position from value
|
|
*/
|
|
void calculateHandlePosition(float& handleX, float& handleY) const;
|
|
|
|
/**
|
|
* @brief Calculate value from mouse position
|
|
*/
|
|
float calculateValueFromPosition(float x, float y) const;
|
|
|
|
// Retained mode render IDs (track uses m_renderId from base class)
|
|
uint32_t m_fillRenderId = 0; // Fill element
|
|
uint32_t m_handleRenderId = 0; // Handle element
|
|
};
|
|
|
|
} // namespace grove
|