summaryrefslogtreecommitdiff
path: root/svx/source/tbxctrls/layctrl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/tbxctrls/layctrl.cxx')
-rw-r--r--svx/source/tbxctrls/layctrl.cxx19
1 files changed, 0 insertions, 19 deletions
diff --git a/svx/source/tbxctrls/layctrl.cxx b/svx/source/tbxctrls/layctrl.cxx
index 6f63ff9d894e..74d355e0973d 100644
--- a/svx/source/tbxctrls/layctrl.cxx
+++ b/svx/source/tbxctrls/layctrl.cxx
@@ -95,14 +95,12 @@ const long TableWindow::TABLE_CELLS_HORIZ = 10;
const long TableWindow::TABLE_CELLS_VERT = 15;
-
IMPL_LINK_NOARG_TYPED(TableWindow, SelectHdl, Button*, void)
{
CloseAndShowTableDialog();
}
-
TableWindow::TableWindow( sal_uInt16 nSlotId, const OUString& rCmd, const OUString& rText,
const Reference< XFrame >& rFrame )
: SfxPopupWindow( nSlotId, rFrame, WinBits( WB_STDPOPUP ) )
@@ -149,7 +147,6 @@ TableWindow::TableWindow( sal_uInt16 nSlotId, const OUString& rCmd, const OUStri
}
-
TableWindow::~TableWindow()
{
disposeOnce();
@@ -174,7 +171,6 @@ void TableWindow::MouseMove( const MouseEvent& rMEvt )
}
-
void TableWindow::KeyInput( const KeyEvent& rKEvt )
{
bool bHandled = false;
@@ -248,7 +244,6 @@ void TableWindow::KeyInput( const KeyEvent& rKEvt )
}
-
void TableWindow::MouseButtonUp( const MouseEvent& rMEvt )
{
SfxPopupWindow::MouseButtonUp( rMEvt );
@@ -256,7 +251,6 @@ void TableWindow::MouseButtonUp( const MouseEvent& rMEvt )
}
-
void TableWindow::Paint(vcl::RenderContext& rRenderContext, const Rectangle&)
{
const long nSelectionWidth = mnTablePosX + nCol * mnTableCellWidth;
@@ -331,7 +325,6 @@ void TableWindow::Paint(vcl::RenderContext& rRenderContext, const Rectangle&)
}
-
void TableWindow::PopupModeEnd()
{
if ( !IsPopupModeCanceled() && nCol && nLine )
@@ -349,7 +342,6 @@ void TableWindow::PopupModeEnd()
}
-
void TableWindow::Update( long nNewCol, long nNewLine )
{
if ( nNewCol < 0 || nNewCol > TABLE_CELLS_HORIZ )
@@ -367,7 +359,6 @@ void TableWindow::Update( long nNewCol, long nNewLine )
}
-
void TableWindow::TableDialog( const Sequence< PropertyValue >& rArgs )
{
Reference< XDispatchProvider > xDispatchProvider( mxFrame, UNO_QUERY );
@@ -385,7 +376,6 @@ void TableWindow::TableDialog( const Sequence< PropertyValue >& rArgs )
}
-
void TableWindow::CloseAndShowTableDialog()
{
// close the toolbar tool
@@ -425,7 +415,6 @@ public:
};
-
ColumnsWindow::ColumnsWindow( sal_uInt16 nId, const OUString& rCmd, const OUString& rText, const Reference< XFrame >& rFrame ) :
SfxPopupWindow( nId, rFrame, WB_STDPOPUP ),
bInitialKeyInput(true),
@@ -461,7 +450,6 @@ ColumnsWindow::ColumnsWindow( sal_uInt16 nId, const OUString& rCmd, const OUStri
}
-
void ColumnsWindow::MouseMove( const MouseEvent& rMEvt )
{
SfxPopupWindow::MouseMove( rMEvt );
@@ -602,7 +590,6 @@ void ColumnsWindow::KeyInput( const KeyEvent& rKEvt )
}
-
void ColumnsWindow::MouseButtonUp( const MouseEvent& rMEvt )
{
SfxPopupWindow::MouseButtonUp( rMEvt );
@@ -613,7 +600,6 @@ void ColumnsWindow::MouseButtonUp( const MouseEvent& rMEvt )
}
-
void ColumnsWindow::Paint(vcl::RenderContext& rRenderContext, const Rectangle&)
{
long i;
@@ -674,7 +660,6 @@ void ColumnsWindow::Paint(vcl::RenderContext& rRenderContext, const Rectangle&)
}
-
void ColumnsWindow::PopupModeEnd()
{
if ( !IsPopupModeCanceled() && nCol )
@@ -703,13 +688,11 @@ SvxTableToolBoxControl::SvxTableToolBoxControl( sal_uInt16 nSlotId, sal_uInt16 n
}
-
SvxTableToolBoxControl::~SvxTableToolBoxControl()
{
}
-
VclPtr<SfxPopupWindow> SvxTableToolBoxControl::CreatePopupWindow()
{
if ( bEnabled )
@@ -750,13 +733,11 @@ SvxColumnsToolBoxControl::SvxColumnsToolBoxControl( sal_uInt16 nSlotId, sal_uInt
}
-
SvxColumnsToolBoxControl::~SvxColumnsToolBoxControl()
{
}
-
VclPtr<SfxPopupWindow> SvxColumnsToolBoxControl::CreatePopupWindow()
{
ColumnsWindow* pWin = nullptr;