Kaydet (Commit) 3cb6587a authored tarafından Csikós Tamás's avatar Csikós Tamás Kaydeden (comit) Caolán McNamara

modern .ui widgetlayout for optgrid

Change-Id: Ia84541a8ba2e09ca89962e1ed477b90819cc3f48
Reviewed-on: https://gerrit.libreoffice.org/4755Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst 3a393557
...@@ -111,46 +111,29 @@ public: ...@@ -111,46 +111,29 @@ public:
virtual int DeactivatePage( SfxItemSet* pSet ); virtual int DeactivatePage( SfxItemSet* pSet );
private: private:
CheckBox aCbxUseGridsnap; CheckBox* pCbxUseGridsnap;
CheckBox aCbxGridVisible; CheckBox* pCbxGridVisible;
FixedLine aFlResolution; MetricField* pMtrFldDrawX;
FixedText aFtDrawX; MetricField* pMtrFldDrawY;
MetricField aMtrFldDrawX;
FixedText aFtDrawY;
MetricField aMtrFldDrawY;
FixedLine aFlDivision; NumericField* pNumFldDivisionX;
FixedText aFtDivisionX; NumericField* pNumFldDivisionY;
NumericField aNumFldDivisionX;
FixedText aDivisionPointX;
FixedText aFtDivisionY;
NumericField aNumFldDivisionY;
FixedText aDivisionPointY;
CheckBox aCbxSynchronize;
FixedLine aGrpDrawGrid;
CheckBox* pCbxSynchronize;
protected: protected:
//these controls are used in draw and impress //these controls are used in draw and impress
FixedLine aGrpSnap; CheckBox* pCbxSnapHelplines;
CheckBox aCbxSnapHelplines; CheckBox* pCbxSnapBorder;
CheckBox aCbxSnapBorder; CheckBox* pCbxSnapFrame;
CheckBox aCbxSnapFrame; CheckBox* pCbxSnapPoints;
CheckBox aCbxSnapPoints; MetricField* pMtrFldSnapArea;
FixedText aFtSnapArea;
MetricField aMtrFldSnapArea; CheckBox* pCbxOrtho;
CheckBox* pCbxBigOrtho;
FixedLine aSeparatorFL; CheckBox* pCbxRotate;
MetricField* pMtrFldAngle;
FixedLine aGrpOrtho; MetricField* pMtrFldBezAngle;
CheckBox aCbxOrtho;
CheckBox aCbxBigOrtho;
CheckBox aCbxRotate;
MetricField aMtrFldAngle;
FixedText aFtBezAngle;
MetricField aMtrFldBezAngle;
private: private:
sal_Bool bAttrModified; sal_Bool bAttrModified;
......
...@@ -49,21 +49,16 @@ using namespace ::com::sun::star::uno; ...@@ -49,21 +49,16 @@ using namespace ::com::sun::star::uno;
SdTpOptionsSnap::SdTpOptionsSnap( Window* pParent, const SfxItemSet& rInAttrs ) : SdTpOptionsSnap::SdTpOptionsSnap( Window* pParent, const SfxItemSet& rInAttrs ) :
SvxGridTabPage(pParent, rInAttrs) SvxGridTabPage(pParent, rInAttrs)
{ {
aGrpSnap.Show(); pCbxSnapHelplines->Show();
aCbxSnapHelplines.Show(); pCbxSnapBorder->Show();
aCbxSnapBorder.Show(); pCbxSnapFrame->Show();
aCbxSnapFrame.Show(); pCbxSnapPoints->Show();
aCbxSnapPoints.Show(); pMtrFldSnapArea->Show();
aFtSnapArea.Show(); pCbxOrtho->Show();
aMtrFldSnapArea.Show(); pCbxBigOrtho->Show();
aGrpOrtho.Show(); pCbxRotate->Show();
aCbxOrtho.Show(); pMtrFldAngle->Show();
aCbxBigOrtho.Show(); pMtrFldBezAngle->Show();
aCbxRotate.Show();
aMtrFldAngle.Show();
aFtBezAngle.Show();
aMtrFldBezAngle.Show();
aSeparatorFL.Show();
} }
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
...@@ -79,16 +74,16 @@ sal_Bool SdTpOptionsSnap::FillItemSet( SfxItemSet& rAttrs ) ...@@ -79,16 +74,16 @@ sal_Bool SdTpOptionsSnap::FillItemSet( SfxItemSet& rAttrs )
SvxGridTabPage::FillItemSet(rAttrs); SvxGridTabPage::FillItemSet(rAttrs);
SdOptionsSnapItem aOptsItem( ATTR_OPTIONS_SNAP ); SdOptionsSnapItem aOptsItem( ATTR_OPTIONS_SNAP );
aOptsItem.GetOptionsSnap().SetSnapHelplines( aCbxSnapHelplines.IsChecked() ); aOptsItem.GetOptionsSnap().SetSnapHelplines( pCbxSnapHelplines->IsChecked() );
aOptsItem.GetOptionsSnap().SetSnapBorder( aCbxSnapBorder.IsChecked() ); aOptsItem.GetOptionsSnap().SetSnapBorder( pCbxSnapBorder->IsChecked() );
aOptsItem.GetOptionsSnap().SetSnapFrame( aCbxSnapFrame.IsChecked() ); aOptsItem.GetOptionsSnap().SetSnapFrame( pCbxSnapFrame->IsChecked() );
aOptsItem.GetOptionsSnap().SetSnapPoints( aCbxSnapPoints.IsChecked() ); aOptsItem.GetOptionsSnap().SetSnapPoints( pCbxSnapPoints->IsChecked() );
aOptsItem.GetOptionsSnap().SetOrtho( aCbxOrtho.IsChecked() ); aOptsItem.GetOptionsSnap().SetOrtho( pCbxOrtho->IsChecked() );
aOptsItem.GetOptionsSnap().SetBigOrtho( aCbxBigOrtho.IsChecked() ); aOptsItem.GetOptionsSnap().SetBigOrtho( pCbxBigOrtho->IsChecked() );
aOptsItem.GetOptionsSnap().SetRotate( aCbxRotate.IsChecked() ); aOptsItem.GetOptionsSnap().SetRotate( pCbxRotate->IsChecked() );
aOptsItem.GetOptionsSnap().SetSnapArea( (sal_Int16) aMtrFldSnapArea.GetValue() ); aOptsItem.GetOptionsSnap().SetSnapArea( (sal_Int16) pMtrFldSnapArea->GetValue() );
aOptsItem.GetOptionsSnap().SetAngle( (sal_Int16) aMtrFldAngle.GetValue() ); aOptsItem.GetOptionsSnap().SetAngle( (sal_Int16) pMtrFldAngle->GetValue() );
aOptsItem.GetOptionsSnap().SetEliminatePolyPointLimitAngle( (sal_Int16) aMtrFldBezAngle.GetValue() ); aOptsItem.GetOptionsSnap().SetEliminatePolyPointLimitAngle( (sal_Int16) pMtrFldBezAngle->GetValue() );
rAttrs.Put( aOptsItem ); rAttrs.Put( aOptsItem );
...@@ -106,18 +101,18 @@ void SdTpOptionsSnap::Reset( const SfxItemSet& rAttrs ) ...@@ -106,18 +101,18 @@ void SdTpOptionsSnap::Reset( const SfxItemSet& rAttrs )
SdOptionsSnapItem aOptsItem( (const SdOptionsSnapItem&) rAttrs. SdOptionsSnapItem aOptsItem( (const SdOptionsSnapItem&) rAttrs.
Get( ATTR_OPTIONS_SNAP ) ); Get( ATTR_OPTIONS_SNAP ) );
aCbxSnapHelplines.Check( aOptsItem.GetOptionsSnap().IsSnapHelplines() ); pCbxSnapHelplines->Check( aOptsItem.GetOptionsSnap().IsSnapHelplines() );
aCbxSnapBorder.Check( aOptsItem.GetOptionsSnap().IsSnapBorder() ); pCbxSnapBorder->Check( aOptsItem.GetOptionsSnap().IsSnapBorder() );
aCbxSnapFrame.Check( aOptsItem.GetOptionsSnap().IsSnapFrame() ); pCbxSnapFrame->Check( aOptsItem.GetOptionsSnap().IsSnapFrame() );
aCbxSnapPoints.Check( aOptsItem.GetOptionsSnap().IsSnapPoints() ); pCbxSnapPoints->Check( aOptsItem.GetOptionsSnap().IsSnapPoints() );
aCbxOrtho.Check( aOptsItem.GetOptionsSnap().IsOrtho() ); pCbxOrtho->Check( aOptsItem.GetOptionsSnap().IsOrtho() );
aCbxBigOrtho.Check( aOptsItem.GetOptionsSnap().IsBigOrtho() ); pCbxBigOrtho->Check( aOptsItem.GetOptionsSnap().IsBigOrtho() );
aCbxRotate.Check( aOptsItem.GetOptionsSnap().IsRotate() ); pCbxRotate->Check( aOptsItem.GetOptionsSnap().IsRotate() );
aMtrFldSnapArea.SetValue( aOptsItem.GetOptionsSnap().GetSnapArea() ); pMtrFldSnapArea->SetValue( aOptsItem.GetOptionsSnap().GetSnapArea() );
aMtrFldAngle.SetValue( aOptsItem.GetOptionsSnap().GetAngle() ); pMtrFldAngle->SetValue( aOptsItem.GetOptionsSnap().GetAngle() );
aMtrFldBezAngle.SetValue( aOptsItem.GetOptionsSnap().GetEliminatePolyPointLimitAngle() ); pMtrFldBezAngle->SetValue( aOptsItem.GetOptionsSnap().GetEliminatePolyPointLimitAngle() );
aCbxRotate.GetClickHdl().Call(0); pCbxRotate->GetClickHdl().Call(0);
} }
// ----------------------------------------------------------------------- // -----------------------------------------------------------------------
......
...@@ -49,7 +49,6 @@ $(eval $(call gb_SrsTarget_add_files,svx/res,\ ...@@ -49,7 +49,6 @@ $(eval $(call gb_SrsTarget_add_files,svx/res,\
svx/source/dialog/langbox.src \ svx/source/dialog/langbox.src \
svx/source/dialog/language.src \ svx/source/dialog/language.src \
svx/source/dialog/linkwarn.src \ svx/source/dialog/linkwarn.src \
svx/source/dialog/optgrid.src \
svx/source/dialog/passwd.src \ svx/source/dialog/passwd.src \
svx/source/dialog/prtqry.src \ svx/source/dialog/prtqry.src \
svx/source/dialog/ruler.src \ svx/source/dialog/ruler.src \
......
...@@ -18,6 +18,7 @@ $(eval $(call gb_UIConfig_add_uifiles,svx,\ ...@@ -18,6 +18,7 @@ $(eval $(call gb_UIConfig_add_uifiles,svx,\
svx/uiconfig/ui/deletefooterdialog \ svx/uiconfig/ui/deletefooterdialog \
svx/uiconfig/ui/headfootformatpage \ svx/uiconfig/ui/headfootformatpage \
svx/uiconfig/ui/findreplacedialog \ svx/uiconfig/ui/findreplacedialog \
svx/uiconfig/ui/optgridpage \
svx/uiconfig/ui/redlinecontrol \ svx/uiconfig/ui/redlinecontrol \
svx/uiconfig/ui/redlinefilterpage \ svx/uiconfig/ui/redlinefilterpage \
svx/uiconfig/ui/redlineviewpage \ svx/uiconfig/ui/redlineviewpage \
......
This diff is collapsed.
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef _SVX_OPTGRID_HRC
#define _SVX_OPTGRID_HRC
//Grid-Page
#define GRP_DRAWGRID 2
#define CBX_USE_GRIDSNAP 4
#define CBX_SYNCHRONIZE 5
#define CBX_SNAPGRID 7
#define CBX_GRID_VISIBLE 8
#define MTR_FLD_DRAW_Y 9
#define MTR_FLD_DRAW_X 12
#define NUM_FLD_DIVISION_X 13
#define NUM_FLD_DIVISION_Y 14
#define FT_DRAW_X 17
#define FT_DRAW_Y 18
#define FL_RESOLUTION 19
#define FL_DIVISION 20
#define FT_VERT_POINTS 21
#define FT_HORZ_POINTS 22
#define FT_DIVISION_Y 23
#define FT_DIVISION_X 24
#define CBX_SNAP_HELPLINES 25
#define CBX_SNAP_BORDER 26
#define CBX_SNAP_FRAME 27
#define CBX_SNAP_POINTS 28
#define FT_SNAP_AREA 29
#define MTR_FLD_SNAP_AREA 30
#define GRP_SNAP 31
#define CBX_ORTHO 32
#define CBX_BIGORTHO 33
#define CBX_ROTATE 34
#define MTR_FLD_ANGLE 35
#define FT_BEZ_ANGLE 36
#define MTR_FLD_BEZ_ANGLE 37
#define GRP_ORTHO 38
#define FL_SEPARATOR 39
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sfx2/sfx.hrc>
#include "helpid.hrc"
#include <svx/dialogs.hrc>
#include "optgrid.hrc"
TabPage RID_SVXPAGE_GRID
{
HelpId = HID_OPTIONS_GRID ;
SVLook = TRUE ;
Hide = TRUE ;
Size = MAP_APPFONT ( TP_WIDTH , TP_HEIGHT ) ;
FixedLine GRP_DRAWGRID
{
Pos = MAP_APPFONT ( 6 , 3 ) ;
Size = MAP_APPFONT ( 248 , 8 ) ;
Text [ en-US ] = "Grid" ;
};
CheckBox CBX_USE_GRIDSNAP
{
HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_USE_GRIDSNAP";
Pos = MAP_APPFONT ( 12 , 14 ) ;
Size = MAP_APPFONT ( 204 , 10 ) ;
TabStop = TRUE ;
Text [ en-US ] = "Sn~ap to grid" ;
};
CheckBox CBX_GRID_VISIBLE
{
HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_GRID_VISIBLE";
Pos = MAP_APPFONT ( 12 , 27 ) ;
Size = MAP_APPFONT ( 204 , 10 ) ;
TabStop = TRUE ;
Text [ en-US ] = "V~isible grid" ;
};
FixedLine FL_RESOLUTION
{
Pos = MAP_APPFONT ( 6 , 45 ) ;
Size = MAP_APPFONT ( 120 , 8 ) ;
Text [ en-US ] = "Resolution" ;
};
FixedText FT_DRAW_X
{
Pos = MAP_APPFONT ( 12 , 56 ) ;
Size = MAP_APPFONT ( 60 , 8 ) ;
Text [ en-US ] = "H~orizontal";
};
FixedText FT_DRAW_Y
{
Pos = MAP_APPFONT ( 12 , 71 ) ;
Size = MAP_APPFONT ( 60 , 8 ) ;
Text [ en-US ] = "~Vertical";
};
MetricField MTR_FLD_DRAW_X
{
HelpID = "svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_DRAW_X";
Border = TRUE ;
Pos = MAP_APPFONT ( 75 , 54 ) ;
Size = MAP_APPFONT ( 45 , 12 ) ;
TabStop = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 10 ;
First = 10 ;
Maximum = 10000 ;
Last = 10000 ;
StrictFormat = TRUE ;
DecimalDigits = 2 ;
Unit = FUNIT_MM ;
SpinSize = 50 ;
};
MetricField MTR_FLD_DRAW_Y
{
HelpID = "svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_DRAW_Y";
Border = TRUE ;
Pos = MAP_APPFONT ( 75 , 69 ) ;
Size = MAP_APPFONT ( 45 , 12 ) ;
TabStop = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 10 ;
First = 10 ;
Maximum = 10000 ;
Last = 10000 ;
StrictFormat = TRUE ;
DecimalDigits = 2 ;
Unit = FUNIT_MM ;
SpinSize = 50 ;
};
FixedLine FL_DIVISION
{
Pos = MAP_APPFONT ( 130 , 45 ) ;
Size = MAP_APPFONT ( 124 , 8 ) ;
Text [ en-US ] = "Subdivision" ;
};
FixedText FT_DIVISION_X
{
Pos = MAP_APPFONT ( 136 , 56 ) ;
Size = MAP_APPFONT ( 50 , 8 ) ;
Text [ en-US ] = "Horizont~al";
};
FixedText FT_DIVISION_Y
{
Pos = MAP_APPFONT ( 136 , 71 ) ;
Size = MAP_APPFONT ( 50 , 8 ) ;
Text [ en-US ] = "V~ertical";
};
NumericField NUM_FLD_DIVISION_X
{
HelpID = "svx:NumericField:RID_SVXPAGE_GRID:NUM_FLD_DIVISION_X";
Border = TRUE ;
Pos = MAP_APPFONT ( 195 , 54 ) ;
Size = MAP_APPFONT ( 25 , 12 ) ;
TabStop = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 1 ;
Maximum = 99 ;
Last = 99 ;
StrictFormat = TRUE ;
SpinSize = 1 ;
};
FixedText FT_HORZ_POINTS
{
Pos = MAP_APPFONT ( 223 , 56 ) ;
Size = MAP_APPFONT ( 29 , 8 ) ;
Text [ en-US ] = "space(s)" ;
};
NumericField NUM_FLD_DIVISION_Y
{
HelpID = "svx:NumericField:RID_SVXPAGE_GRID:NUM_FLD_DIVISION_Y";
Border = TRUE ;
Pos = MAP_APPFONT ( 195 , 69 ) ;
Size = MAP_APPFONT ( 25 , 12 ) ;
TabStop = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 1 ;
Maximum = 99 ;
Last = 99 ;
StrictFormat = TRUE ;
SpinSize = 1 ;
};
FixedText FT_VERT_POINTS
{
Pos = MAP_APPFONT ( 223 , 71 ) ;
Size = MAP_APPFONT ( 29 , 8 ) ;
};
CheckBox CBX_SYNCHRONIZE
{
HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_SYNCHRONIZE";
Pos = MAP_APPFONT ( 12 , 84 ) ;
Size = MAP_APPFONT ( 127 , 10 ) ;
TabStop = TRUE ;
Text [ en-US ] = "Synchronize a~xes" ;
};
FixedLine GRP_SNAP
{
Pos = MAP_APPFONT ( 6 , 100 ) ;
Size = MAP_APPFONT ( 120 , 8 ) ;
Hide = TRUE;
Text [ en-US ] = "Snap" ;
};
CheckBox CBX_SNAP_HELPLINES
{
HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_HELPLINES";
Pos = MAP_APPFONT ( 12 , 111 ) ;
Size = MAP_APPFONT ( 106 , 10 ) ;
Hide = TRUE;
TabStop = TRUE ;
Text [ en-US ] = "To snap lines" ;
};
CheckBox CBX_SNAP_BORDER
{
HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_BORDER";
Hide = TRUE;
TabStop = TRUE ;
Pos = MAP_APPFONT ( 12 , 125 ) ;
Size = MAP_APPFONT ( 106 , 10 ) ;
Text [ en-US ] = "To the ~page margins" ;
};
CheckBox CBX_SNAP_FRAME
{
HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_FRAME";
Pos = MAP_APPFONT ( 12 , 139 ) ;
Size = MAP_APPFONT ( 106 , 10 ) ;
Hide = TRUE;
TabStop = TRUE ;
Text [ en-US ] = "To object ~frame" ;
};
CheckBox CBX_SNAP_POINTS
{
HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_SNAP_POINTS";
Pos = MAP_APPFONT ( 12 , 153 ) ;
Size = MAP_APPFONT ( 106 , 10 ) ;
Hide = TRUE;
TabStop = TRUE ;
Text [ en-US ] = "To obje~ct points" ;
};
FixedText FT_SNAP_AREA
{
Pos = MAP_APPFONT ( 12 , 169 ) ;
Size = MAP_APPFONT ( 69 , 10 ) ;
Hide = TRUE;
Text [ en-US ] = "~Snap range" ;
};
MetricField MTR_FLD_SNAP_AREA
{
HelpID = "svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_SNAP_AREA";
Border = TRUE ;
Pos = MAP_APPFONT ( 83 , 167 ) ;
Size = MAP_APPFONT ( 35 , 12 ) ;
Hide = TRUE;
TabStop = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Minimum = 1 ;
Maximum = 50 ;
StrictFormat = TRUE ;
Unit = FUNIT_CUSTOM ;
First = 1 ;
Last = 999 ;
CustomUnitText [ en-US ] = " Pixels" ;
};
FixedLine FL_SEPARATOR
{
Pos = MAP_APPFONT ( 127 , 111 ) ;
Size = MAP_APPFONT ( 4 , 68 ) ;
Hide = TRUE;
Vert = TRUE;
};
FixedLine GRP_ORTHO
{
Pos = MAP_APPFONT ( 130 , 100 ) ;
Size = MAP_APPFONT ( 124 , 8 ) ;
Hide = TRUE;
Text [ en-US ] = "Snap position" ;
};
CheckBox CBX_ORTHO
{
HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_ORTHO";
Pos = MAP_APPFONT ( 136 , 111 ) ;
Size = MAP_APPFONT ( 112 , 10 ) ;
Hide = TRUE;
TabStop = TRUE ;
Text [ en-US ] = "~When creating or moving objects" ;
};
CheckBox CBX_BIGORTHO
{
HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_BIGORTHO";
Pos = MAP_APPFONT ( 136 , 125 ) ;
Size = MAP_APPFONT ( 112 , 10 ) ;
Hide = TRUE;
TabStop = TRUE ;
Text [ en-US ] = "~Extend edges" ;
};
CheckBox CBX_ROTATE
{
HelpID = "svx:CheckBox:RID_SVXPAGE_GRID:CBX_ROTATE";
Pos = MAP_APPFONT ( 136 , 139 ) ;
// 136, 111
Size = MAP_APPFONT ( 55 , 10 ) ;
Hide = TRUE;
TabStop = TRUE ;
Text [ en-US ] = "When ro~tating" ;
};
MetricField MTR_FLD_ANGLE
{
HelpID = "svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_ANGLE";
Border = TRUE ;
Pos = MAP_APPFONT ( 194 , 137 ) ;
// 190, 111
Size = MAP_APPFONT ( 54 , 12 ) ;
Hide = TRUE;
TabStop = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Maximum = 18000 ;
Last = 18000 ;
DecimalDigits = 2 ;
StrictFormat = TRUE ;
Unit = FUNIT_CUSTOM ;
SpinSize = 500 ;
CustomUnitText [ en-US ] = " degrees" ;
};
FixedText FT_BEZ_ANGLE
{
Pos = MAP_APPFONT ( 136 , 156 ) ;
Size = MAP_APPFONT ( 55 , 10 ) ;
Hide = TRUE;
Text [ en-US ] = "Point reducti~on" ;
};
MetricField MTR_FLD_BEZ_ANGLE
{
HelpID = "svx:MetricField:RID_SVXPAGE_GRID:MTR_FLD_BEZ_ANGLE";
Border = TRUE ;
Pos = MAP_APPFONT ( 194 , 154 ) ;
Size = MAP_APPFONT ( 54 , 12 ) ;
Hide = TRUE;
TabStop = TRUE ;
Repeat = TRUE ;
Spin = TRUE ;
Maximum = 9000 ;
Last = 9000 ;
DecimalDigits = 2 ;
StrictFormat = TRUE ;
Unit = FUNIT_CUSTOM ;
SpinSize = 500 ;
CustomUnitText [ en-US ] = " degrees" ;
};
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
This diff is collapsed.
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