Kaydet (Commit) 204642f3 authored tarafından Christian M. Heller's avatar Christian M. Heller Kaydeden (comit) Caolán McNamara

fdo#39468 Translate German Comments - vcl/source/window/dockwin.cxx

(BTW: There seems to be some duplication between dockwin and dockmgr)

Conflicts:
	vcl/source/window/dockwin.cxx

Change-Id: Icaf421620f87de7512a461b778958f6e141946db
Reviewed-on: https://gerrit.libreoffice.org/8171Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst eb759974
...@@ -34,15 +34,8 @@ ...@@ -34,15 +34,8 @@
#include <salframe.hxx> #include <salframe.hxx>
// =======================================================================
#define DOCKWIN_FLOATSTYLES (WB_SIZEABLE | WB_MOVEABLE | WB_CLOSEABLE | WB_STANDALONE | WB_PINABLE | WB_ROLLABLE ) #define DOCKWIN_FLOATSTYLES (WB_SIZEABLE | WB_MOVEABLE | WB_CLOSEABLE | WB_STANDALONE | WB_PINABLE | WB_ROLLABLE )
// =======================================================================
class DockingWindow::ImplData class DockingWindow::ImplData
{ {
public: public:
...@@ -63,8 +56,6 @@ DockingWindow::ImplData::~ImplData() ...@@ -63,8 +56,6 @@ DockingWindow::ImplData::~ImplData()
{ {
} }
class ImplDockFloatWin : public FloatingWindow class ImplDockFloatWin : public FloatingWindow
{ {
private: private:
...@@ -104,7 +95,7 @@ ImplDockFloatWin::ImplDockFloatWin( Window* pParent, WinBits nWinBits, ...@@ -104,7 +95,7 @@ ImplDockFloatWin::ImplDockFloatWin( Window* pParent, WinBits nWinBits,
mbInMove( false ), mbInMove( false ),
mnLastUserEvent( 0 ) mnLastUserEvent( 0 )
{ {
// Daten vom DockingWindow uebernehmen // copy settings of DockingWindow
if ( pDockingWin ) if ( pDockingWin )
{ {
SetSettings( pDockingWin->GetSettings() ); SetSettings( pDockingWin->GetSettings() );
...@@ -121,16 +112,12 @@ ImplDockFloatWin::ImplDockFloatWin( Window* pParent, WinBits nWinBits, ...@@ -121,16 +112,12 @@ ImplDockFloatWin::ImplDockFloatWin( Window* pParent, WinBits nWinBits,
maDockTimer.SetTimeout( 50 ); maDockTimer.SetTimeout( 50 );
} }
ImplDockFloatWin::~ImplDockFloatWin() ImplDockFloatWin::~ImplDockFloatWin()
{ {
if( mnLastUserEvent ) if( mnLastUserEvent )
Application::RemoveUserEvent( mnLastUserEvent ); Application::RemoveUserEvent( mnLastUserEvent );
} }
IMPL_LINK_NOARG(ImplDockFloatWin, DockTimerHdl) IMPL_LINK_NOARG(ImplDockFloatWin, DockTimerHdl)
{ {
DBG_ASSERT( mpDockWin->IsFloatingMode(), "docktimer called but not floating" ); DBG_ASSERT( mpDockWin->IsFloatingMode(), "docktimer called but not floating" );
...@@ -220,8 +207,6 @@ void ImplDockFloatWin::Move() ...@@ -220,8 +207,6 @@ void ImplDockFloatWin::Move()
mnLastUserEvent = Application::PostUserEvent( LINK( this, ImplDockFloatWin, DockingHdl ) ); mnLastUserEvent = Application::PostUserEvent( LINK( this, ImplDockFloatWin, DockingHdl ) );
} }
void ImplDockFloatWin::Resize() void ImplDockFloatWin::Resize()
{ {
FloatingWindow::Resize(); FloatingWindow::Resize();
...@@ -229,54 +214,41 @@ void ImplDockFloatWin::Resize() ...@@ -229,54 +214,41 @@ void ImplDockFloatWin::Resize()
mpDockWin->ImplPosSizeWindow( 0, 0, aSize.Width(), aSize.Height(), WINDOW_POSSIZE_POSSIZE ); mpDockWin->ImplPosSizeWindow( 0, 0, aSize.Width(), aSize.Height(), WINDOW_POSSIZE_POSSIZE );
} }
void ImplDockFloatWin::TitleButtonClick( sal_uInt16 nButton ) void ImplDockFloatWin::TitleButtonClick( sal_uInt16 nButton )
{ {
FloatingWindow::TitleButtonClick( nButton ); FloatingWindow::TitleButtonClick( nButton );
mpDockWin->TitleButtonClick( nButton ); mpDockWin->TitleButtonClick( nButton );
} }
void ImplDockFloatWin::Pin() void ImplDockFloatWin::Pin()
{ {
FloatingWindow::Pin(); FloatingWindow::Pin();
mpDockWin->Pin(); mpDockWin->Pin();
} }
void ImplDockFloatWin::Roll() void ImplDockFloatWin::Roll()
{ {
FloatingWindow::Roll(); FloatingWindow::Roll();
mpDockWin->Roll(); mpDockWin->Roll();
} }
void ImplDockFloatWin::PopupModeEnd() void ImplDockFloatWin::PopupModeEnd()
{ {
FloatingWindow::PopupModeEnd(); FloatingWindow::PopupModeEnd();
mpDockWin->PopupModeEnd(); mpDockWin->PopupModeEnd();
} }
void ImplDockFloatWin::Resizing( Size& rSize ) void ImplDockFloatWin::Resizing( Size& rSize )
{ {
FloatingWindow::Resizing( rSize ); FloatingWindow::Resizing( rSize );
mpDockWin->Resizing( rSize ); mpDockWin->Resizing( rSize );
} }
bool ImplDockFloatWin::Close() bool ImplDockFloatWin::Close()
{ {
return mpDockWin->Close(); return mpDockWin->Close();
} }
// =======================================================================
bool DockingWindow::ImplStartDocking( const Point& rPos ) bool DockingWindow::ImplStartDocking( const Point& rPos )
{ {
...@@ -289,7 +261,7 @@ bool DockingWindow::ImplStartDocking( const Point& rPos ) ...@@ -289,7 +261,7 @@ bool DockingWindow::ImplStartDocking( const Point& rPos )
mbLastFloatMode = IsFloatingMode(); mbLastFloatMode = IsFloatingMode();
mbStartFloat = mbLastFloatMode; mbStartFloat = mbLastFloatMode;
// FloatingBorder berechnen // calculate FloatingBorder
FloatingWindow* pWin; FloatingWindow* pWin;
if ( mpFloatWin ) if ( mpFloatWin )
pWin = mpFloatWin; pWin = mpFloatWin;
...@@ -331,7 +303,6 @@ bool DockingWindow::ImplStartDocking( const Point& rPos ) ...@@ -331,7 +303,6 @@ bool DockingWindow::ImplStartDocking( const Point& rPos )
return true; return true;
} }
// =======================================================================
void DockingWindow::ImplInitDockingWindowData() void DockingWindow::ImplInitDockingWindowData()
{ {
...@@ -349,8 +320,6 @@ void DockingWindow::ImplInitDockingWindowData() ...@@ -349,8 +320,6 @@ void DockingWindow::ImplInitDockingWindowData()
mbHideBtn = false; mbHideBtn = false;
} }
void DockingWindow::ImplInit( Window* pParent, WinBits nStyle ) void DockingWindow::ImplInit( Window* pParent, WinBits nStyle )
{ {
if ( !(nStyle & WB_NODIALOGCONTROL) ) if ( !(nStyle & WB_NODIALOGCONTROL) )
...@@ -368,12 +337,10 @@ void DockingWindow::ImplInit( Window* pParent, WinBits nStyle ) ...@@ -368,12 +337,10 @@ void DockingWindow::ImplInit( Window* pParent, WinBits nStyle )
ImplInitSettings(); ImplInitSettings();
} }
void DockingWindow::ImplInitSettings() void DockingWindow::ImplInitSettings()
{ {
// Hack, damit man auch DockingWindows ohne Hintergrund bauen kann // Hack: to be able to build DockingWindows w/o background before switching
// und noch nicht alles umgestellt ist // TODO: Hack
if ( IsBackground() ) if ( IsBackground() )
{ {
const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings(); const StyleSettings& rStyleSettings = GetSettings().GetStyleSettings();
...@@ -389,8 +356,6 @@ void DockingWindow::ImplInitSettings() ...@@ -389,8 +356,6 @@ void DockingWindow::ImplInitSettings()
} }
} }
void DockingWindow::ImplLoadRes( const ResId& rResId ) void DockingWindow::ImplLoadRes( const ResId& rResId )
{ {
Window::ImplLoadRes( rResId ); Window::ImplLoadRes( rResId );
...@@ -400,7 +365,7 @@ void DockingWindow::ImplLoadRes( const ResId& rResId ) ...@@ -400,7 +365,7 @@ void DockingWindow::ImplLoadRes( const ResId& rResId )
if ( (RSC_DOCKINGWINDOW_XYMAPMODE | RSC_DOCKINGWINDOW_X | if ( (RSC_DOCKINGWINDOW_XYMAPMODE | RSC_DOCKINGWINDOW_X |
RSC_DOCKINGWINDOW_Y) & nMask ) RSC_DOCKINGWINDOW_Y) & nMask )
{ {
// Groessenangabe aus der Resource verwenden // use Sizes of the Resource
Point aPos; Point aPos;
MapUnit ePosMap = MAP_PIXEL; MapUnit ePosMap = MAP_PIXEL;
...@@ -429,16 +394,12 @@ void DockingWindow::ImplLoadRes( const ResId& rResId ) ...@@ -429,16 +394,12 @@ void DockingWindow::ImplLoadRes( const ResId& rResId )
} }
} }
DockingWindow::DockingWindow( WindowType nType ) : DockingWindow::DockingWindow( WindowType nType ) :
Window( nType ) Window( nType )
{ {
ImplInitDockingWindowData(); ImplInitDockingWindowData();
} }
DockingWindow::DockingWindow( Window* pParent, WinBits nStyle ) : DockingWindow::DockingWindow( Window* pParent, WinBits nStyle ) :
Window( WINDOW_DOCKINGWINDOW ) Window( WINDOW_DOCKINGWINDOW )
{ {
...@@ -446,8 +407,6 @@ DockingWindow::DockingWindow( Window* pParent, WinBits nStyle ) : ...@@ -446,8 +407,6 @@ DockingWindow::DockingWindow( Window* pParent, WinBits nStyle ) :
ImplInit( pParent, nStyle ); ImplInit( pParent, nStyle );
} }
DockingWindow::DockingWindow( Window* pParent, const ResId& rResId ) : DockingWindow::DockingWindow( Window* pParent, const ResId& rResId ) :
Window( WINDOW_DOCKINGWINDOW ) Window( WINDOW_DOCKINGWINDOW )
{ {
...@@ -461,8 +420,6 @@ DockingWindow::DockingWindow( Window* pParent, const ResId& rResId ) : ...@@ -461,8 +420,6 @@ DockingWindow::DockingWindow( Window* pParent, const ResId& rResId ) :
Show(); Show();
} }
DockingWindow::~DockingWindow() DockingWindow::~DockingWindow()
{ {
if ( IsFloatingMode() ) if ( IsFloatingMode() )
...@@ -473,8 +430,6 @@ DockingWindow::~DockingWindow() ...@@ -473,8 +430,6 @@ DockingWindow::~DockingWindow()
delete mpImplData; delete mpImplData;
} }
void DockingWindow::Tracking( const TrackingEvent& rTEvt ) void DockingWindow::Tracking( const TrackingEvent& rTEvt )
{ {
if( GetDockingManager()->IsDockable( this ) ) // new docking interface if( GetDockingManager()->IsDockable( this ) ) // new docking interface
...@@ -487,7 +442,7 @@ void DockingWindow::Tracking( const TrackingEvent& rTEvt ) ...@@ -487,7 +442,7 @@ void DockingWindow::Tracking( const TrackingEvent& rTEvt )
mbDocking = false; mbDocking = false;
if ( mbDragFull ) if ( mbDragFull )
{ {
// Bei Abbruch alten Zustand wieder herstellen // reset old state on Cancel
if ( rTEvt.IsTrackingCanceled() ) if ( rTEvt.IsTrackingCanceled() )
{ {
StartDocking(); StartDocking();
...@@ -508,7 +463,7 @@ void DockingWindow::Tracking( const TrackingEvent& rTEvt ) ...@@ -508,7 +463,7 @@ void DockingWindow::Tracking( const TrackingEvent& rTEvt )
EndDocking( Rectangle( Point( mnTrackX, mnTrackY ), Size( mnTrackWidth, mnTrackHeight ) ), mbLastFloatMode ); EndDocking( Rectangle( Point( mnTrackX, mnTrackY ), Size( mnTrackWidth, mnTrackHeight ) ), mbLastFloatMode );
} }
} }
// Docking nur bei nicht synthetischen MouseEvents // dock only for non-synthetic MouseEvents
else if ( !rTEvt.GetMouseEvent().IsSynthetic() || rTEvt.GetMouseEvent().IsModifierChanged() ) else if ( !rTEvt.GetMouseEvent().IsSynthetic() || rTEvt.GetMouseEvent().IsModifierChanged() )
{ {
Point aMousePos = rTEvt.GetMouseEvent().GetPosPixel(); Point aMousePos = rTEvt.GetMouseEvent().GetPosPixel();
...@@ -561,8 +516,7 @@ void DockingWindow::Tracking( const TrackingEvent& rTEvt ) ...@@ -561,8 +516,7 @@ void DockingWindow::Tracking( const TrackingEvent& rTEvt )
Point aPos; Point aPos;
Point aOldPos = OutputToScreenPixel( aPos ); Point aOldPos = OutputToScreenPixel( aPos );
EndDocking( aTrackRect, mbLastFloatMode ); EndDocking( aTrackRect, mbLastFloatMode );
// Wenn der Status bzw. die Position sich // repaint if state or position has changed
// geaendert hat, dann neu ausgeben
if ( aOldPos != OutputToScreenPixel( aPos ) ) if ( aOldPos != OutputToScreenPixel( aPos ) )
{ {
ImplUpdateAll(); ImplUpdateAll();
...@@ -581,8 +535,7 @@ void DockingWindow::Tracking( const TrackingEvent& rTEvt ) ...@@ -581,8 +535,7 @@ void DockingWindow::Tracking( const TrackingEvent& rTEvt )
aShowTrackRect.SetPos( ImplFrameToOutput( aShowTrackRect.TopLeft() ) ); aShowTrackRect.SetPos( ImplFrameToOutput( aShowTrackRect.TopLeft() ) );
ShowTracking( aShowTrackRect, nTrackStyle ); ShowTracking( aShowTrackRect, nTrackStyle );
// Maus-Offset neu berechnen, da Rechteck veraendert werden // recalculate mouse offset, as the rectangle was changed
// konnte
maMouseOff.X() = aFramePos.X() - aTrackRect.Left(); maMouseOff.X() = aFramePos.X() - aTrackRect.Left();
maMouseOff.Y() = aFramePos.Y() - aTrackRect.Top(); maMouseOff.Y() = aFramePos.Y() - aTrackRect.Top();
} }
...@@ -595,8 +548,6 @@ void DockingWindow::Tracking( const TrackingEvent& rTEvt ) ...@@ -595,8 +548,6 @@ void DockingWindow::Tracking( const TrackingEvent& rTEvt )
} }
} }
bool DockingWindow::Notify( NotifyEvent& rNEvt ) bool DockingWindow::Notify( NotifyEvent& rNEvt )
{ {
if( GetDockingManager()->IsDockable( this ) ) // new docking interface if( GetDockingManager()->IsDockable( this ) ) // new docking interface
...@@ -649,22 +600,16 @@ bool DockingWindow::Notify( NotifyEvent& rNEvt ) ...@@ -649,22 +600,16 @@ bool DockingWindow::Notify( NotifyEvent& rNEvt )
return Window::Notify( rNEvt ); return Window::Notify( rNEvt );
} }
void DockingWindow::StartDocking() void DockingWindow::StartDocking()
{ {
mbDocking = true; mbDocking = true;
} }
bool DockingWindow::Docking( const Point&, Rectangle& ) bool DockingWindow::Docking( const Point&, Rectangle& )
{ {
return IsFloatingMode(); return IsFloatingMode();
} }
void DockingWindow::EndDocking( const Rectangle& rRect, sal_Bool bFloatMode ) void DockingWindow::EndDocking( const Rectangle& rRect, sal_Bool bFloatMode )
{ {
if ( !IsDockingCanceled() ) if ( !IsDockingCanceled() )
...@@ -691,15 +636,11 @@ void DockingWindow::EndDocking( const Rectangle& rRect, sal_Bool bFloatMode ) ...@@ -691,15 +636,11 @@ void DockingWindow::EndDocking( const Rectangle& rRect, sal_Bool bFloatMode )
mbDocking = false; mbDocking = false;
} }
bool DockingWindow::PrepareToggleFloatingMode() bool DockingWindow::PrepareToggleFloatingMode()
{ {
return true; return true;
} }
bool DockingWindow::Close() bool DockingWindow::Close()
{ {
ImplDelData aDelData; ImplDelData aDelData;
...@@ -716,44 +657,30 @@ bool DockingWindow::Close() ...@@ -716,44 +657,30 @@ bool DockingWindow::Close()
return true; return true;
} }
void DockingWindow::ToggleFloatingMode() void DockingWindow::ToggleFloatingMode()
{ {
} }
void DockingWindow::TitleButtonClick( sal_uInt16 ) void DockingWindow::TitleButtonClick( sal_uInt16 )
{ {
} }
void DockingWindow::Pin() void DockingWindow::Pin()
{ {
} }
void DockingWindow::Roll() void DockingWindow::Roll()
{ {
} }
void DockingWindow::PopupModeEnd() void DockingWindow::PopupModeEnd()
{ {
} }
void DockingWindow::Resizing( Size& ) void DockingWindow::Resizing( Size& )
{ {
} }
void DockingWindow::StateChanged( StateChangedType nType ) void DockingWindow::StateChanged( StateChangedType nType )
{ {
switch(nType) switch(nType)
...@@ -774,8 +701,6 @@ void DockingWindow::StateChanged( StateChangedType nType ) ...@@ -774,8 +701,6 @@ void DockingWindow::StateChanged( StateChangedType nType )
Window::StateChanged( nType ); Window::StateChanged( nType );
} }
void DockingWindow::DataChanged( const DataChangedEvent& rDCEvt ) void DockingWindow::DataChanged( const DataChangedEvent& rDCEvt )
{ {
if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) && if ( (rDCEvt.GetType() == DATACHANGED_SETTINGS) &&
...@@ -788,8 +713,6 @@ void DockingWindow::DataChanged( const DataChangedEvent& rDCEvt ) ...@@ -788,8 +713,6 @@ void DockingWindow::DataChanged( const DataChangedEvent& rDCEvt )
Window::DataChanged( rDCEvt ); Window::DataChanged( rDCEvt );
} }
void DockingWindow::SetFloatingMode( bool bFloatMode ) void DockingWindow::SetFloatingMode( bool bFloatMode )
{ {
ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this ); ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this );
...@@ -824,8 +747,7 @@ void DockingWindow::SetFloatingMode( bool bFloatMode ) ...@@ -824,8 +747,7 @@ void DockingWindow::SetFloatingMode( bool bFloatMode )
mpWindowImpl->mnTopBorder = 0; mpWindowImpl->mnTopBorder = 0;
mpWindowImpl->mnRightBorder = 0; mpWindowImpl->mnRightBorder = 0;
mpWindowImpl->mnBottomBorder = 0; mpWindowImpl->mnBottomBorder = 0;
// Falls Parent zerstoert wird, muessen wir auch vom // if the parent gets destroyed, we also have to reset the parent of the BorderWindow
// BorderWindow den Parent umsetzen
if ( mpOldBorderWin ) if ( mpOldBorderWin )
mpOldBorderWin->SetParent( pWin ); mpOldBorderWin->SetParent( pWin );
...@@ -841,7 +763,7 @@ void DockingWindow::SetFloatingMode( bool bFloatMode ) ...@@ -841,7 +763,7 @@ void DockingWindow::SetFloatingMode( bool bFloatMode )
pWin->SetText( Window::GetText() ); pWin->SetText( Window::GetText() );
pWin->SetOutputSizePixel( Window::GetSizePixel() ); pWin->SetOutputSizePixel( Window::GetSizePixel() );
pWin->SetPosPixel( maFloatPos ); pWin->SetPosPixel( maFloatPos );
// DockingDaten ans FloatingWindow weiterreichen // pass on DockingData to FloatingWindow
pWin->ShowTitleButton( TITLE_BUTTON_DOCKING, mbDockBtn ); pWin->ShowTitleButton( TITLE_BUTTON_DOCKING, mbDockBtn );
pWin->ShowTitleButton( TITLE_BUTTON_HIDE, mbHideBtn ); pWin->ShowTitleButton( TITLE_BUTTON_HIDE, mbHideBtn );
pWin->SetPin( mbPined ); pWin->SetPin( mbPined );
...@@ -862,7 +784,7 @@ void DockingWindow::SetFloatingMode( bool bFloatMode ) ...@@ -862,7 +784,7 @@ void DockingWindow::SetFloatingMode( bool bFloatMode )
{ {
Show( false, SHOW_NOFOCUSCHANGE ); Show( false, SHOW_NOFOCUSCHANGE );
// FloatingDaten wird im FloatingWindow speichern // store FloatingData in FloatingWindow
maFloatPos = mpFloatWin->GetPosPixel(); maFloatPos = mpFloatWin->GetPosPixel();
mbDockBtn = mpFloatWin->IsTitleButtonVisible( TITLE_BUTTON_DOCKING ); mbDockBtn = mpFloatWin->IsTitleButtonVisible( TITLE_BUTTON_DOCKING );
mbHideBtn = mpFloatWin->IsTitleButtonVisible( TITLE_BUTTON_HIDE ); mbHideBtn = mpFloatWin->IsTitleButtonVisible( TITLE_BUTTON_HIDE );
...@@ -896,8 +818,6 @@ void DockingWindow::SetFloatingMode( bool bFloatMode ) ...@@ -896,8 +818,6 @@ void DockingWindow::SetFloatingMode( bool bFloatMode )
} }
} }
void DockingWindow::SetFloatStyle( WinBits nStyle ) void DockingWindow::SetFloatStyle( WinBits nStyle )
{ {
ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this ); ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this );
...@@ -910,8 +830,6 @@ void DockingWindow::SetFloatStyle( WinBits nStyle ) ...@@ -910,8 +830,6 @@ void DockingWindow::SetFloatStyle( WinBits nStyle )
mnFloatBits = nStyle; mnFloatBits = nStyle;
} }
WinBits DockingWindow::GetFloatStyle() const WinBits DockingWindow::GetFloatStyle() const
{ {
ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this ); ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this );
...@@ -923,8 +841,6 @@ WinBits DockingWindow::GetFloatStyle() const ...@@ -923,8 +841,6 @@ WinBits DockingWindow::GetFloatStyle() const
return mnFloatBits; return mnFloatBits;
} }
void DockingWindow::setPosSizePixel( long nX, long nY, void DockingWindow::setPosSizePixel( long nX, long nY,
long nWidth, long nHeight, long nWidth, long nHeight,
sal_uInt16 nFlags ) sal_uInt16 nFlags )
...@@ -945,8 +861,6 @@ void DockingWindow::setPosSizePixel( long nX, long nY, ...@@ -945,8 +861,6 @@ void DockingWindow::setPosSizePixel( long nX, long nY,
Window::setPosSizePixel( nX, nY, nWidth, nHeight, nFlags ); Window::setPosSizePixel( nX, nY, nWidth, nHeight, nFlags );
} }
Point DockingWindow::GetPosPixel() const Point DockingWindow::GetPosPixel() const
{ {
ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this ); ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this );
...@@ -964,8 +878,6 @@ Point DockingWindow::GetPosPixel() const ...@@ -964,8 +878,6 @@ Point DockingWindow::GetPosPixel() const
return Window::GetPosPixel(); return Window::GetPosPixel();
} }
Size DockingWindow::GetSizePixel() const Size DockingWindow::GetSizePixel() const
{ {
ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this ); ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this );
...@@ -983,8 +895,6 @@ Size DockingWindow::GetSizePixel() const ...@@ -983,8 +895,6 @@ Size DockingWindow::GetSizePixel() const
return Window::GetSizePixel(); return Window::GetSizePixel();
} }
void DockingWindow::SetOutputSizePixel( const Size& rNewSize ) void DockingWindow::SetOutputSizePixel( const Size& rNewSize )
{ {
ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this ); ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this );
...@@ -1003,8 +913,6 @@ void DockingWindow::SetOutputSizePixel( const Size& rNewSize ) ...@@ -1003,8 +913,6 @@ void DockingWindow::SetOutputSizePixel( const Size& rNewSize )
Window::SetOutputSizePixel( rNewSize ); Window::SetOutputSizePixel( rNewSize );
} }
Size DockingWindow::GetOutputSizePixel() const Size DockingWindow::GetOutputSizePixel() const
{ {
ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this ); ImplDockingWindowWrapper *pWrapper = ImplGetDockingManager()->GetDockingWindowWrapper( this );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment