summaryrefslogtreecommitdiff
path: root/svx/source/sidebar/possize/PosSizePropertyPanel.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/sidebar/possize/PosSizePropertyPanel.cxx')
-rw-r--r--svx/source/sidebar/possize/PosSizePropertyPanel.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/svx/source/sidebar/possize/PosSizePropertyPanel.cxx b/svx/source/sidebar/possize/PosSizePropertyPanel.cxx
index e198505a0aa9..026fb8c55aaa 100644
--- a/svx/source/sidebar/possize/PosSizePropertyPanel.cxx
+++ b/svx/source/sidebar/possize/PosSizePropertyPanel.cxx
@@ -51,7 +51,6 @@ const char USERITEM_NAME[] = "FitItem";
namespace svx { namespace sidebar {
-
PosSizePropertyPanel::PosSizePropertyPanel(
vcl::Window* pParent,
const css::uno::Reference<css::frame::XFrame>& rxFrame,
@@ -181,7 +180,6 @@ namespace
} // end of anonymous namespace
-
void PosSizePropertyPanel::Initialize()
{
//Position : Horizontal / Vertical
@@ -251,7 +249,6 @@ VclPtr<vcl::Window> PosSizePropertyPanel::Create (
}
-
void PosSizePropertyPanel::DataChanged(
const DataChangedEvent& /*rEvent*/)
{
@@ -330,7 +327,6 @@ void PosSizePropertyPanel::HandleContextChange(
}
-
IMPL_LINK_NOARG_TYPED( PosSizePropertyPanel, ChangeWidthHdl, Edit&, void )
{
if( mpCbxScale->IsChecked() &&
@@ -353,7 +349,6 @@ IMPL_LINK_NOARG_TYPED( PosSizePropertyPanel, ChangeWidthHdl, Edit&, void )
}
-
IMPL_LINK_NOARG_TYPED( PosSizePropertyPanel, ChangeHeightHdl, Edit&, void )
{
if( mpCbxScale->IsChecked() &&
@@ -376,21 +371,18 @@ IMPL_LINK_NOARG_TYPED( PosSizePropertyPanel, ChangeHeightHdl, Edit&, void )
}
-
IMPL_LINK_NOARG_TYPED( PosSizePropertyPanel, ChangePosXHdl, Edit&, void )
{
executePosX();
}
-
IMPL_LINK_NOARG_TYPED( PosSizePropertyPanel, ChangePosYHdl, Edit&, void )
{
executePosY();
}
-
IMPL_LINK_NOARG_TYPED( PosSizePropertyPanel, ClickAutoHdl, Button*, void )
{
if ( mpCbxScale->IsChecked() )
@@ -405,7 +397,6 @@ IMPL_LINK_NOARG_TYPED( PosSizePropertyPanel, ClickAutoHdl, Button*, void )
}
-
IMPL_LINK_NOARG_TYPED( PosSizePropertyPanel, AngleModifiedHdl, Edit&, void )
{
OUString sTmp = mpMtrAngle->GetText();
@@ -451,7 +442,6 @@ IMPL_LINK_NOARG_TYPED( PosSizePropertyPanel, AngleModifiedHdl, Edit&, void )
}
-
IMPL_LINK_NOARG_TYPED( PosSizePropertyPanel, RotationHdl, DialControl*, void )
{
sal_Int32 nTmp = mpDial->GetRotation();
@@ -467,7 +457,6 @@ IMPL_LINK_NOARG_TYPED( PosSizePropertyPanel, RotationHdl, DialControl*, void )
}
-
IMPL_LINK_TYPED( PosSizePropertyPanel, FlipHdl, ToolBox*, pBox, void )
{
const OUString aCommand(pBox->GetItemCommand(pBox->GetCurItemId()));
@@ -487,7 +476,6 @@ IMPL_LINK_TYPED( PosSizePropertyPanel, FlipHdl, ToolBox*, pBox, void )
}
-
void PosSizePropertyPanel::NotifyItemUpdate(
sal_uInt16 nSID,
SfxItemState eState,
@@ -816,11 +804,6 @@ void PosSizePropertyPanel::NotifyItemUpdate(
}
-
-
-
-
-
void PosSizePropertyPanel::executeSize()
{
if ( mpMtrWidth->IsValueModified() || mpMtrHeight->IsValueModified())
@@ -866,7 +849,6 @@ void PosSizePropertyPanel::executeSize()
}
-
void PosSizePropertyPanel::executePosX()
{
if ( mpMtrPosX->IsValueModified())
@@ -891,7 +873,6 @@ void PosSizePropertyPanel::executePosX()
}
-
void PosSizePropertyPanel::executePosY()
{
if ( mpMtrPosY->IsValueModified() )
@@ -914,7 +895,6 @@ void PosSizePropertyPanel::executePosY()
}
-
void PosSizePropertyPanel::MetricState( SfxItemState eState, const SfxPoolItem* pState )
{
bool bPosXBlank = false;
@@ -953,7 +933,6 @@ void PosSizePropertyPanel::MetricState( SfxItemState eState, const SfxPoolItem*
}
-
FieldUnit PosSizePropertyPanel::GetCurrentUnit( SfxItemState eState, const SfxPoolItem* pState )
{
FieldUnit eUnit = FUNIT_NONE;
@@ -988,7 +967,6 @@ FieldUnit PosSizePropertyPanel::GetCurrentUnit( SfxItemState eState, const SfxPo
}
-
void PosSizePropertyPanel::DisableControls()
{
if( mbPositionProtected )