1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
|
#ifndef oxygenscrollbardata_h
#define oxygenscrollbardata_h
//////////////////////////////////////////////////////////////////////////////
// oxygenscrollbardata.h
// data container for QScrollBar animations
// -------------------
//
// Copyright (c) 2009 Hugo Pereira Da Costa <hugo@oxygen-icons.org>
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.
//////////////////////////////////////////////////////////////////////////////
#include "sliderdata.h"
//! scrollbar data
class ScrollBarData: public SliderData {
Q_OBJECT
Q_PROPERTY( qreal addLineOpacity READ addLineOpacity WRITE setAddLineOpacity )
Q_PROPERTY( qreal subLineOpacity READ subLineOpacity WRITE setSubLineOpacity )
public:
//! constructor
ScrollBarData( QObject* parent, QWidget* target, int );
//! destructor
virtual ~ScrollBarData( void )
{}
//! event filter
virtual bool eventFilter( QObject*, QEvent* );
//! needed to avoid warning about virtual function being hidden
using SliderData::animation;
using SliderData::opacity;
//! return animation for a given subcontrol
virtual const Animation::Pointer& animation( QStyle::SubControl ) const;
//! return default opacity for a given subcontrol
virtual qreal opacity( QStyle::SubControl ) const;
//! return default opacity for a given subcontrol
virtual bool isHovered( QStyle::SubControl control ) const {
switch ( control ) {
case QStyle::SC_ScrollBarAddLine:
return addLineArrowHovered();
case QStyle::SC_ScrollBarSubLine:
return subLineArrowHovered();
default:
return false;
}
}
//! subControlRect
virtual QRect subControlRect( QStyle::SubControl control ) const {
switch ( control ) {
case QStyle::SC_ScrollBarAddLine:
return addLineData_.rect_;
case QStyle::SC_ScrollBarSubLine:
return subLineData_.rect_;
default:
return QRect();
}
}
//! subcontrol rect
virtual void setSubControlRect( QStyle::SubControl control, const QRect& rect ) {
switch ( control ) {
case QStyle::SC_ScrollBarAddLine:
addLineData_.rect_ = rect;
break;
case QStyle::SC_ScrollBarSubLine:
subLineData_.rect_ = rect;
break;
default:
break;
}
}
//! duration
virtual void setDuration( int duration ) {
SliderData::setDuration( duration );
addLineAnimation().data()->setDuration( duration );
subLineAnimation().data()->setDuration( duration );
}
//! addLine opacity
virtual void setAddLineOpacity( qreal value ) {
if ( addLineData_.opacity_ == value ) return;
addLineData_.opacity_ = value;
setDirty();
}
//! addLine opacity
virtual qreal addLineOpacity( void ) const {
return addLineData_.opacity_;
}
//! subLine opacity
virtual void setSubLineOpacity( qreal value ) {
if ( subLineData_.opacity_ == value ) return;
subLineData_.opacity_ = value;
setDirty();
}
//! subLine opacity
virtual qreal subLineOpacity( void ) const {
return subLineData_.opacity_;
}
protected slots:
//! clear addLineRect
void clearAddLineRect( void ) {
if ( addLineAnimation().data()->direction() == Animation::Backward ) {
addLineData_.rect_ = QRect();
}
}
//! clear subLineRect
void clearSubLineRect( void ) {
if ( subLineAnimation().data()->direction() == Animation::Backward ) {
subLineData_.rect_ = QRect();
}
}
protected:
//! hoverMoveEvent
virtual void hoverMoveEvent( QObject*, QEvent* );
//! hoverMoveEvent
virtual void hoverLeaveEvent( QObject*, QEvent* );
//!@name hover flags
//@{
virtual bool addLineArrowHovered( void ) const {
return addLineData_.hovered_;
}
virtual void setAddLineArrowHovered( bool value ) {
addLineData_.hovered_ = value;
}
virtual bool subLineArrowHovered( void ) const {
return subLineData_.hovered_;
}
virtual void setSubLineArrowHovered( bool value ) {
subLineData_.hovered_ = value;
}
//@}
//! update add line arrow
virtual void updateAddLineArrow( QStyle::SubControl );
//! update sub line arrow
virtual void updateSubLineArrow( QStyle::SubControl );
//!@name timelines
//@{
virtual const Animation::Pointer& addLineAnimation( void ) const {
return addLineData_.animation_;
}
virtual const Animation::Pointer& subLineAnimation( void ) const {
return subLineData_.animation_;
}
private:
//! stores arrow data
class Data {
public:
//! constructor
Data( void ):
hovered_( false ),
opacity_( AnimationData::OpacityInvalid )
{}
//! true if hovered
bool hovered_;
//! animation
Animation::Pointer animation_;
//! opacity
qreal opacity_;
//! rect
QRect rect_;
};
//! add line data (down arrow)
Data addLineData_;
//! subtract line data (up arrow)
Data subLineData_;
};
#endif
|