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
ef9756f5
Kaydet (Commit)
ef9756f5
authored
Kas 21, 2000
tarafından
Daniel Vogelheim
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- added: Property CreateFromParagraphLevelStyles to table of content and User index
- typo fixed
üst
6bce202a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
11 deletions
+23
-11
unomap.hxx
sw/inc/unomap.hxx
+3
-2
unoprnms.hxx
sw/inc/unoprnms.hxx
+3
-2
unoidx.cxx
sw/source/core/unocore/unoidx.cxx
+10
-3
unomap.cxx
sw/source/core/unocore/unomap.cxx
+4
-2
unoprnms.cxx
sw/source/core/unocore/unoprnms.cxx
+3
-2
No files found.
sw/inc/unomap.hxx
Dosyayı görüntüle @
ef9756f5
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: unomap.hxx,v $
*
* $Revision: 1.1
0
$
* $Revision: 1.1
1
$
*
* last change: $Author: dvo $ $Date: 2000-11-2
0 20:28:19
$
* last change: $Author: dvo $ $Date: 2000-11-2
1 12:00:40
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -192,6 +192,7 @@
#define WID_IS_COMMA_SEPARATED 1049
#define WID_INDEX_MARKS 1050
#define WID_IS_RELATIVE_TABSTOPS 1051
#define WID_CREATE_FROM_PARAGRAPH_STYLES 1052
//text document
#define WID_DOC_CHAR_COUNT 1000
...
...
sw/inc/unoprnms.hxx
Dosyayı görüntüle @
ef9756f5
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: unoprnms.hxx,v $
*
* $Revision: 1.1
6
$
* $Revision: 1.1
7
$
*
* last change: $Author: dvo $ $Date: 2000-11-2
0 20:28:19
$
* last change: $Author: dvo $ $Date: 2000-11-2
1 12:00:40
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -525,6 +525,7 @@ extern const SwPropNameLen __FAR_DATA UNO_NAME_CREATE_FROM_OTHER_EMBEDDED_OBJECT
extern
const
SwPropNameLen
__FAR_DATA
UNO_NAME_INDEX_AUTO_MARK_FILE_U_R_L
;
extern
const
SwPropNameLen
__FAR_DATA
UNO_NAME_IS_COMMA_SEPARATED
;
extern
const
SwPropNameLen
__FAR_DATA
UNO_NAME_IS_RELATIVE_TABSTOPS
;
extern
const
SwPropNameLen
__FAR_DATA
UNO_NAME_CREATE_FROM_LEVEL_PARAGRAPH_STYLES
;
extern
const
SwPropNameLen
__FAR_DATA
UNO_NAME_SHOW_CHANGES
;
extern
const
SwPropNameLen
__FAR_DATA
UNO_NAME_RECORD_CHANGES
;
extern
const
SwPropNameLen
__FAR_DATA
UNO_LINK_DISPLAY_NAME
;
...
...
sw/source/core/unocore/unoidx.cxx
Dosyayı görüntüle @
ef9756f5
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: unoidx.cxx,v $
*
* $Revision: 1.1
5
$
* $Revision: 1.1
6
$
*
* last change: $Author: dvo $ $Date: 2000-11-2
0 20:28:18
$
* last change: $Author: dvo $ $Date: 2000-11-2
1 12:00:41
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -594,6 +594,10 @@ void SwXDocumentIndex::setPropertyValue(const OUString& rPropertyName,
aForm
.
SetTemplate
(
1
,
SwXStyleFamilies
::
GetUIName
(
lcl_AnyToString
(
aValue
),
SFX_STYLE_FAMILY_PARA
));
break
;
case
WID_CREATE_FROM_PARAGRAPH_STYLES
:
nCreate
=
lcl_AnyToBool
(
aValue
)
?
(
nCreate
|
TOX_TEMPLATE
)
:
(
nCreate
&
~
TOX_TEMPLATE
);
break
;
case
WID_PARA_LEV1
:
case
WID_PARA_LEV2
:
...
...
@@ -823,7 +827,7 @@ uno::Any SwXDocumentIndex::getPropertyValue(const OUString& rPropertyName)
bRet
=
0
!=
(
nCreate
&
TOX_GRAPHIC
);
break
;
case
WID_CREATE_FROM_EMBEDDED_OBJECTS
:
bRet
=
0
!=
(
nCreate
&
=
TOX_OLE
);
bRet
=
0
!=
(
nCreate
&
TOX_OLE
);
break
;
case
WID_CREATE_FROM_STAR_MATH
:
bRet
=
0
!=
(
nOLEOptions
&
TOO_MATH
);
...
...
@@ -840,6 +844,9 @@ uno::Any SwXDocumentIndex::getPropertyValue(const OUString& rPropertyName)
case
WID_CREATE_FROM_OTHER_EMBEDDED_OBJECTS
:
bRet
=
0
!=
(
nOLEOptions
&
TOO_OTHER
);
break
;
case
WID_CREATE_FROM_PARAGRAPH_STYLES
:
bRet
=
0
!=
(
nCreate
&
TOX_TEMPLATE
);
break
;
case
WID_PARA_HEAD
:
//Header steht an Pos 0
aRet
<<=
OUString
(
...
...
sw/source/core/unocore/unomap.cxx
Dosyayı görüntüle @
ef9756f5
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: unomap.cxx,v $
*
* $Revision: 1.2
2
$
* $Revision: 1.2
3
$
*
* last change: $Author: dvo $ $Date: 2000-11-2
0 20:28:18
$
* last change: $Author: dvo $ $Date: 2000-11-2
1 12:00:41
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -1422,6 +1422,7 @@ const SfxItemPropertyMap* SwUnoPropertyMapProvider::GetPropertyMap(sal_uInt16
{
SW_PROP_NAME
(
UNO_NAME_IS_PROTECTED
),
WID_PROTECTED
,
&::
getBooleanCppuType
()
,
PROPERTY_NONE
,
0
},
{
SW_PROP_NAME
(
UNO_NAME_LEVEL_FORMAT
),
WID_LEVEL_FORMAT
,
&::
getCppuType
((
uno
::
Reference
<
container
::
XIndexReplace
>*
)
0
)
,
PROPERTY_NONE
,
0
},
{
SW_PROP_NAME
(
UNO_NAME_LEVEL_PARAGRAPH_STYLES
),
WID_LEVEL_PARAGRAPH_STYLES
,
&::
getCppuType
((
uno
::
Reference
<
container
::
XIndexReplace
>*
)
0
)
,
PropertyAttribute
::
READONLY
,
0
},
{
SW_PROP_NAME
(
UNO_NAME_CREATE_FROM_LEVEL_PARAGRAPH_STYLES
),
WID_CREATE_FROM_PARAGRAPH_STYLES
,
&::
getBooleanCppuType
(),
PROPERTY_NONE
,
0
},
// { SW_PROP_NAME(UNO_NAME_RECALC_TAB_STOPS ), WID_RECALC_TAB_STOPS , &::getBooleanCppuType() , PROPERTY_NONE, 0},
// { SW_PROP_NAME(UNO_NAME_??? ), WID_??? , &_getReflection , PROPERTY_NONE, 0},
{
SW_PROP_NAME
(
UNO_NAME_TEXT_COLUMNS
),
RES_COL
,
&::
getCppuType
((
uno
::
Reference
<
text
::
XTextColumns
>*
)
0
),
PROPERTY_NONE
,
MID_COLUMNS
},
...
...
@@ -1459,6 +1460,7 @@ const SfxItemPropertyMap* SwUnoPropertyMapProvider::GetPropertyMap(sal_uInt16
{
SW_PROP_NAME
(
UNO_NAME_USE_LEVEL_FROM_SOURCE
),
WID_USE_LEVEL_FROM_SOURCE
,
&::
getBooleanCppuType
()
,
PROPERTY_NONE
,
0
},
{
SW_PROP_NAME
(
UNO_NAME_LEVEL_FORMAT
),
WID_LEVEL_FORMAT
,
&::
getCppuType
((
uno
::
Reference
<
container
::
XIndexReplace
>*
)
0
)
,
PROPERTY_NONE
,
0
},
{
SW_PROP_NAME
(
UNO_NAME_LEVEL_PARAGRAPH_STYLES
),
WID_LEVEL_PARAGRAPH_STYLES
,
&::
getCppuType
((
uno
::
Reference
<
container
::
XIndexReplace
>*
)
0
)
,
PropertyAttribute
::
READONLY
,
0
},
{
SW_PROP_NAME
(
UNO_NAME_CREATE_FROM_LEVEL_PARAGRAPH_STYLES
),
WID_CREATE_FROM_PARAGRAPH_STYLES
,
&::
getBooleanCppuType
(),
PROPERTY_NONE
,
0
},
{
SW_PROP_NAME
(
UNO_NAME_CREATE_FROM_TABLES
),
WID_CREATE_FROM_TABLES
,
&::
getBooleanCppuType
()
,
PROPERTY_NONE
,
0
},
{
SW_PROP_NAME
(
UNO_NAME_CREATE_FROM_TEXT_FRAMES
),
WID_CREATE_FROM_TEXT_FRAMES
,
&::
getBooleanCppuType
()
,
PROPERTY_NONE
,
0
},
{
SW_PROP_NAME
(
UNO_NAME_CREATE_FROM_GRAPHIC_OBJECTS
),
WID_CREATE_FROM_GRAPHIC_OBJECTS
,
&::
getBooleanCppuType
()
,
PROPERTY_NONE
,
0
},
...
...
sw/source/core/unocore/unoprnms.cxx
Dosyayı görüntüle @
ef9756f5
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: unoprnms.cxx,v $
*
* $Revision: 1.1
8
$
* $Revision: 1.1
9
$
*
* last change: $Author: dvo $ $Date: 2000-11-2
0 20:28:18
$
* last change: $Author: dvo $ $Date: 2000-11-2
1 12:00:41
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -521,6 +521,7 @@ const SwPropNameLen __FAR_DATA UNO_NAME_CREATE_FROM_OTHER_EMBEDDED_OBJECTS
const
SwPropNameLen
__FAR_DATA
UNO_NAME_INDEX_AUTO_MARK_FILE_U_R_L
(
MAP_CHAR_LEN
(
"IndexAutoMarkFileURL"
));
const
SwPropNameLen
__FAR_DATA
UNO_NAME_IS_COMMA_SEPARATED
(
MAP_CHAR_LEN
(
"IsCommaSeparated"
));
const
SwPropNameLen
__FAR_DATA
UNO_NAME_IS_RELATIVE_TABSTOPS
(
MAP_CHAR_LEN
(
"IsRelativeTabstops"
));
const
SwPropNameLen
__FAR_DATA
UNO_NAME_CREATE_FROM_LEVEL_PARAGRAPH_STYLES
(
MAP_CHAR_LEN
(
"CreateFromLevelParagraphStyles"
));
const
SwPropNameLen
__FAR_DATA
UNO_NAME_SHOW_CHANGES
(
MAP_CHAR_LEN
(
"ShowChanges"
));
const
SwPropNameLen
__FAR_DATA
UNO_NAME_RECORD_CHANGES
(
MAP_CHAR_LEN
(
"RecordChanges"
));
const
SwPropNameLen
__FAR_DATA
UNO_LINK_DISPLAY_NAME
(
MAP_CHAR_LEN
(
"LinkDisplayName"
));
...
...
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