QskBoxOptions removed

This commit is contained in:
Uwe Rathmann 2017-10-20 09:17:13 +02:00
parent f9565bdea1
commit 958196db19
2 changed files with 0 additions and 41 deletions

View File

@ -1,14 +0,0 @@
/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#include "QskBoxOptions.h"
bool QskBoxOptions::isVisible() const
{
if ( fillGradient.isVisible() )
return true;
return !border.isNull() && borderColors.isVisible();
}

View File

@ -1,27 +0,0 @@
/******************************************************************************
* QSkinny - Copyright (C) 2016 Uwe Rathmann
* This file may be used under the terms of the QSkinny License, Version 1.0
*****************************************************************************/
#ifndef QSK_BOX_OPTIONS_H
#define QSK_BOX_OPTIONS_H
#include "QskGlobal.h"
#include "QskBoxShapeMetrics.h"
#include "QskBoxBorderMetrics.h"
#include "QskBoxBorderColors.h"
#include "QskGradient.h"
class QSK_EXPORT QskBoxOptions
{
public:
bool isVisible() const;
QskBoxShapeMetrics shape;
QskBoxBorderMetrics border;
QskBoxBorderColors borderColors;
QskGradient fillGradient;
};
#endif