Move box setNoContentMargin() to public interface.
This commit is contained in:
parent
5851950296
commit
d0f2508863
1 changed files with 8 additions and 7 deletions
|
|
@ -184,6 +184,14 @@ public:
|
||||||
return _delegate;
|
return _delegate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void setNoContentMargin(bool noContentMargin) {
|
||||||
|
if (_noContentMargin != noContentMargin) {
|
||||||
|
_noContentMargin = noContentMargin;
|
||||||
|
setAttribute(Qt::WA_OpaquePaintEvent, !_noContentMargin);
|
||||||
|
}
|
||||||
|
getDelegate()->setNoContentMargin(noContentMargin);
|
||||||
|
}
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void onScrollToY(int top, int bottom = -1);
|
void onScrollToY(int top, int bottom = -1);
|
||||||
|
|
||||||
|
|
@ -196,13 +204,6 @@ protected:
|
||||||
getDelegate()->setLayerType(layerType);
|
getDelegate()->setLayerType(layerType);
|
||||||
}
|
}
|
||||||
|
|
||||||
void setNoContentMargin(bool noContentMargin) {
|
|
||||||
if (_noContentMargin != noContentMargin) {
|
|
||||||
_noContentMargin = noContentMargin;
|
|
||||||
setAttribute(Qt::WA_OpaquePaintEvent, !_noContentMargin);
|
|
||||||
}
|
|
||||||
getDelegate()->setNoContentMargin(noContentMargin);
|
|
||||||
}
|
|
||||||
void setDimensions(
|
void setDimensions(
|
||||||
int newWidth,
|
int newWidth,
|
||||||
int maxHeight,
|
int maxHeight,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue