diff options
author | Oliver Specht <os@openoffice.org> | 2001-05-04 06:15:48 +0000 |
---|---|---|
committer | Oliver Specht <os@openoffice.org> | 2001-05-04 06:15:48 +0000 |
commit | 98eeb60f5cd12aca3692274370c3d2c319b367e0 (patch) | |
tree | 665f27facbf35e66ac5df5aa5bea1f3f78fc0dbe | |
parent | 47e69c8968d25c2bef99b398d482bb662102021b (diff) |
vertical separator added
-rw-r--r-- | svx/inc/optgrid.hxx | 6 | ||||
-rw-r--r-- | svx/source/options/optgrid.cxx | 6 | ||||
-rw-r--r-- | svx/source/options/optgrid.hrc | 5 | ||||
-rw-r--r-- | svx/source/options/optgrid.src | 10 |
4 files changed, 19 insertions, 8 deletions
diff --git a/svx/inc/optgrid.hxx b/svx/inc/optgrid.hxx index dca814c5b830..dd1cfcfb467b 100644 --- a/svx/inc/optgrid.hxx +++ b/svx/inc/optgrid.hxx @@ -2,9 +2,9 @@ * * $RCSfile: optgrid.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: os $ $Date: 2001-03-22 14:10:42 $ + * last change: $Author: os $ $Date: 2001-05-04 07:15:07 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -184,6 +184,8 @@ protected: FixedText aFtSnapArea; MetricField aMtrFldSnapArea; + FixedLine aSeparatorFL; + FixedLine aGrpOrtho; CheckBox aCbxOrtho; CheckBox aCbxBigOrtho; diff --git a/svx/source/options/optgrid.cxx b/svx/source/options/optgrid.cxx index 2745e7cc01f7..3be6bf8b8f52 100644 --- a/svx/source/options/optgrid.cxx +++ b/svx/source/options/optgrid.cxx @@ -2,9 +2,9 @@ * * $RCSfile: optgrid.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: os $ $Date: 2001-03-22 14:10:59 $ + * last change: $Author: os $ $Date: 2001-05-04 07:15:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -230,6 +230,7 @@ SvxGridTabPage::SvxGridTabPage( Window* pParent, const SfxItemSet& rCoreSet) : aFtSnapArea ( this, ResId( FT_SNAP_AREA ) ), aMtrFldSnapArea ( this, ResId( MTR_FLD_SNAP_AREA ) ), aGrpSnap ( this, ResId( GRP_SNAP ) ), + aSeparatorFL ( this, ResId( FL_SEPARATOR ) ), aCbxOrtho ( this, ResId( CBX_ORTHO ) ), aCbxBigOrtho ( this, ResId( CBX_BIGORTHO ) ), aCbxRotate ( this, ResId( CBX_ROTATE ) ), @@ -243,6 +244,7 @@ SvxGridTabPage::SvxGridTabPage( Window* pParent, const SfxItemSet& rCoreSet) : SetExchangeSupport(); FreeResource(); + aSeparatorFL.SetStyle( aSeparatorFL.GetStyle() | WB_VERT ); // Metrik einstellen FieldUnit eFUnit = GetModuleFieldUnit( &rCoreSet ); diff --git a/svx/source/options/optgrid.hrc b/svx/source/options/optgrid.hrc index 1f48d35154f9..38e97cb393a0 100644 --- a/svx/source/options/optgrid.hrc +++ b/svx/source/options/optgrid.hrc @@ -2,9 +2,9 @@ * * $RCSfile: optgrid.hrc,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: os $ $Date: 2001-03-22 14:10:59 $ + * last change: $Author: os $ $Date: 2001-05-04 07:15:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -97,5 +97,6 @@ #define FT_BEZ_ANGLE 21 #define MTR_FLD_BEZ_ANGLE 22 #define GRP_ORTHO 23 +#define FL_SEPARATOR 24 #endif diff --git a/svx/source/options/optgrid.src b/svx/source/options/optgrid.src index 12143f7db838..ba0ab26e1d82 100644 --- a/svx/source/options/optgrid.src +++ b/svx/source/options/optgrid.src @@ -2,9 +2,9 @@ * * $RCSfile: optgrid.src,v $ * - * $Revision: 1.18 $ + * $Revision: 1.19 $ * - * last change: $Author: kz $ $Date: 2001-04-26 19:34:56 $ + * last change: $Author: os $ $Date: 2001-05-04 07:15:48 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -618,6 +618,12 @@ TabPage RID_SVXPAGE_GRID CustomUnitText[ turkish ] = "Piksel"; CustomUnitText[ language_user1 ] = " "; }; + FixedLine FL_SEPARATOR + { + Pos = MAP_APPFONT ( 127 , 107 ) ; + Size = MAP_APPFONT ( 4 , 72 ) ; + Hide = TRUE; + }; FixedLine GRP_ORTHO { Pos = MAP_APPFONT ( 130 , 100 ) ; |