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