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
0c3b327e
Kaydet (Commit)
0c3b327e
authored
Nis 12, 2016
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fold elementimport_impl.hxx into elementimport.hxx
Change-Id: I5e71078ddf98d389b0dd9fcf4252417ddd74ffec
üst
20ff812d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
78 additions
and
112 deletions
+78
-112
elementimport.hxx
xmloff/source/forms/elementimport.hxx
+78
-3
elementimport_impl.hxx
xmloff/source/forms/elementimport_impl.hxx
+0
-109
No files found.
xmloff/source/forms/elementimport.hxx
Dosyayı görüntüle @
0c3b327e
...
@@ -36,6 +36,7 @@
...
@@ -36,6 +36,7 @@
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/form/XGridColumnFactory.hpp>
#include <com/sun/star/form/XGridColumnFactory.hpp>
#include <com/sun/star/script/XEventAttacherManager.hpp>
#include <com/sun/star/script/XEventAttacherManager.hpp>
#include <osl/diagnose.h>
class
XMLTextStyleContext
;
class
XMLTextStyleContext
;
namespace
xmloff
namespace
xmloff
...
@@ -706,9 +707,83 @@ namespace xmloff
...
@@ -706,9 +707,83 @@ namespace xmloff
,
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>&
_xElement
);
,
const
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>&
_xElement
);
};
};
#define _INCLUDING_FROM_ELEMENTIMPORT_HXX_
//= OContainerImport
#include "elementimport_impl.hxx"
template
<
class
BASE
>
#undef _INCLUDING_FROM_ELEMENTIMPORT_HXX_
inline
SvXMLImportContext
*
OContainerImport
<
BASE
>::
CreateChildContext
(
sal_uInt16
_nPrefix
,
const
OUString
&
_rLocalName
,
const
css
::
uno
::
Reference
<
css
::
xml
::
sax
::
XAttributeList
>&
_rxAttrList
)
{
// maybe it's a sub control
if
(
_rLocalName
==
m_sWrapperElementName
)
{
if
(
m_xMeAsContainer
.
is
())
return
implCreateControlWrapper
(
_nPrefix
,
_rLocalName
);
else
{
OSL_FAIL
(
"OContainerImport::CreateChildContext: don't have an element!"
);
return
nullptr
;
}
}
return
BASE
::
CreateChildContext
(
_nPrefix
,
_rLocalName
,
_rxAttrList
);
}
template
<
class
BASE
>
inline
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
OContainerImport
<
BASE
>::
createElement
()
{
// let the base class create the object
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
xReturn
=
BASE
::
createElement
();
if
(
!
xReturn
.
is
())
return
xReturn
;
// ensure that the object is a XNameContainer (we strongly need this for inserting child elements)
m_xMeAsContainer
.
set
(
xReturn
,
css
::
uno
::
UNO_QUERY
);
if
(
!
m_xMeAsContainer
.
is
())
{
OSL_FAIL
(
"OContainerImport::createElement: invalid element (no XNameContainer) created!"
);
xReturn
.
clear
();
}
return
xReturn
;
}
template
<
class
BASE
>
inline
void
OContainerImport
<
BASE
>::
EndElement
()
{
BASE
::
EndElement
();
// now that we have all children, attach the events
css
::
uno
::
Reference
<
css
::
container
::
XIndexAccess
>
xIndexContainer
(
m_xMeAsContainer
,
css
::
uno
::
UNO_QUERY
);
if
(
xIndexContainer
.
is
())
ODefaultEventAttacherManager
::
setEvents
(
xIndexContainer
);
}
//= OColumnImport
template
<
class
BASE
>
OColumnImport
<
BASE
>::
OColumnImport
(
OFormLayerXMLImport_Impl
&
_rImport
,
IEventAttacherManager
&
_rEventManager
,
sal_uInt16
_nPrefix
,
const
OUString
&
_rName
,
const
css
::
uno
::
Reference
<
css
::
container
::
XNameContainer
>&
_rxParentContainer
,
OControlElement
::
ElementType
_eType
)
:
BASE
(
_rImport
,
_rEventManager
,
_nPrefix
,
_rName
,
_rxParentContainer
,
_eType
)
,
m_xColumnFactory
(
_rxParentContainer
,
css
::
uno
::
UNO_QUERY
)
{
OSL_ENSURE
(
m_xColumnFactory
.
is
(),
"OColumnImport::OColumnImport: invalid parent container (no factory)!"
);
}
// OElementImport overridables
template
<
class
BASE
>
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
OColumnImport
<
BASE
>::
createElement
()
{
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
xReturn
;
// no call to the base class' method. We have to use the grid column factory
if
(
m_xColumnFactory
.
is
())
{
// create the column
xReturn
=
m_xColumnFactory
->
createColumn
(
this
->
m_sServiceName
);
OSL_ENSURE
(
xReturn
.
is
(),
"OColumnImport::createElement: the factory returned an invalid object!"
);
}
return
xReturn
;
}
}
// namespace xmloff
}
// namespace xmloff
...
...
xmloff/source/forms/elementimport_impl.hxx
deleted
100644 → 0
Dosyayı görüntüle @
20ff812d
/* -*- 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 .
*/
// no include protection. This file is included from elementimport.hxx only.
#ifndef _INCLUDING_FROM_ELEMENTIMPORT_HXX_
#error "do not include this file directly!"
#endif
#include <osl/diagnose.h>
// no namespace. Same as above: this file is included from elementimport.hxx only,
// and this is done inside the namespace
//= OContainerImport
template
<
class
BASE
>
inline
SvXMLImportContext
*
OContainerImport
<
BASE
>::
CreateChildContext
(
sal_uInt16
_nPrefix
,
const
OUString
&
_rLocalName
,
const
css
::
uno
::
Reference
<
css
::
xml
::
sax
::
XAttributeList
>&
_rxAttrList
)
{
// maybe it's a sub control
if
(
_rLocalName
==
m_sWrapperElementName
)
{
if
(
m_xMeAsContainer
.
is
())
return
implCreateControlWrapper
(
_nPrefix
,
_rLocalName
);
else
{
OSL_FAIL
(
"OContainerImport::CreateChildContext: don't have an element!"
);
return
nullptr
;
}
}
return
BASE
::
CreateChildContext
(
_nPrefix
,
_rLocalName
,
_rxAttrList
);
}
template
<
class
BASE
>
inline
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
OContainerImport
<
BASE
>::
createElement
()
{
// let the base class create the object
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
xReturn
=
BASE
::
createElement
();
if
(
!
xReturn
.
is
())
return
xReturn
;
// ensure that the object is a XNameContainer (we strongly need this for inserting child elements)
m_xMeAsContainer
.
set
(
xReturn
,
css
::
uno
::
UNO_QUERY
);
if
(
!
m_xMeAsContainer
.
is
())
{
OSL_FAIL
(
"OContainerImport::createElement: invalid element (no XNameContainer) created!"
);
xReturn
.
clear
();
}
return
xReturn
;
}
template
<
class
BASE
>
inline
void
OContainerImport
<
BASE
>::
EndElement
()
{
BASE
::
EndElement
();
// now that we have all children, attach the events
css
::
uno
::
Reference
<
css
::
container
::
XIndexAccess
>
xIndexContainer
(
m_xMeAsContainer
,
css
::
uno
::
UNO_QUERY
);
if
(
xIndexContainer
.
is
())
ODefaultEventAttacherManager
::
setEvents
(
xIndexContainer
);
}
//= OColumnImport
template
<
class
BASE
>
OColumnImport
<
BASE
>::
OColumnImport
(
OFormLayerXMLImport_Impl
&
_rImport
,
IEventAttacherManager
&
_rEventManager
,
sal_uInt16
_nPrefix
,
const
OUString
&
_rName
,
const
css
::
uno
::
Reference
<
css
::
container
::
XNameContainer
>&
_rxParentContainer
,
OControlElement
::
ElementType
_eType
)
:
BASE
(
_rImport
,
_rEventManager
,
_nPrefix
,
_rName
,
_rxParentContainer
,
_eType
)
,
m_xColumnFactory
(
_rxParentContainer
,
css
::
uno
::
UNO_QUERY
)
{
OSL_ENSURE
(
m_xColumnFactory
.
is
(),
"OColumnImport::OColumnImport: invalid parent container (no factory)!"
);
}
// OElementImport overridables
template
<
class
BASE
>
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
OColumnImport
<
BASE
>::
createElement
()
{
css
::
uno
::
Reference
<
css
::
beans
::
XPropertySet
>
xReturn
;
// no call to the base class' method. We have to use the grid column factory
if
(
m_xColumnFactory
.
is
())
{
// create the column
xReturn
=
m_xColumnFactory
->
createColumn
(
this
->
m_sServiceName
);
OSL_ENSURE
(
xReturn
.
is
(),
"OColumnImport::createElement: the factory returned an invalid object!"
);
}
return
xReturn
;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
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