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
ac382ca1
Kaydet (Commit)
ac382ca1
authored
Ara 01, 2000
tarafından
Kai Ahrens
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
#80795#: added XIndexContainer
üst
9929d671
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
25 deletions
+19
-25
ImageStyle.hxx
xmloff/inc/ImageStyle.hxx
+12
-20
SchXMLImport.hxx
xmloff/inc/SchXMLImport.hxx
+3
-2
SchXMLImport.cxx
xmloff/source/chart/SchXMLImport.cxx
+4
-3
No files found.
xmloff/inc/ImageStyle.hxx
Dosyayı görüntüle @
ac382ca1
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: ImageStyle.hxx,v $
*
* $Revision: 1.
1.1.1
$
* $Revision: 1.
2
$
*
* last change: $Author:
hr $ $Date: 2000-09-18 17:07:00
$
* last change: $Author:
ka $ $Date: 2000-12-01 11:03:08
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -69,33 +69,25 @@
class
SvXMLNamespaceMap
;
class
SvXMLAttributeList
;
class
SvXMLUnitConverter
;
class
SvXMLExport
;
class
SvXMLImport
;
class
XMLImageStyle
{
public
:
XMLImageStyle
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XDocumentHandler
>
&
_rHandler
,
const
SvXMLNamespaceMap
&
_rNamespaceMap
,
const
SvXMLUnitConverter
&
_rUnitConverter
);
XMLImageStyle
();
~
XMLImageStyle
();
sal_Bool
exportXML
(
const
::
rtl
::
OUString
&
rStrName
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
);
sal_Bool
importXML
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XAttributeList
>&
xAttrList
,
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
,
::
rtl
::
OUString
&
rStrName
);
sal_Bool
exportXML
(
const
::
rtl
::
OUString
&
rStrName
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
,
SvXMLExport
&
rExport
);
sal_Bool
importXML
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XAttributeList
>&
xAttrList
,
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
,
::
rtl
::
OUString
&
rStrName
,
SvXMLImport
&
rImport
);
private
:
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XDocumentHandler
>
&
rHandler
;
const
SvXMLNamespaceMap
&
mrNamespaceMap
;
const
SvXMLUnitConverter
&
rUnitConverter
;
SvXMLAttributeList
*
pAttrList
;
sal_Bool
ImpExportXML
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XDocumentHandler
>
&
rHandler
,
const
SvXMLNamespaceMap
&
rNamespaceMap
,
const
SvXMLUnitConverter
&
rUnitConverter
,
const
::
rtl
::
OUString
&
rStrName
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
);
sal_Bool
ImpImportXML
(
const
SvXMLUnitConverter
&
rUnitConverter
,
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XAttributeList
>&
xAttrList
,
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
,
::
rtl
::
OUString
&
rStrName
);
void
AddAttribute
(
sal_uInt16
nPrefix
,
const
sal_Char
*
pName
,
const
::
rtl
::
OUString
&
rStrValue
);
sal_Bool
ImpExportXML
(
const
::
rtl
::
OUString
&
rStrName
,
const
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
,
SvXMLExport
&
rExport
);
sal_Bool
ImpImportXML
(
const
::
com
::
sun
::
star
::
uno
::
Reference
<
::
com
::
sun
::
star
::
xml
::
sax
::
XAttributeList
>&
xAttrList
,
::
com
::
sun
::
star
::
uno
::
Any
&
rValue
,
::
rtl
::
OUString
&
rStrName
,
SvXMLImport
&
rImport
);
};
#endif // _XMLOFF_IMAGESTYLE_HXX
xmloff/inc/SchXMLImport.hxx
Dosyayı görüntüle @
ac382ca1
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: SchXMLImport.hxx,v $
*
* $Revision: 1.
2
$
* $Revision: 1.
3
$
*
* last change: $Author:
bm $ $Date: 2000-11-24 15:39:19
$
* last change: $Author:
ka $ $Date: 2000-12-01 11:03:08
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -196,6 +196,7 @@ protected:
public
:
SchXMLImport
(
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
frame
::
XModel
>
xModel
,
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
container
::
XIndexContainer
>&
rGrfContainer
,
sal_Bool
bLoadDoc
,
sal_Bool
bShowProgress
);
virtual
~
SchXMLImport
();
};
...
...
xmloff/source/chart/SchXMLImport.cxx
Dosyayı görüntüle @
ac382ca1
...
...
@@ -2,9 +2,9 @@
*
* $RCSfile: SchXMLImport.cxx,v $
*
* $Revision: 1.
2
$
* $Revision: 1.
3
$
*
* last change: $Author:
bm $ $Date: 2000-11-29 12:28:23
$
* last change: $Author:
ka $ $Date: 2000-12-01 11:04:44
$
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
...
...
@@ -448,8 +448,9 @@ void SchXMLImportHelper::ResizeChartData( sal_Int32 nSeries, sal_Int32 nDataPoin
// ========================================
SchXMLImport
::
SchXMLImport
(
uno
::
Reference
<
frame
::
XModel
>
xModel
,
uno
::
Reference
<
com
::
sun
::
star
::
container
::
XIndexContainer
>&
rGrfContainer
,
sal_Bool
bLoadDoc
,
sal_Bool
bShowProgress
)
:
SvXMLImport
(
xModel
)
SvXMLImport
(
xModel
,
rGrfContainer
)
{
// get status indicator (if requested)
if
(
bShowProgress
)
...
...
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