get rid of private styleoption
This commit is contained in:
parent
93bb58a9f3
commit
ae4d0787d3
@ -72,30 +72,6 @@
|
|||||||
namespace Plasma
|
namespace Plasma
|
||||||
{
|
{
|
||||||
|
|
||||||
Containment::StyleOption::StyleOption()
|
|
||||||
: QStyleOptionGraphicsItem(),
|
|
||||||
view(0)
|
|
||||||
{
|
|
||||||
version = Version;
|
|
||||||
type = Type;
|
|
||||||
}
|
|
||||||
|
|
||||||
Containment::StyleOption::StyleOption(const Containment::StyleOption & other)
|
|
||||||
: QStyleOptionGraphicsItem(other),
|
|
||||||
view(other.view)
|
|
||||||
{
|
|
||||||
version = Version;
|
|
||||||
type = Type;
|
|
||||||
}
|
|
||||||
|
|
||||||
Containment::StyleOption::StyleOption(const QStyleOptionGraphicsItem &other)
|
|
||||||
: QStyleOptionGraphicsItem(other),
|
|
||||||
view(0)
|
|
||||||
{
|
|
||||||
version = Version;
|
|
||||||
type = Type;
|
|
||||||
}
|
|
||||||
|
|
||||||
Containment::Containment(QObject *parent,
|
Containment::Containment(QObject *parent,
|
||||||
const QString &serviceId,
|
const QString &serviceId,
|
||||||
uint containmentId)
|
uint containmentId)
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <QStyleOptionGraphicsItem>
|
|
||||||
|
|
||||||
#include <kplugininfo.h>
|
#include <kplugininfo.h>
|
||||||
#include <ksharedconfig.h>
|
#include <ksharedconfig.h>
|
||||||
@ -73,27 +72,6 @@ class PLASMA_EXPORT Containment : public Applet
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
class PLASMA_EXPORT StyleOption : public QStyleOptionGraphicsItem
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
explicit StyleOption();
|
|
||||||
explicit StyleOption(const StyleOption &other);
|
|
||||||
explicit StyleOption(const QStyleOptionGraphicsItem &other);
|
|
||||||
|
|
||||||
enum StyleOptionType {
|
|
||||||
Type = SO_CustomBase + 1
|
|
||||||
};
|
|
||||||
enum StyleOptionVersion {
|
|
||||||
Version = QStyleOptionGraphicsItem::Version + 1
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The View, if any, that this containment is currently
|
|
||||||
* being rendered into. Note: this may be NULL, so be
|
|
||||||
* sure to check it before using it!
|
|
||||||
*/
|
|
||||||
Plasma::View *view;
|
|
||||||
};
|
|
||||||
|
|
||||||
enum Type {
|
enum Type {
|
||||||
NoContainmentType = -1, /**< @internal */
|
NoContainmentType = -1, /**< @internal */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user