summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/vcl/dockwin.hxx7
-rw-r--r--include/vcl/syswin.hxx9
-rw-r--r--include/vcl/vclenum.hxx4
3 files changed, 2 insertions, 18 deletions
diff --git a/include/vcl/dockwin.hxx b/include/vcl/dockwin.hxx
index e86dc00a09c2..2d45fb8e390e 100644
--- a/include/vcl/dockwin.hxx
+++ b/include/vcl/dockwin.hxx
@@ -88,7 +88,6 @@ private:
Point maFloatPos;
Point maDockPos;
Point maMouseOff;
- Size maRollUpOutSize;
Size maMinOutSize;
Size maMaxOutSize;
tools::Rectangle maDragArea;
@@ -104,7 +103,6 @@ private:
bool mbDockCanceled:1,
mbDocking:1,
mbLastFloatMode:1,
- mbRollUp:1,
mbDockBtn:1,
mbHideBtn:1,
mbStartDockingEnabled:1,
@@ -223,7 +221,6 @@ private:
Point maFloatPos;
Point maDockPos;
Point maMouseOff;
- Size maRollUpOutSize;
Size maMinOutSize;
tools::Long mnTrackX;
tools::Long mnTrackY;
@@ -241,7 +238,6 @@ private:
mbDragFull:1,
mbLastFloatMode:1,
mbStartFloat:1,
- mbRollUp:1,
mbDockBtn:1,
mbHideBtn:1,
mbIsCalculatingInitialLayoutSize:1;
@@ -301,9 +297,6 @@ public:
virtual void StateChanged( StateChangedType nType ) override;
virtual void DataChanged( const DataChangedEvent& rDCEvt ) override;
- void RollDown();
- bool IsRollUp() const;
-
void SetMinOutputSizePixel( const Size& rSize );
const Size& GetMinOutputSizePixel() const;
diff --git a/include/vcl/syswin.hxx b/include/vcl/syswin.hxx
index 7841b0b657fb..8bed92a4f3ac 100644
--- a/include/vcl/syswin.hxx
+++ b/include/vcl/syswin.hxx
@@ -100,9 +100,7 @@ class VCL_DLLPUBLIC SystemWindow
private:
VclPtr<MenuBar> mpMenuBar;
Size maOrgSize;
- Size maRollUpOutSize;
Size maMinOutSize;
- bool mbRollUp;
bool mbDockBtn;
bool mbHideBtn;
bool mbSysChild;
@@ -176,13 +174,6 @@ public:
void ShowTitleButton( TitleButton nButton, bool bVisible );
bool IsTitleButtonVisible( TitleButton nButton ) const;
- void RollUp();
- void RollDown();
- bool IsRollUp() const { return mbRollUp; }
-
- void SetRollUpOutputSizePixel( const Size& rSize ) { maRollUpOutSize = rSize; }
- const Size& GetRollUpOutputSizePixel() const { return maRollUpOutSize; }
-
void SetMinOutputSizePixel( const Size& rSize );
const Size& GetMinOutputSizePixel() const { return maMinOutSize; }
void SetMaxOutputSizePixel( const Size& rSize );
diff --git a/include/vcl/vclenum.hxx b/include/vcl/vclenum.hxx
index 005e48c5406a..251b5bdba1ea 100644
--- a/include/vcl/vclenum.hxx
+++ b/include/vcl/vclenum.hxx
@@ -91,8 +91,6 @@ enum class SymbolType : sal_uInt16
PLAY = 16,
STOP = 19,
CLOSE = 25,
- ROLLUP = 26,
- ROLLDOWN = 27,
CHECKMARK = 28,
RADIOCHECKMARK = 29,
FLOAT = 31,
@@ -307,6 +305,8 @@ enum class WindowStateState {
Normal = 0x0001,
Minimized = 0x0002,
Maximized = 0x0004,
+ // Rollup is no longer used, but retained because WindowStateState is serialized
+ // from/to strings describing window state that are stored in a users config
Rollup = 0x0008,
MaximizedHorz = 0x0010,
MaximizedVert = 0x0020,