Client app template and ui
This commit is contained in:
parent
3006c67472
commit
f68415f08e
53 changed files with 4280 additions and 0 deletions
31
client/ui/customshadoweffect.h
Normal file
31
client/ui/customshadoweffect.h
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
#ifndef CUSTOMSHADOWEFFECT_H
|
||||
#define CUSTOMSHADOWEFFECT_H
|
||||
|
||||
#include <QGraphicsDropShadowEffect>
|
||||
#include <QGraphicsEffect>
|
||||
|
||||
class CustomShadowEffect : public QGraphicsEffect
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
explicit CustomShadowEffect(QObject *parent = 0);
|
||||
|
||||
void draw(QPainter* painter);
|
||||
QRectF boundingRectFor(const QRectF& rect) const;
|
||||
|
||||
inline void setDistance(qreal distance) { _distance = distance; updateBoundingRect(); }
|
||||
inline qreal distance() const { return _distance; }
|
||||
|
||||
inline void setBlurRadius(qreal blurRadius) { _blurRadius = blurRadius; updateBoundingRect(); }
|
||||
inline qreal blurRadius() const { return _blurRadius; }
|
||||
|
||||
inline void setColor(const QColor& color) { _color = color; }
|
||||
inline QColor color() const { return _color; }
|
||||
|
||||
private:
|
||||
qreal _distance;
|
||||
qreal _blurRadius;
|
||||
QColor _color;
|
||||
};
|
||||
|
||||
#endif // CUSTOMSHADOWEFFECT_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue