Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
954dcb28
Kaydet (Commit)
954dcb28
authored
Eyl 13, 2010
tarafından
Amelia Wang
Kaydeden (comit)
Cédric Bosdonnat
Eyl 13, 2010
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
cjk-character-units-ui.diff: add a new unit 'character unit'
üst
a2042c30
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
65 additions
and
3 deletions
+65
-3
Writer.xcs
officecfg/registry/schema/org/openoffice/Office/Writer.xcs
+12
-0
sfxsids.hrc
sfx2/inc/sfx2/sfxsids.hrc
+1
-0
sfx.sdi
sfx2/sdi/sfx.sdi
+27
-0
ruler.hrc
svx/source/dialog/ruler.hrc
+2
-1
ruler.src
svx/source/dialog/ruler.src
+12
-0
sdstring.src
svx/source/dialog/sdstring.src
+2
-0
svxruler.cxx
svx/source/dialog/svxruler.cxx
+9
-2
No files found.
officecfg/registry/schema/org/openoffice/Office/Writer.xcs
Dosyayı görüntüle @
954dcb28
...
...
@@ -1651,6 +1651,18 @@
</info>
<value>
false
</value>
</prop>
<!-- added for apply char unit 2006-12-1 -->
<prop
oor:name=
"ApplyCharUnit"
oor:type=
"xs:boolean"
>
<!-- OldPath: Writer/Layout -->
<!-- OldLocation: Soffice.cfg -->
<!-- UIHints: Tools - Options - Text document - Layout - [Section] Apply char unit -->
<info>
<author>
OS
</author>
<desc>
apply char unit to calculate the paragraph's indent
</desc>
<label>
apply char unit
</label>
</info>
<value>
true
</value>
</prop>
</group>
</group>
<group
oor:name=
"Grid"
>
...
...
sfx2/inc/sfx2/sfxsids.hrc
Dosyayı görüntüle @
954dcb28
...
...
@@ -757,6 +757,7 @@
#define SID_ATTR_QUICKLAUNCHER (SID_OPTIONS_START + 74)
#define SID_ATTR_YEAR2000 (SID_OPTIONS_START + 87)
#define SID_ATTR_ALLOWFOLDERWEBVIEW (SID_OPTIONS_START + 92)
#define SID_ATTR_APPLYCHARUNIT (SID_OPTIONS_START + 88)
// PathTabPage
...
...
sfx2/sdi/sfx.sdi
Dosyayı görüntüle @
954dcb28
...
...
@@ -3829,6 +3829,33 @@ SfxUInt16Item MetricUnit SID_ATTR_METRIC
GroupId = ;
]
//--------------------------------------------------------------------------
SfxBoolItem ApplyCharUnit SID_ATTR_APPLYCHARUNIT
[
/* flags: */
AutoUpdate = TRUE,
Cachable = Cachable,
FastCall = FALSE,
HasCoreId = FALSE,
HasDialog = FALSE,
ReadOnlyDoc = TRUE,
Toggle = FALSE,
Container = FALSE,
RecordAbsolute = FALSE,
RecordPerSet;
Synchron;
Readonly = FALSE,
/* config: */
AccelConfig = FALSE,
MenuConfig = FALSE,
StatusBarConfig = FALSE,
ToolBoxConfig = FALSE,
GroupId = GID_VIEW;
]
//--------------------------------------------------------------------------
SfxBoolItem Modified SID_MODIFIED
...
...
svx/source/dialog/ruler.hrc
Dosyayı görüntüle @
954dcb28
...
...
@@ -34,4 +34,5 @@
#define ID_MILE 10
#define ID_POINT 6
#define ID_PICA 7
#define ID_CHAR 11
#define ID_LINE 12
svx/source/dialog/ruler.src
Dosyayı görüntüle @
954dcb28
...
...
@@ -87,6 +87,18 @@ Menu RID_SVXMN_RULER
Checkable = TRUE ;
Text [ en-US ] = "Pica" ;
};
MenuItem
{
Identifier = ID_CHAR ;
Checkable = TRUE ;
Text[ en-US ] = "Char" ;
};
MenuItem
{
Identifier = ID_LINE ;
Checkable = TRUE ;
Text[ en-US ] = "Line" ;
};
};
};
String RID_SVXSTR_RULER_TAB_LEFT
...
...
svx/source/dialog/sdstring.src
Dosyayı görüntüle @
954dcb28
...
...
@@ -1178,6 +1178,8 @@ StringArray RID_SVXSTR_FIELDUNIT_TABLE
< "Miles" ; FUNIT_MILE ; > ;
< "Pica" ; FUNIT_PICA ; > ;
< "Point" ; FUNIT_POINT ; > ;
< "Char" ; FUNIT_CHAR ; > ;
< "Line" ; FUNIT_LINE ; > ;
};
};
...
...
svx/source/dialog/svxruler.cxx
Dosyayı görüntüle @
954dcb28
...
...
@@ -3763,8 +3763,15 @@ void SvxRuler::Command( const CommandEvent& rCEvt )
(
nId
==
FUNIT_M
||
nId
==
FUNIT_KM
||
nId
==
FUNIT_FOOT
||
nId
==
FUNIT_MILE
))
aMenu
.
RemoveItem
(
i
-
1
);
nId
==
FUNIT_MILE
||
nId
==
FUNIT_CHAR
||
nId
==
FUNIT_LINE
))
if
((
nId
==
FUNIT_CHAR
)
&&
bHorz
)
;
else
if
((
nId
==
FUNIT_LINE
)
&&
!
bHorz
)
;
else
aMenu
.
RemoveItem
(
i
-
1
);
}
aMenu
.
Execute
(
this
,
rCEvt
.
GetMousePosPixel
()
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment