2023-05-30 16:31:45 +02:00
/*
* Slider . h , part of VCMI engine
*
* Authors : listed in file AUTHORS in main folder
*
* License : GNU General Public License v2 .0 or later
* Full text of license available in license . txt file , in main folder
*
*/
# pragma once
# include "Scrollable.h"
# include "../../lib/FunctionList.h"
class CButton ;
/// A typical slider which can be orientated horizontally/vertically.
2023-05-30 17:10:22 +02:00
class CSlider : public Scrollable
2023-05-30 16:31:45 +02:00
{
//if vertical then left=up
std : : shared_ptr < CButton > left ;
std : : shared_ptr < CButton > right ;
std : : shared_ptr < CButton > slider ;
std : : optional < Rect > scrollBounds ;
/// how many elements are visible simultaneously
int capacity ;
/// number of highest position, or 0 if there is only one
int positions ;
/// total amount of elements in the list
int amount ;
/// topmost vislble (first active) element
int value ;
CFunctionList < void ( int ) > moved ;
void updateSliderPos ( ) ;
public :
enum EStyle
{
BROWN ,
BLUE
} ;
void block ( bool on ) ;
/// If set, mouse scroll will only scroll slider when inside of this area
void setScrollBounds ( const Rect & bounds ) ;
void clearScrollBounds ( ) ;
/// Value modifiers
2023-05-30 17:10:22 +02:00
void scrollTo ( int value ) ;
void scrollBy ( int amount ) override ;
void scrollToMin ( ) ;
void scrollToMax ( ) ;
2023-05-30 16:31:45 +02:00
/// Amount modifier
void setAmount ( int to ) ;
2023-11-10 17:18:49 +02:00
virtual void setValue ( int to ) ;
2023-05-30 16:31:45 +02:00
/// Accessors
int getAmount ( ) const ;
2023-11-10 17:18:49 +02:00
virtual int getValue ( ) const ;
2023-05-30 16:31:45 +02:00
int getCapacity ( ) const ;
void addCallback ( std : : function < void ( int ) > callback ) ;
bool receiveEvent ( const Point & position , int eventType ) const override ;
void keyPressed ( EShortcut key ) override ;
2023-07-08 13:33:04 +02:00
void clickPressed ( const Point & cursorPosition ) override ;
2023-06-22 21:11:48 +02:00
void mouseDragged ( const Point & cursorPosition , const Point & lastUpdateDistance ) override ;
2023-06-22 22:49:38 +02:00
void gesturePanning ( const Point & initialPosition , const Point & currentPosition , const Point & lastUpdateDistance ) override ;
2023-05-30 16:31:45 +02:00
void showAll ( Canvas & to ) override ;
/// @param position coordinates of slider
/// @param length length of slider ribbon, including left/right buttons
/// @param Moved function that will be called whenever slider moves
/// @param Capacity maximal number of visible at once elements
/// @param Amount total amount of elements, including not visible
/// @param Value starting position
2023-11-10 17:18:49 +02:00
CSlider ( Point position , int length , const std : : function < void ( int ) > & Moved , int Capacity , int Amount ,
2023-06-22 22:49:38 +02:00
int Value , Orientation orientation , EStyle style = BROWN ) ;
2023-05-30 16:31:45 +02:00
~ CSlider ( ) ;
} ;
2023-11-10 17:18:49 +02:00
class SliderNonlinear : public CSlider
{
/// If non-empty then slider has non-linear values, e.g. if slider is at position 5 out of 10 then actual "value" is not 5, but 5th value in this vector
std : : vector < int > scaledValues ;
using CSlider : : setAmount ; // make private
public :
void setValue ( int to ) override ;
int getValue ( ) const override ;
SliderNonlinear ( Point position , int length , const std : : function < void ( int ) > & Moved , const std : : vector < int > & values , int Value , Orientation orientation , EStyle style ) ;
} ;