diff options
Diffstat (limited to 'dbaccess/source/ui')
9 files changed, 19 insertions, 19 deletions
diff --git a/dbaccess/source/ui/querydesign/JoinTableView.cxx b/dbaccess/source/ui/querydesign/JoinTableView.cxx index f5daa40ef329..32adfa6a167c 100644 --- a/dbaccess/source/ui/querydesign/JoinTableView.cxx +++ b/dbaccess/source/ui/querydesign/JoinTableView.cxx @@ -498,7 +498,7 @@ void OJoinTableView::EnsureVisible(const OTableWindow* _pWin) // data about the tab win TTableWindowData::value_type pData = _pWin->GetData(); EnsureVisible( pData->GetPosition() , pData->GetSize()); - Invalidate(INVALIDATE_NOCHILDREN); + Invalidate(InvalidateFlags::NoChildren); } void OJoinTableView::EnsureVisible(const Point& _rPoint,const Size& _rSize) @@ -600,7 +600,7 @@ void OJoinTableView::DataChanged(const DataChangedEvent& rDCEvt) { // consider the worst case: the colors changed, so adjust me InitColors(); - Invalidate(INVALIDATE_NOCHILDREN); + Invalidate(InvalidateFlags::NoChildren); // due to the Invalidate, the connections are redrawn, so that they are also pictured in the new colors } } @@ -716,7 +716,7 @@ bool OJoinTableView::ScrollPane( long nDelta, bool bHoriz, bool bPaintScrollBars pTabWin->SetPosPixel( aPos ); } - Invalidate(); // INVALIDATE_NOCHILDREN + Invalidate(); // InvalidateFlags::NoChildren return bRet; } @@ -930,7 +930,7 @@ void OJoinTableView::SelectConn(OTableConnection* pConn) if ((pFirstSourceVisible != pSourceBox->GetFirstEntryInView()) || (pFirstDestVisible != pDestBox->GetFirstEntryInView())) // scrolling was done -> redraw - Invalidate(INVALIDATE_NOCHILDREN); + Invalidate(InvalidateFlags::NoChildren); } } } @@ -1081,7 +1081,7 @@ IMPL_LINK_NOARG_TYPED(OJoinTableView, OnDragScrollTimer, Idle *, void) void OJoinTableView::invalidateAndModify(SfxUndoAction *_pAction) { - Invalidate(INVALIDATE_NOCHILDREN); + Invalidate(InvalidateFlags::NoChildren); m_pView->getController().addUndoActionAndInvalidate(_pAction); } diff --git a/dbaccess/source/ui/querydesign/QuerySizeTabWinUndoAct.hxx b/dbaccess/source/ui/querydesign/QuerySizeTabWinUndoAct.hxx index bd9381468ca0..f30b54423cb3 100644 --- a/dbaccess/source/ui/querydesign/QuerySizeTabWinUndoAct.hxx +++ b/dbaccess/source/ui/querydesign/QuerySizeTabWinUndoAct.hxx @@ -59,9 +59,9 @@ namespace dbaui Point ptNext = m_pTabWin->GetPosPixel(); Size szNext = m_pTabWin->GetSizePixel(); - m_pOwner->Invalidate(INVALIDATE_NOCHILDREN); + m_pOwner->Invalidate(InvalidateFlags::NoChildren); m_pTabWin->SetPosSizePixel(m_ptNextPosition, m_szNextSize); - m_pOwner->Invalidate(INVALIDATE_NOCHILDREN); + m_pOwner->Invalidate(InvalidateFlags::NoChildren); m_ptNextPosition = ptNext; m_szNextSize = szNext; diff --git a/dbaccess/source/ui/querydesign/QueryTableView.cxx b/dbaccess/source/ui/querydesign/QueryTableView.cxx index b39bf31e0cf0..3dcd670b276f 100644 --- a/dbaccess/source/ui/querydesign/QueryTableView.cxx +++ b/dbaccess/source/ui/querydesign/QueryTableView.cxx @@ -150,7 +150,7 @@ namespace // force an invalidation of the bounding rectangle _pConnection->InvalidateConnection(); - _pView->Invalidate(INVALIDATE_NOCHILDREN); + _pView->Invalidate(InvalidateFlags::NoChildren); } void addConnections(OQueryTableView* _pView, const OQueryTableWindow& _rSource, @@ -783,7 +783,7 @@ void OQueryTableView::RemoveTabWin(OTableWindow* pTabWin) void OQueryTableView::EnsureVisible(const OTableWindow* pWin) { - Invalidate(INVALIDATE_NOCHILDREN); + Invalidate(InvalidateFlags::NoChildren); OJoinTableView::EnsureVisible(pWin); } diff --git a/dbaccess/source/ui/querydesign/TableConnection.cxx b/dbaccess/source/ui/querydesign/TableConnection.cxx index ec91c07646fd..de48a0790a80 100644 --- a/dbaccess/source/ui/querydesign/TableConnection.cxx +++ b/dbaccess/source/ui/querydesign/TableConnection.cxx @@ -139,7 +139,7 @@ namespace dbaui void OTableConnection::Select() { m_bSelected = true; - m_pParent->Invalidate( GetBoundingRect(), INVALIDATE_NOCHILDREN); + m_pParent->Invalidate( GetBoundingRect(), InvalidateFlags::NoChildren); } void OTableConnection::Deselect() @@ -165,7 +165,7 @@ namespace dbaui // could explain, why without the fake here when deleting a connection a dash remains at the lower end: // Invalidate records obviously one pixel line less as Draw. // Or everything works differently ..... in any case it works .... - m_pParent->Invalidate( rcBounding, INVALIDATE_NOCHILDREN ); + m_pParent->Invalidate( rcBounding, InvalidateFlags::NoChildren ); return true; } diff --git a/dbaccess/source/ui/querydesign/TableWindow.cxx b/dbaccess/source/ui/querydesign/TableWindow.cxx index 8448027032eb..cd8638cf52fe 100644 --- a/dbaccess/source/ui/querydesign/TableWindow.cxx +++ b/dbaccess/source/ui/querydesign/TableWindow.cxx @@ -682,7 +682,7 @@ bool OTableWindow::PreNotify(NotifyEvent& rNEvt) aNewSize = Size(pView->CalcZoom(aNewSize.Width()),pView->CalcZoom(aNewSize.Height())); SetPosSizePixel( ptOld, aNewSize ); pView->TabWinSized(this, ptOld, szOld); - Invalidate( INVALIDATE_NOCHILDREN ); + Invalidate( InvalidateFlags::NoChildren ); } } else @@ -706,7 +706,7 @@ bool OTableWindow::PreNotify(NotifyEvent& rNEvt) // aNewDataPoint can not be used here because SetPosPixel reset it pView->EnsureVisible(GetData()->GetPosition(), GetData()->GetSize()); pView->TabWinMoved(this,aOldDataPoint); - Invalidate(INVALIDATE_NOCHILDREN); + Invalidate(InvalidateFlags::NoChildren); getDesignView()->getController().setModified( sal_True ); } else diff --git a/dbaccess/source/ui/querydesign/TableWindowListBox.cxx b/dbaccess/source/ui/querydesign/TableWindowListBox.cxx index 173d85f0366c..7ea13e344984 100644 --- a/dbaccess/source/ui/querydesign/TableWindowListBox.cxx +++ b/dbaccess/source/ui/querydesign/TableWindowListBox.cxx @@ -126,9 +126,9 @@ void OTableWindowListBox::NotifyEndScroll() { if (m_bReallyScrolled) // connections of this table, if any, should be redrawn - m_pTabWin->getTableView()->Invalidate(INVALIDATE_NOCHILDREN); + m_pTabWin->getTableView()->Invalidate(InvalidateFlags::NoChildren); - // without INVALIDATE_NOCHILDREN all tables would be redrawn, + // without InvalidateFlags::NoChildren all tables would be redrawn, // so: flickering m_bReallyScrolled = false; } diff --git a/dbaccess/source/ui/querydesign/TableWindowTitle.cxx b/dbaccess/source/ui/querydesign/TableWindowTitle.cxx index 8adf24f934d2..c661ee0e6be7 100644 --- a/dbaccess/source/ui/querydesign/TableWindowTitle.cxx +++ b/dbaccess/source/ui/querydesign/TableWindowTitle.cxx @@ -143,7 +143,7 @@ void OTableWindowTitle::MouseButtonDown( const MouseEvent& rEvt ) pView->InvalidateConnections(); pView->getDesignView()->getController().setModified(sal_True); - pView->Invalidate(INVALIDATE_NOCHILDREN); + pView->Invalidate(InvalidateFlags::NoChildren); } } else diff --git a/dbaccess/source/ui/relationdesign/RelationController.cxx b/dbaccess/source/ui/relationdesign/RelationController.cxx index 6a88ef2f5417..fc9f0df063e7 100644 --- a/dbaccess/source/ui/relationdesign/RelationController.cxx +++ b/dbaccess/source/ui/relationdesign/RelationController.cxx @@ -474,7 +474,7 @@ IMPL_LINK_NOARG( ORelationController, OnThreadFinished ) try { getView()->initialize(); // show the windows and fill with our information - getView()->Invalidate(INVALIDATE_NOERASE); + getView()->Invalidate(InvalidateFlags::NoErase); ClearUndoManager(); setModified(sal_False); // and we are not modified yet @@ -575,7 +575,7 @@ void ORelationController::reset() if(pView) { pView->initialize(); - pView->Invalidate(INVALIDATE_NOERASE); + pView->Invalidate(InvalidateFlags::NoErase); } } diff --git a/dbaccess/source/ui/relationdesign/RelationTableView.cxx b/dbaccess/source/ui/relationdesign/RelationTableView.cxx index a0c3c2553863..fd345a0ebc89 100644 --- a/dbaccess/source/ui/relationdesign/RelationTableView.cxx +++ b/dbaccess/source/ui/relationdesign/RelationTableView.cxx @@ -244,7 +244,7 @@ void ORelationTableView::ConnDoubleClicked( OTableConnection* pConnection ) } - Invalidate(INVALIDATE_NOCHILDREN); + Invalidate(InvalidateFlags::NoChildren); } void ORelationTableView::AddNewRelation() |