mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
Added TypeInfo for all relevant types Added comments Updated DependencyProperty to work with System::Type Fixed casing on PropertyMetadata
64 lines
1.8 KiB
C++
64 lines
1.8 KiB
C++
/*****************************************************************************
|
|
* RangeBase.h *
|
|
* *
|
|
* System::Windows::Controls::Primitives::RangeBase definition file *
|
|
* Copyright (c) XFX Team. All rights reserved *
|
|
*****************************************************************************/
|
|
#ifndef _SYSTEM_WINDOWS_CONTROLS_PRIMITIVES_RANGEBASE_
|
|
#define _SYSTEM_WINDOWS_CONTROLS_PRIMITIVES_RANGEBASE_
|
|
|
|
#include <System/Windows/Controls/Control.h>
|
|
#include <System/Windows/RoutedPropertyChangedEventArgs.h>
|
|
|
|
namespace System
|
|
{
|
|
namespace Windows
|
|
{
|
|
namespace Controls
|
|
{
|
|
namespace Primitives
|
|
{
|
|
/**
|
|
* Represents an element that has a value within a specific range, such as the System::Windows::Controls::ProgressBar, System::Windows::Controls::Primitives::ScrollBar, and System::Windows::Controls::Slider controls.
|
|
*/
|
|
class RangeBase : public Control
|
|
{
|
|
private:
|
|
int maximum;
|
|
int minimum;
|
|
int value;
|
|
|
|
protected:
|
|
RangeBase();
|
|
|
|
virtual void OnMaximumChanged(const int oldValue, int newValue);
|
|
virtual void OnMinimumChanged(const int oldValue, int newValue);
|
|
virtual void OnValueChanged(const int oldValue, int newValue);
|
|
|
|
public:
|
|
int getMaximum() const;
|
|
void setMaximum(const int value);
|
|
int getMinimum() const;
|
|
void setMinimum(const int value);
|
|
int LargeChange;
|
|
int SmallChange;
|
|
int getValue() const;
|
|
void setValue(const int value);
|
|
|
|
virtual ~RangeBase();
|
|
|
|
static const Type& GetType();
|
|
const String ToString() const;
|
|
|
|
Event<Object * const, RoutedPropertyChangedEventArgs<int> * const> ValueChanged;
|
|
|
|
bool operator ==(const RangeBase& right) const;
|
|
bool operator !=(const RangeBase& right) const;
|
|
};
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif //_SYSTEM_WINDOWS_CONTROLS_PRIMITIVES_RANGEBASE_
|