scrollbarPolicy->scrollBarPolicy, luckily it was spotted before any
release :) svn path=/trunk/KDE/kdelibs/; revision=945072
This commit is contained in:
parent
7dd4f42869
commit
eb46f78fd9
@ -170,24 +170,24 @@ QGraphicsWidget *ScrollWidget::widget() const
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void ScrollWidget::setHorizontalScrollbarPolicy(const Qt::ScrollBarPolicy policy)
|
void ScrollWidget::setHorizontalScrollBarPolicy(const Qt::ScrollBarPolicy policy)
|
||||||
{
|
{
|
||||||
d->horizontalScrollBarPolicy = policy;
|
d->horizontalScrollBarPolicy = policy;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Qt::ScrollBarPolicy ScrollWidget::horizontalScrollbarPolicy() const
|
Qt::ScrollBarPolicy ScrollWidget::horizontalScrollBarPolicy() const
|
||||||
{
|
{
|
||||||
return d->horizontalScrollBarPolicy;
|
return d->horizontalScrollBarPolicy;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void ScrollWidget::setVerticalScrollbarPolicy(const Qt::ScrollBarPolicy policy)
|
void ScrollWidget::setVerticalScrollBarPolicy(const Qt::ScrollBarPolicy policy)
|
||||||
{
|
{
|
||||||
d->verticalScrollBarPolicy = policy;
|
d->verticalScrollBarPolicy = policy;
|
||||||
}
|
}
|
||||||
|
|
||||||
Qt::ScrollBarPolicy ScrollWidget::verticalScrollbarPolicy() const
|
Qt::ScrollBarPolicy ScrollWidget::verticalScrollBarPolicy() const
|
||||||
{
|
{
|
||||||
return d->verticalScrollBarPolicy;
|
return d->verticalScrollBarPolicy;
|
||||||
}
|
}
|
||||||
|
@ -43,8 +43,8 @@ class PLASMA_EXPORT ScrollWidget : public QGraphicsWidget
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_PROPERTY(QGraphicsWidget *widget READ widget WRITE setWidget)
|
Q_PROPERTY(QGraphicsWidget *widget READ widget WRITE setWidget)
|
||||||
Q_PROPERTY(Qt::ScrollBarPolicy horizontalScrollbarPolicy READ horizontalScrollbarPolicy WRITE setHorizontalScrollbarPolicy)
|
Q_PROPERTY(Qt::ScrollBarPolicy horizontalScrollBarPolicy READ horizontalScrollBarPolicy WRITE setHorizontalScrollBarPolicy)
|
||||||
Q_PROPERTY(Qt::ScrollBarPolicy verticalScrollbarPolicy READ verticalScrollbarPolicy WRITE setVerticalScrollbarPolicy)
|
Q_PROPERTY(Qt::ScrollBarPolicy verticalScrollBarPolicy READ verticalScrollBarPolicy WRITE setVerticalScrollBarPolicy)
|
||||||
Q_PROPERTY(QString styleSheet READ styleSheet WRITE setStyleSheet)
|
Q_PROPERTY(QString styleSheet READ styleSheet WRITE setStyleSheet)
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -76,24 +76,24 @@ public:
|
|||||||
*
|
*
|
||||||
* @arg policy desired policy
|
* @arg policy desired policy
|
||||||
*/
|
*/
|
||||||
void setHorizontalScrollbarPolicy(const Qt::ScrollBarPolicy policy);
|
void setHorizontalScrollBarPolicy(const Qt::ScrollBarPolicy policy);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the horizontal scrollbar policy
|
* @return the horizontal scrollbar policy
|
||||||
*/
|
*/
|
||||||
Qt::ScrollBarPolicy horizontalScrollbarPolicy() const;
|
Qt::ScrollBarPolicy horizontalScrollBarPolicy() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the vertical scrollbar policy
|
* Sets the vertical scrollbar policy
|
||||||
*
|
*
|
||||||
* @arg policy desired policy
|
* @arg policy desired policy
|
||||||
*/
|
*/
|
||||||
void setVerticalScrollbarPolicy(const Qt::ScrollBarPolicy policy);
|
void setVerticalScrollBarPolicy(const Qt::ScrollBarPolicy policy);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return the vertical scrollbar policy
|
* @return the vertical scrollbar policy
|
||||||
*/
|
*/
|
||||||
Qt::ScrollBarPolicy verticalScrollbarPolicy() const;
|
Qt::ScrollBarPolicy verticalScrollBarPolicy() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the stylesheet used to control the visual display of this ScrollWidget
|
* Sets the stylesheet used to control the visual display of this ScrollWidget
|
||||||
|
Loading…
Reference in New Issue
Block a user