loplugin:unusedmethods
Change-Id: Ia874baf21257e5fe41e104211068a2bcc50446eb Reviewed-on: https://gerrit.libreoffice.org/40391 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
parent
f74da1315a
commit
2fffaf6f05
@ -150,10 +150,6 @@ OOO_DLLPUBLIC_CHARTTOOLS bool hasAttributedDataPointDifferentValue(
|
||||
const OUString& rPropertyName,
|
||||
const css::uno::Any& rPropertyValue );
|
||||
|
||||
OOO_DLLPUBLIC_CHARTTOOLS bool areAllSeriesAttachedToSameAxis(
|
||||
const css::uno::Reference< css::chart2::XChartType >& xChartType,
|
||||
sal_Int32 & rOutAxisIndex );
|
||||
|
||||
OOO_DLLPUBLIC_CHARTTOOLS bool hasUnhiddenData( const css::uno::Reference<
|
||||
css::chart2::XDataSeries >& xSeries );
|
||||
|
||||
|
@ -633,44 +633,6 @@ bool hasAttributedDataPointDifferentValue( const Reference< chart2::XDataSeries
|
||||
return false;
|
||||
}
|
||||
|
||||
bool areAllSeriesAttachedToSameAxis( const uno::Reference< chart2::XChartType >& xChartType, sal_Int32 & rOutAxisIndex )
|
||||
{
|
||||
try
|
||||
{
|
||||
uno::Reference< chart2::XDataSeriesContainer > xDataSeriesContainer( xChartType, uno::UNO_QUERY_THROW );
|
||||
uno::Sequence< uno::Reference< chart2::XDataSeries > > aSeriesSeq( xDataSeriesContainer->getDataSeries());
|
||||
|
||||
const sal_Int32 nSeriesCount( aSeriesSeq.getLength());
|
||||
// AxisIndex can only be 0 or 1
|
||||
sal_Int32 nSeriesAtFirstAxis = 0;
|
||||
sal_Int32 nSeriesAtSecondAxis = 0;
|
||||
|
||||
for( sal_Int32 nI = 0; nI < nSeriesCount; ++nI )
|
||||
{
|
||||
uno::Reference< chart2::XDataSeries > xSeries( aSeriesSeq[nI], uno::UNO_QUERY );
|
||||
sal_Int32 nAxisIndex = DataSeriesHelper::getAttachedAxisIndex( xSeries );
|
||||
if( nAxisIndex == 0 )
|
||||
++nSeriesAtFirstAxis;
|
||||
else if( nAxisIndex == 1 )
|
||||
++nSeriesAtSecondAxis;
|
||||
}
|
||||
OSL_ENSURE( nSeriesAtFirstAxis + nSeriesAtSecondAxis == nSeriesCount, "Invalid axis index found" );
|
||||
|
||||
if( nSeriesAtFirstAxis == nSeriesCount )
|
||||
rOutAxisIndex = 0;
|
||||
else if( nSeriesAtSecondAxis == nSeriesCount )
|
||||
rOutAxisIndex = 1;
|
||||
|
||||
return ( nSeriesAtFirstAxis == nSeriesCount ||
|
||||
nSeriesAtSecondAxis == nSeriesCount );
|
||||
}
|
||||
catch( const uno::Exception & ex )
|
||||
{
|
||||
ASSERT_EXCEPTION( ex );
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
namespace
|
||||
{
|
||||
|
||||
|
@ -1,13 +1,21 @@
|
||||
basegfx/source/range/b2drangeclipper.cxx:699
|
||||
basegfx/source/range/b2drangeclipper.cxx:697
|
||||
type-parameter-?-? eraseFromList(type-parameter-?-? &,const type-parameter-?-? &)
|
||||
chart2/source/inc/DataSeriesHelper.hxx:153
|
||||
_Bool areAllSeriesAttachedToSameAxis(const class com::sun::star::uno::Reference<class com::sun::star::chart2::XChartType> &,int &)
|
||||
connectivity/source/drivers/evoab2/NDatabaseMetaData.hxx:88
|
||||
class connectivity::evoab::OEvoabConnection * connectivity::evoab::OEvoabDatabaseMetaData::getOwnConnection() const
|
||||
connectivity/source/drivers/evoab2/NResultSetMetaData.hxx:50
|
||||
int connectivity::evoab::OEvoabResultSetMetaData::getFieldSize() const
|
||||
connectivity/source/drivers/evoab2/NStatement.hxx:60
|
||||
connectivity::evoab::FieldSort::FieldSort()
|
||||
connectivity/source/drivers/mork/mork_helper.cxx:36
|
||||
int main(int,char **)
|
||||
connectivity/source/inc/odbc/OPreparedStatement.hxx:74
|
||||
void connectivity::odbc::OPreparedStatement::setScalarParameter(int,int,unsigned long,const type-parameter-?-?)
|
||||
connectivity/source/inc/odbc/OPreparedStatement.hxx:75
|
||||
void connectivity::odbc::OPreparedStatement::setScalarParameter(int,int,unsigned long,int,const type-parameter-?-?)
|
||||
connectivity/source/inc/OTypeInfo.hxx:52
|
||||
connectivity::OTypeInfo::OTypeInfo()
|
||||
cui/source/inc/hyphen.hxx:70
|
||||
unsigned short SvxHyphenWordDialog::GetHyphIndex_Impl()
|
||||
dbaccess/source/ui/inc/indexcollection.hxx:54
|
||||
class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, class std::__cxx1998::vector<struct dbaui::OIndex, class std::allocator<struct dbaui::OIndex> > >, class std::__debug::vector<struct dbaui::OIndex, class std::allocator<struct dbaui::OIndex> > > dbaui::OIndexCollection::begin() const
|
||||
dbaccess/source/ui/inc/indexcollection.hxx:58
|
||||
@ -16,12 +24,22 @@ dbaccess/source/ui/inc/indexcollection.hxx:63
|
||||
class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, class std::__cxx1998::vector<struct dbaui::OIndex, class std::allocator<struct dbaui::OIndex> > >, class std::__debug::vector<struct dbaui::OIndex, class std::allocator<struct dbaui::OIndex> > > dbaui::OIndexCollection::find(const class rtl::OUString &) const
|
||||
dbaccess/source/ui/inc/indexcollection.hxx:65
|
||||
class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const struct dbaui::OIndex *, class std::__cxx1998::vector<struct dbaui::OIndex, class std::allocator<struct dbaui::OIndex> > >, class std::__debug::vector<struct dbaui::OIndex, class std::allocator<struct dbaui::OIndex> > > dbaui::OIndexCollection::findOriginal(const class rtl::OUString &) const
|
||||
desktop/inc/lib/init.hxx:41
|
||||
desktop/inc/lib/init.hxx:40
|
||||
void desktop::CallbackFlushHandler::setEventLatch(const _Bool)
|
||||
desktop/inc/lib/init.hxx:46
|
||||
desktop/inc/lib/init.hxx:45
|
||||
_Bool desktop::CallbackFlushHandler::isEventLatchOn() const
|
||||
desktop/inc/lib/init.hxx:48
|
||||
desktop/inc/lib/init.hxx:47
|
||||
_Bool desktop::CallbackFlushHandler::isPartTilePainting() const
|
||||
desktop/source/app/langselect.hxx:29
|
||||
class rtl::OUString getEmergencyLocale()
|
||||
drawinglayer/source/tools/emfpbrush.hxx:123
|
||||
unsigned int emfplushelper::EMFPBrush::GetType() const
|
||||
drawinglayer/source/tools/emfpcustomlinecap.hxx:37
|
||||
void emfplushelper::EMFPCustomLineCap::SetAttributes(struct com::sun::star::rendering::StrokeAttributes &)
|
||||
drawinglayer/source/tools/emfppen.hxx:62
|
||||
void emfplushelper::EMFPPen::SetStrokeWidth(struct com::sun::star::rendering::StrokeAttributes &,struct emfplushelper::EmfPlusHelperData &,const class basegfx::B2DHomMatrix &)
|
||||
drawinglayer/source/tools/emfppen.hxx:64
|
||||
void emfplushelper::EMFPPen::SetStrokeAttributes(struct com::sun::star::rendering::StrokeAttributes &)
|
||||
include/basegfx/pixel/bpixel.hxx:57
|
||||
basegfx::BPixel::BPixel(unsigned char,unsigned char,unsigned char,unsigned char)
|
||||
include/basegfx/polygon/b3dpolypolygon.hxx:109
|
||||
@ -49,9 +67,9 @@ include/basegfx/tuple/b3ituple.hxx:49
|
||||
include/basic/sbxvar.hxx:121
|
||||
struct SbxValues * SbxValue::data()
|
||||
include/codemaker/global.hxx:58
|
||||
class FileStream & operator<<(class FileStream &,class rtl::OString *)
|
||||
class FileStream & operator<<(class FileStream &,const class rtl::OString *)
|
||||
include/codemaker/global.hxx:60
|
||||
class FileStream & operator<<(class FileStream &,class rtl::OStringBuffer *)
|
||||
class FileStream & operator<<(class FileStream &,const class rtl::OStringBuffer *)
|
||||
include/codemaker/global.hxx:61
|
||||
class FileStream & operator<<(class FileStream &,const class rtl::OStringBuffer &)
|
||||
include/comphelper/basicio.hxx:51
|
||||
@ -102,7 +120,7 @@ include/comphelper/lok.hxx:44
|
||||
_Bool isLocalRendering()
|
||||
include/comphelper/proparrhlp.hxx:87
|
||||
class cppu::IPropertyArrayHelper * comphelper::OAggregationArrayUsageHelper::createArrayHelper() const
|
||||
include/comphelper/sequence.hxx:336
|
||||
include/comphelper/sequence.hxx:342
|
||||
type-parameter-?-? sequenceToContainer(const Sequence<type-parameter-?-?> &)
|
||||
include/comphelper/unwrapargs.hxx:49
|
||||
void unwrapArgs(const class com::sun::star::uno::Sequence<class com::sun::star::uno::Any> &,int,const class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> &)
|
||||
@ -120,12 +138,20 @@ include/desktop/crashreport.hxx:50
|
||||
void CrashReporter::storeExceptionHandler(class google_breakpad::ExceptionHandler *)
|
||||
include/desktop/crashreport.hxx:54
|
||||
void CrashReporter::updateMinidumpLocation()
|
||||
include/drawinglayer/primitive2d/polypolygonprimitive2d.hxx:382
|
||||
drawinglayer::primitive2d::PolyPolygonGraphicPrimitive2D::PolyPolygonGraphicPrimitive2D(const class basegfx::B2DPolyPolygon &,const class drawinglayer::attribute::FillGraphicAttribute &)
|
||||
include/editeng/svxrtf.hxx:257
|
||||
void SvxRTFParser::ReadInfo()
|
||||
include/filter/msfilter/mstoolbar.hxx:98
|
||||
Indent::Indent(_Bool)
|
||||
include/formula/formdata.hxx:43
|
||||
unsigned short formula::FormEditData::GetEdFocus() const
|
||||
include/i18nlangtag/languagetag.hxx:257
|
||||
enum LanguageTag::ScriptType LanguageTag::getScriptType() const
|
||||
include/o3tl/any.hxx:155
|
||||
class boost::optional<const struct o3tl::detail::Void> tryAccess(const class com::sun::star::uno::Any &)
|
||||
include/o3tl/array_view.hxx:67
|
||||
o3tl::array_view::array_view<T>(const type-parameter-?-? *,unsigned long)
|
||||
include/o3tl/cow_wrapper.hxx:310
|
||||
type-parameter-?-? * o3tl::cow_wrapper::get()
|
||||
include/o3tl/string_view.hxx:178
|
||||
@ -200,14 +226,40 @@ include/oox/helper/propertymap.hxx:114
|
||||
void oox::PropertyMap::dumpData(const class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> &)
|
||||
include/opencl/OpenCLZone.hxx:42
|
||||
_Bool OpenCLZone::isInInitialTest()
|
||||
include/sax/fastattribs.hxx:161
|
||||
const char * sax_fastparser::FastAttributeList::FastAttributeIter::toCString() const
|
||||
include/sfx2/app.hxx:137
|
||||
class std::locale * SfxApplication::GetSfxResLocale()
|
||||
include/sfx2/basedlgs.hxx:66
|
||||
class SfxItemSet * SfxModalDialog::GetItemSet()
|
||||
include/sfx2/charwin.hxx:39
|
||||
void SvxCharView::setInsertCharHdl(const class Link<class SvxCharView *, void> &)
|
||||
include/sfx2/childwin.hxx:173
|
||||
_Bool SfxChildWindow::CanGetFocus() const
|
||||
include/sfx2/msg.hxx:120
|
||||
const class std::type_info * SfxType0::Type() const
|
||||
include/svl/itempool.hxx:209
|
||||
include/svl/itempool.hxx:210
|
||||
void SfxItemPool::dumpAsXml(struct _xmlTextWriter *) const
|
||||
include/svl/macitem.hxx:96
|
||||
class __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<struct std::pair<const unsigned short, class SvxMacro> >, class std::__debug::map<unsigned short, class SvxMacro, struct std::less<unsigned short>, class std::allocator<struct std::pair<const unsigned short, class SvxMacro> > > > SvxMacroTableDtor::begin() const
|
||||
include/svl/macitem.hxx:98
|
||||
class __gnu_debug::_Safe_iterator<struct std::_Rb_tree_const_iterator<struct std::pair<const unsigned short, class SvxMacro> >, class std::__debug::map<unsigned short, class SvxMacro, struct std::less<unsigned short>, class std::allocator<struct std::pair<const unsigned short, class SvxMacro> > > > SvxMacroTableDtor::end() const
|
||||
include/svtools/sampletext.hxx:25
|
||||
_Bool isOpenSymbolFont(const class vcl::Font &)
|
||||
include/svx/deflt3d.hxx:79
|
||||
_Bool E3dDefaultAttributes::GetDefaultCreateNormals() const
|
||||
include/svx/deflt3d.hxx:80
|
||||
_Bool E3dDefaultAttributes::GetDefaultCreateTexture() const
|
||||
include/svx/deflt3d.hxx:85
|
||||
enum CubeFaces E3dDefaultAttributes::GetDefaultCubeSideFlags() const
|
||||
include/svx/strarray.hxx:32
|
||||
SvxStringArray::SvxStringArray(const char **,unsigned long)
|
||||
include/svx/strarray.hxx:33
|
||||
const class rtl::OUString SvxStringArray::GetString(unsigned int) const
|
||||
include/svx/strarray.hxx:58
|
||||
unsigned short SvxAttrNameTable::GetValue(unsigned int)
|
||||
include/svx/svdotable.hxx:144
|
||||
void sdr::table::SdrTableObj::SetMergedItemSetAndBroadcastOnActiveCell(const class SfxItemSet &)
|
||||
include/tools/bigint.hxx:94
|
||||
BigInt::BigInt(unsigned short)
|
||||
include/tools/bigint.hxx:103
|
||||
@ -224,53 +276,139 @@ include/tools/date.hxx:83
|
||||
_Bool Date::IsEmpty() const
|
||||
include/tools/datetime.hxx:47
|
||||
DateTime::DateTime(const class tools::Time &)
|
||||
include/tools/datetime.hxx:93
|
||||
class DateTime operator+(const class DateTime &,long)
|
||||
include/tools/datetime.hxx:94
|
||||
class DateTime operator-(const class DateTime &,long)
|
||||
include/tools/datetime.hxx:96
|
||||
include/tools/datetime.hxx:87
|
||||
class DateTime operator+(const class DateTime &,int)
|
||||
include/tools/datetime.hxx:88
|
||||
class DateTime operator-(const class DateTime &,int)
|
||||
include/tools/datetime.hxx:90
|
||||
class DateTime operator-(const class DateTime &,double)
|
||||
include/tools/datetime.hxx:98
|
||||
include/tools/datetime.hxx:92
|
||||
class DateTime operator+(const class DateTime &,const class tools::Time &)
|
||||
include/tools/datetime.hxx:99
|
||||
include/tools/datetime.hxx:93
|
||||
class DateTime operator-(const class DateTime &,const class tools::Time &)
|
||||
include/tools/fract.hxx:74
|
||||
_Bool operator>=(const class Fraction &,const class Fraction &)
|
||||
include/tools/unqidx.hxx:48
|
||||
struct o3tl::strong_int<unsigned int, struct UniqueIndexImpl::IndexTagType> UniqueIndexImpl::FirstIndex() const
|
||||
include/tools/unqidx.hxx:49
|
||||
struct o3tl::strong_int<unsigned int, struct UniqueIndexImpl::IndexTagType> UniqueIndexImpl::LastIndex() const
|
||||
include/tools/unqidx.hxx:50
|
||||
struct o3tl::strong_int<unsigned int, struct UniqueIndexImpl::IndexTagType> UniqueIndexImpl::NextIndex(struct o3tl::strong_int<unsigned int, struct UniqueIndexImpl::IndexTagType>) const
|
||||
include/tools/unqidx.hxx:64
|
||||
type-parameter-?-? * UniqueIndex::Remove(struct o3tl::strong_int<unsigned int, struct UniqueIndexImpl::IndexTagType>)
|
||||
include/tools/unqidx.hxx:65
|
||||
struct o3tl::strong_int<unsigned int, struct UniqueIndexImpl::IndexTagType> UniqueIndex::GetIndexOf(type-parameter-?-? *) const
|
||||
include/unotest/assertion_traits.hxx:25
|
||||
_Bool CppUnit::assertion_traits::equal(signed char,signed char)
|
||||
include/unotest/assertion_traits.hxx:27
|
||||
class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > CppUnit::assertion_traits::toString(signed char)
|
||||
include/vcl/commandevent.hxx:251
|
||||
include/vcl/commandevent.hxx:250
|
||||
CommandMediaData::CommandMediaData(enum MediaCommand)
|
||||
include/vcl/menu.hxx:476
|
||||
class tools::Rectangle MenuBar::GetMenuBarButtonRectPixel(unsigned short)
|
||||
include/vcl/opengl/OpenGLContext.hxx:99
|
||||
void OpenGLContext::UseNoProgram()
|
||||
include/vcl/opengl/OpenGLHelper.hxx:93
|
||||
void OpenGLHelper::debugMsgStreamWarn(const class std::basic_ostringstream<char> &)
|
||||
include/vcl/pdfwriter.hxx:566
|
||||
vcl::PDFWriter::PDFSignContext::PDFSignContext(class rtl::OStringBuffer &)
|
||||
include/vcl/pdfwriter.hxx:1235
|
||||
_Bool vcl::PDFWriter::Sign(struct vcl::PDFWriter::PDFSignContext &)
|
||||
include/vcl/scheduler.hxx:35
|
||||
_Bool Scheduler::HasPendingTasks(const struct ImplSchedulerContext &,const unsigned long)
|
||||
include/vcl/svapp.hxx:168
|
||||
ApplicationEvent::ApplicationEvent(enum ApplicationEvent::Type,const class std::__debug::vector<class rtl::OUString, class std::allocator<class rtl::OUString> > &)
|
||||
include/vcl/syswin.hxx:194
|
||||
include/vcl/syswin.hxx:193
|
||||
void SystemWindow::SetIdleDebugName(const char *)
|
||||
include/vcl/threadex.hxx:101
|
||||
include/vcl/threadex.hxx:99
|
||||
vcl::solarthread::detail::GenericSolarThreadExecutor::GenericSolarThreadExecutor<type-parameter-?-?, void>(const type-parameter-?-? &)
|
||||
include/vcl/uitest/uiobject.hxx:243
|
||||
TabPageUIObject::TabPageUIObject(class VclPtr<class TabPage>)
|
||||
TabPageUIObject::TabPageUIObject(const class VclPtr<class TabPage> &)
|
||||
include/vcl/uitest/uiobject.hxx:251
|
||||
class std::unique_ptr<class UIObject, struct std::default_delete<class UIObject> > TabPageUIObject::create(class vcl::Window *)
|
||||
include/vcl/uitest/uiobject.hxx:312
|
||||
SpinUIObject::SpinUIObject(class VclPtr<class SpinButton>)
|
||||
SpinUIObject::SpinUIObject(const class VclPtr<class SpinButton> &)
|
||||
include/vcl/uitest/uiobject.hxx:320
|
||||
class std::unique_ptr<class UIObject, struct std::default_delete<class UIObject> > SpinUIObject::create(class vcl::Window *)
|
||||
include/vcl/window.hxx:428
|
||||
const char * ImplDbgCheckWindow(const void *)
|
||||
include/xmloff/xmlimp.hxx:381
|
||||
const class rtl::OUString SvXMLImport::getNamespaceURIFromToken(int)
|
||||
include/xmloff/xmltoken.hxx:3303
|
||||
_Bool IsXMLToken(const char *,enum xmloff::token::XMLTokenEnum)
|
||||
include/xmlreader/xmlreader.hxx:41
|
||||
xmlreader::XmlReader::XmlReader(const char *,unsigned long)
|
||||
l10ntools/inc/export.hxx:73
|
||||
_Bool ResData::SetId(const class rtl::OString &,enum IdLevel)
|
||||
l10ntools/inc/export.hxx:107
|
||||
void Export::WriteData(class ResData *,_Bool)
|
||||
l10ntools/inc/export.hxx:108
|
||||
void Export::WriteExportList(class ResData *,class std::__debug::vector<class rtl::OString, class std::allocator<class rtl::OString> > &,const enum ExportListType)
|
||||
l10ntools/inc/export.hxx:110
|
||||
class rtl::OString Export::FullId()
|
||||
l10ntools/inc/export.hxx:112
|
||||
class rtl::OString Export::GetPairedListID(const class rtl::OString &)
|
||||
l10ntools/inc/export.hxx:113
|
||||
class rtl::OString Export::GetPairedListString(const class rtl::OString &)
|
||||
l10ntools/inc/export.hxx:114
|
||||
class rtl::OString Export::StripList(const class rtl::OString &)
|
||||
l10ntools/inc/export.hxx:116
|
||||
void Export::InsertListEntry(const class rtl::OString &)
|
||||
l10ntools/inc/export.hxx:117
|
||||
void Export::CleanValue(class rtl::OString &)
|
||||
l10ntools/inc/export.hxx:118
|
||||
class rtl::OString Export::GetText(const class rtl::OString &,int)
|
||||
l10ntools/inc/export.hxx:120
|
||||
void Export::ResData2Output(class MergeEntrys *,enum StringType,const class rtl::OString &)
|
||||
l10ntools/inc/export.hxx:121
|
||||
void Export::MergeRest(class ResData *)
|
||||
l10ntools/inc/export.hxx:122
|
||||
void Export::ConvertMergeContent(class rtl::OString &)
|
||||
l10ntools/inc/export.hxx:123
|
||||
void Export::ConvertExportContent(class rtl::OString &)
|
||||
l10ntools/inc/export.hxx:125
|
||||
void Export::WriteToMerged(const class rtl::OString &,_Bool)
|
||||
l10ntools/inc/export.hxx:126
|
||||
void Export::SetChildWithText()
|
||||
l10ntools/inc/export.hxx:128
|
||||
void Export::CutComment(class rtl::OString &)
|
||||
l10ntools/inc/export.hxx:131
|
||||
Export::Export(const class rtl::OString &)
|
||||
l10ntools/inc/export.hxx:132
|
||||
Export::Export(const class rtl::OString &,const class rtl::OString &,_Bool)
|
||||
l10ntools/inc/export.hxx:135
|
||||
void Export::Init()
|
||||
l10ntools/inc/export.hxx:136
|
||||
void Export::Execute(int,const char *)
|
||||
l10ntools/inc/export.hxx:138
|
||||
void Export::SetError()
|
||||
l10ntools/inc/export.hxx:139
|
||||
_Bool Export::GetError()
|
||||
l10ntools/inc/export.hxx:140
|
||||
class ParserQueue * Export::GetParseQueue()
|
||||
l10ntools/inc/export.hxx:223
|
||||
class __gnu_debug::_Safe_iterator<struct std::__detail::_Node_const_iterator<struct std::pair<const class rtl::OString, class MergeData *>, false, true>, class std::__debug::unordered_map<class rtl::OString, class MergeData *, struct rtl::OStringHash, struct std::equal_to<class rtl::OString>, class std::allocator<struct std::pair<const class rtl::OString, class MergeData *> > > > MergeDataHashMap::begin() const
|
||||
l10ntools/inc/export.hxx:224
|
||||
class __gnu_debug::_Safe_iterator<struct std::__detail::_Node_const_iterator<struct std::pair<const class rtl::OString, class MergeData *>, false, true>, class std::__debug::unordered_map<class rtl::OString, class MergeData *, struct rtl::OStringHash, struct std::equal_to<class rtl::OString>, class std::allocator<struct std::pair<const class rtl::OString, class MergeData *> > > > MergeDataHashMap::end() const
|
||||
l10ntools/inc/export.hxx:279
|
||||
const class MergeDataHashMap & MergeDataFile::getMap() const
|
||||
l10ntools/inc/export.hxx:292
|
||||
QueueEntry::QueueEntry(int,const class rtl::OString &)
|
||||
l10ntools/inc/export.hxx:304
|
||||
ParserQueue::ParserQueue(class Export &)
|
||||
l10ntools/inc/export.hxx:307
|
||||
void ParserQueue::Push(const class QueueEntry &)
|
||||
l10ntools/inc/export.hxx:309
|
||||
void ParserQueue::Close()
|
||||
l10ntools/inc/export.hxx:311
|
||||
void ParserQueue::Pop(class std::queue<class QueueEntry, class std::__debug::deque<class QueueEntry, class std::allocator<class QueueEntry> > > &)
|
||||
oox/inc/drawingml/textliststyle.hxx:49
|
||||
void oox::drawingml::TextListStyle::dump() const
|
||||
sc/inc/columniterator.hxx:74
|
||||
int sc::ColumnIterator::getType() const
|
||||
sc/inc/compressedarray.hxx:158
|
||||
ScBitMaskCompressedArray::ScBitMaskCompressedArray<A, D>(type-parameter-?-?,const type-parameter-?-? *,unsigned long)
|
||||
sc/inc/dpfilteredcache.hxx:144
|
||||
void ScDPFilteredCache::dump() const
|
||||
sc/inc/formulacell.hxx:433
|
||||
sc/inc/formulacell.hxx:443
|
||||
void ScFormulaCell::Dump() const
|
||||
sc/inc/formulagroup.hxx:140
|
||||
void sc::FormulaGroupInterpreter::enableOpenCL_UnitTestsOnly()
|
||||
@ -278,7 +416,7 @@ sc/inc/postit.hxx:47
|
||||
ScCaptionPtr::ScCaptionPtr(class SdrCaptionObj *)
|
||||
sc/inc/scdll.hxx:42
|
||||
ScDLL::ScDLL()
|
||||
sc/inc/table.hxx:292
|
||||
sc/inc/table.hxx:293
|
||||
_Bool ScTable::IsColRowTabValid(short,int,short) const
|
||||
sc/inc/userlist.hxx:86
|
||||
class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> > *, class std::__cxx1998::vector<class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> >, class std::allocator<class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> > > > >, class std::__debug::vector<class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> >, class std::allocator<class std::unique_ptr<class ScUserListData, struct std::default_delete<class ScUserListData> > > > > ScUserList::begin() const
|
||||
@ -286,21 +424,21 @@ sc/qa/unit/helper/qahelper.hxx:201
|
||||
class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > print(const class ScAddress &)
|
||||
sc/qa/unit/ucalc.hxx:141
|
||||
void Test::testFormulaHashAndTag()
|
||||
sc/qa/unit/ucalc.hxx:170
|
||||
sc/qa/unit/ucalc.hxx:172
|
||||
void Test::testSingleCellCopyColumnLabel()
|
||||
sc/qa/unit/ucalc.hxx:222
|
||||
sc/qa/unit/ucalc.hxx:228
|
||||
void Test::testExternalRefUnresolved()
|
||||
sc/qa/unit/ucalc.hxx:361
|
||||
sc/qa/unit/ucalc.hxx:367
|
||||
void Test::testCopyPasteSkipEmptyConditionalFormatting()
|
||||
sc/qa/unit/ucalc.hxx:388
|
||||
sc/qa/unit/ucalc.hxx:394
|
||||
void Test::testSharedFormulaMoveBlock()
|
||||
sc/qa/unit/ucalc.hxx:495
|
||||
sc/qa/unit/ucalc.hxx:503
|
||||
void Test::testCondFormatUpdateMoveTab()
|
||||
sc/qa/unit/ucalc.hxx:496
|
||||
sc/qa/unit/ucalc.hxx:504
|
||||
void Test::testCondFormatUpdateDeleteTab()
|
||||
sc/qa/unit/ucalc.hxx:497
|
||||
sc/qa/unit/ucalc.hxx:505
|
||||
void Test::testCondFormatUpdateInsertTab()
|
||||
sc/qa/unit/ucalc.hxx:498
|
||||
sc/qa/unit/ucalc.hxx:506
|
||||
void Test::testCondFormatUpdateReference()
|
||||
sc/source/core/opencl/formulagroupcl.cxx:936
|
||||
_Bool sc::opencl::DynamicKernelSlidingArgument::NeedParallelReduction() const
|
||||
@ -328,36 +466,104 @@ sc/source/core/opencl/opbase.hxx:119
|
||||
void sc::opencl::DynamicKernelArgument::GenNumDeclRef(class std::basic_stringstream<char> &) const
|
||||
sc/source/core/opencl/opbase.hxx:121
|
||||
void sc::opencl::DynamicKernelArgument::GenStringDeclRef(class std::basic_stringstream<char> &) const
|
||||
sc/source/ui/inc/dataprovider.hxx:54
|
||||
sc::ExternalDataMapper::ExternalDataMapper(class ScDocShell *,const class rtl::OUString &,const class rtl::OUString &,short,short,int,short,int,_Bool &)
|
||||
sc/source/ui/inc/dataprovider.hxx:59
|
||||
void sc::ExternalDataMapper::StartImport()
|
||||
sc/source/ui/inc/dataprovider.hxx:107
|
||||
_Bool sc::CSVFetchThread::IsRequestedTerminate()
|
||||
sc/source/ui/inc/dataprovider.hxx:108
|
||||
sc/source/filter/inc/tokstack.hxx:216
|
||||
_Bool TokenPool::GrowTripel(unsigned short)
|
||||
sc/source/filter/xml/xmlimprt.hxx:1009
|
||||
const class SvXMLTokenMap & ScXMLImport::GetBodyElemTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1010
|
||||
const class SvXMLTokenMap & ScXMLImport::GetContentValidationsElemTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1012
|
||||
const class SvXMLTokenMap & ScXMLImport::GetContentValidationAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1014
|
||||
const class SvXMLTokenMap & ScXMLImport::GetContentValidationHelpMessageAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1015
|
||||
const class SvXMLTokenMap & ScXMLImport::GetContentValidationErrorMessageAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1016
|
||||
const class SvXMLTokenMap & ScXMLImport::GetContentValidationErrorMacroAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1028
|
||||
const class SvXMLTokenMap & ScXMLImport::GetLabelRangesElemTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1029
|
||||
const class SvXMLTokenMap & ScXMLImport::GetLabelRangeAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1031
|
||||
const class SvXMLTokenMap & ScXMLImport::GetTableProtectionAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1033
|
||||
const class SvXMLTokenMap & ScXMLImport::GetTableColsElemTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1034
|
||||
const class SvXMLTokenMap & ScXMLImport::GetTableAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1035
|
||||
const class SvXMLTokenMap & ScXMLImport::GetTableScenarioAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1036
|
||||
const class SvXMLTokenMap & ScXMLImport::GetTableColAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1046
|
||||
const class SvXMLTokenMap & ScXMLImport::GetNamedExpressionsElemTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1047
|
||||
const class SvXMLTokenMap & ScXMLImport::GetNamedRangeAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1048
|
||||
const class SvXMLTokenMap & ScXMLImport::GetNamedExpressionAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1049
|
||||
const class SvXMLTokenMap & ScXMLImport::GetDatabaseRangesElemTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1050
|
||||
const class SvXMLTokenMap & ScXMLImport::GetDatabaseRangeElemTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1051
|
||||
const class SvXMLTokenMap & ScXMLImport::GetDatabaseRangeAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1061
|
||||
const class SvXMLTokenMap & ScXMLImport::GetSortAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1063
|
||||
const class SvXMLTokenMap & ScXMLImport::GetDatabaseRangeSubTotalRulesElemTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1064
|
||||
const class SvXMLTokenMap & ScXMLImport::GetDatabaseRangeSubTotalRulesAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1065
|
||||
const class SvXMLTokenMap & ScXMLImport::GetSubTotalRulesSortGroupsAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1066
|
||||
const class SvXMLTokenMap & ScXMLImport::GetSubTotalRulesSubTotalRuleElemTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1067
|
||||
const class SvXMLTokenMap & ScXMLImport::GetSubTotalRulesSubTotalRuleAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1068
|
||||
const class SvXMLTokenMap & ScXMLImport::GetSubTotalRuleSubTotalFieldAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1084
|
||||
const class SvXMLTokenMap & ScXMLImport::GetConsolidationAttrTokenMap()
|
||||
sc/source/filter/xml/xmlimprt.hxx:1090
|
||||
const class SvXMLTokenMap & ScXMLImport::GetDataStreamAttrTokenMap()
|
||||
sc/source/ui/inc/dataprovider.hxx:115
|
||||
void sc::CSVFetchThread::Terminate()
|
||||
sc/source/ui/inc/dataprovider.hxx:110
|
||||
sc/source/ui/inc/dataprovider.hxx:117
|
||||
void sc::CSVFetchThread::EmptyLineQueue(class std::queue<class std::__debug::vector<struct sc::Line, class std::allocator<struct sc::Line> > *, class std::__debug::deque<class std::__debug::vector<struct sc::Line, class std::allocator<struct sc::Line> > *, class std::allocator<class std::__debug::vector<struct sc::Line, class std::allocator<struct sc::Line> > *> > > &)
|
||||
sc/source/ui/inc/dataprovider.hxx:122
|
||||
sc/source/ui/inc/dataprovider.hxx:134
|
||||
class ScRange sc::DataProvider::GetRange() const
|
||||
sc/source/ui/inc/dataprovider.hxx:123
|
||||
sc/source/ui/inc/dataprovider.hxx:135
|
||||
const class rtl::OUString & sc::DataProvider::GetURL() const
|
||||
sc/source/ui/inc/dataprovider.hxx:159
|
||||
struct sc::Line sc::CSVDataProvider::GetLine()
|
||||
sc/source/ui/inc/dataprovider.hxx:183
|
||||
void sc::ScDBDataManager::SetDatabase(class ScDBData *)
|
||||
sc/source/ui/inc/dataprovider.hxx:188
|
||||
class ScRange & sc::ScDBDataManager::GetSourceRange()
|
||||
sc/source/ui/inc/gridwin.hxx:254
|
||||
class SdrObject * ScGridWindow::GetEditObject()
|
||||
sc/source/ui/inc/impex.hxx:92
|
||||
ScImportExport::ScImportExport(class ScDocument *,const class rtl::OUString &)
|
||||
sc/source/ui/inc/RandomNumberGeneratorDialog.hxx:69
|
||||
void ScRandomNumberGeneratorDialog::GenerateNumbers(type-parameter-?-? &,const short,const class boost::optional<signed char>)
|
||||
void ScRandomNumberGeneratorDialog::GenerateNumbers(type-parameter-?-? &,const char *,const class boost::optional<signed char>)
|
||||
sd/inc/sddll.hxx:50
|
||||
SdDLL::SdDLL()
|
||||
sd/source/filter/ppt/pptinanimations.hxx:110
|
||||
sd/source/filter/ppt/pptinanimations.hxx:109
|
||||
void ppt::AnimationImporter::dump(const char *,long)
|
||||
sd/source/ui/inc/DrawDocShell.hxx:134
|
||||
_Bool sd::DrawDocShell::IsMarked(class SdrObject *)
|
||||
sd/source/ui/inc/DrawDocShell.hxx:136
|
||||
_Bool sd::DrawDocShell::GetObjectIsmarked(const class rtl::OUString &,_Bool)
|
||||
sd/source/ui/inc/filedlg.hxx:54
|
||||
_Bool SdOpenSoundFileDialog::IsInsertAsLinkSelected()
|
||||
sd/source/ui/inc/navigatr.hxx:145
|
||||
class sd::DrawDocShell * SdNavigatorWin::GetDrawDocShell(const class SdDrawDocument *)
|
||||
sd/source/ui/remotecontrol/ZeroconfService.hxx:39
|
||||
sd::ZeroconfService::ZeroconfService(const class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > &,unsigned int)
|
||||
sd/source/ui/remotecontrol/ZeroconfService.hxx:43
|
||||
const class std::basic_string<char, struct std::char_traits<char>, class std::allocator<char> > & sd::ZeroconfService::getName() const
|
||||
sd/source/ui/remotecontrol/ZeroconfService.hxx:44
|
||||
void sd::ZeroconfService::setName(const char *)
|
||||
sfx2/source/inc/childwinimpl.hxx:78
|
||||
unsigned long SfxFrameArr_Impl::size() const
|
||||
slideshow/source/engine/activities/activitiesfactory.cxx:173
|
||||
void slideshow::internal::(anonymous namespace)::FromToByActivity::startAnimation()
|
||||
slideshow/source/engine/activities/activitiesfactory.cxx:241
|
||||
@ -380,67 +586,67 @@ slideshow/source/engine/activities/activitiesfactory.cxx:567
|
||||
void slideshow::internal::(anonymous namespace)::ValuesActivity::perform(unsigned int,unsigned int) const
|
||||
slideshow/source/engine/activities/activitiesfactory.cxx:582
|
||||
void slideshow::internal::(anonymous namespace)::ValuesActivity::performEnd()
|
||||
slideshow/source/engine/animationfactory.cxx:444
|
||||
slideshow/source/engine/animationfactory.cxx:442
|
||||
void slideshow::internal::(anonymous namespace)::GenericAnimation::prefetch(const class std::shared_ptr<class slideshow::internal::AnimatableShape> &,const class std::shared_ptr<class slideshow::internal::ShapeAttributeLayer> &)
|
||||
slideshow/source/engine/animationfactory.cxx:448
|
||||
slideshow/source/engine/animationfactory.cxx:446
|
||||
void slideshow::internal::(anonymous namespace)::GenericAnimation::start(const class std::shared_ptr<class slideshow::internal::AnimatableShape> &,const class std::shared_ptr<class slideshow::internal::ShapeAttributeLayer> &)
|
||||
slideshow/source/engine/animationfactory.cxx:549
|
||||
slideshow/source/engine/animationfactory.cxx:547
|
||||
typename type-parameter-?-?::ValueType slideshow::internal::(anonymous namespace)::GenericAnimation::getUnderlyingValue() const
|
||||
slideshow/source/engine/opengl/TransitionImpl.hxx:180
|
||||
void OGLTransitionImpl::finish(double,double,double,double,double)
|
||||
slideshow/source/inc/shapeattributelayer.hxx:391
|
||||
void slideshow::internal::ShapeAttributeLayer::setCharRotationAngle(const double &)
|
||||
sw/inc/dbgoutsw.hxx:54
|
||||
starmath/inc/smmod.hxx:94
|
||||
class SmLocalizedSymbolData & SmModule::GetLocSymbolData()
|
||||
sw/inc/dbgoutsw.hxx:53
|
||||
const char * dbg_out(const void *)
|
||||
sw/inc/dbgoutsw.hxx:56
|
||||
sw/inc/dbgoutsw.hxx:55
|
||||
const char * dbg_out(const class SwRect &)
|
||||
sw/inc/dbgoutsw.hxx:57
|
||||
sw/inc/dbgoutsw.hxx:56
|
||||
const char * dbg_out(const class SwFrameFormat &)
|
||||
sw/inc/dbgoutsw.hxx:60
|
||||
sw/inc/dbgoutsw.hxx:59
|
||||
const char * dbg_out(const class SwContentNode *)
|
||||
sw/inc/dbgoutsw.hxx:61
|
||||
sw/inc/dbgoutsw.hxx:60
|
||||
const char * dbg_out(const class SwTextNode *)
|
||||
sw/inc/dbgoutsw.hxx:62
|
||||
sw/inc/dbgoutsw.hxx:61
|
||||
const char * dbg_out(const class SwTextAttr &)
|
||||
sw/inc/dbgoutsw.hxx:63
|
||||
sw/inc/dbgoutsw.hxx:62
|
||||
const char * dbg_out(const class SwpHints &)
|
||||
sw/inc/dbgoutsw.hxx:64
|
||||
sw/inc/dbgoutsw.hxx:63
|
||||
const char * dbg_out(const class SfxPoolItem &)
|
||||
sw/inc/dbgoutsw.hxx:65
|
||||
sw/inc/dbgoutsw.hxx:64
|
||||
const char * dbg_out(const class SfxPoolItem *)
|
||||
sw/inc/dbgoutsw.hxx:66
|
||||
sw/inc/dbgoutsw.hxx:65
|
||||
const char * dbg_out(const class SfxItemSet &)
|
||||
sw/inc/dbgoutsw.hxx:67
|
||||
sw/inc/dbgoutsw.hxx:66
|
||||
const char * dbg_out(class SwNodes &)
|
||||
sw/inc/dbgoutsw.hxx:68
|
||||
sw/inc/dbgoutsw.hxx:67
|
||||
const char * dbg_out(const struct SwPosition &)
|
||||
sw/inc/dbgoutsw.hxx:69
|
||||
sw/inc/dbgoutsw.hxx:68
|
||||
const char * dbg_out(const class SwPaM &)
|
||||
sw/inc/dbgoutsw.hxx:70
|
||||
sw/inc/dbgoutsw.hxx:69
|
||||
const char * dbg_out(const class SwNodeNum &)
|
||||
sw/inc/dbgoutsw.hxx:71
|
||||
sw/inc/dbgoutsw.hxx:70
|
||||
const char * dbg_out(const class SwUndo &)
|
||||
sw/inc/dbgoutsw.hxx:72
|
||||
sw/inc/dbgoutsw.hxx:71
|
||||
const char * dbg_out(class SwOutlineNodes &)
|
||||
sw/inc/dbgoutsw.hxx:73
|
||||
const char * dbg_out(const class SwRewriter &)
|
||||
sw/inc/dbgoutsw.hxx:74
|
||||
sw/inc/dbgoutsw.hxx:72
|
||||
const char * dbg_out(const class SwNumRule &)
|
||||
sw/inc/dbgoutsw.hxx:75
|
||||
sw/inc/dbgoutsw.hxx:73
|
||||
const char * dbg_out(const class SwTextFormatColl &)
|
||||
sw/inc/dbgoutsw.hxx:76
|
||||
sw/inc/dbgoutsw.hxx:74
|
||||
const char * dbg_out(const class SwFrameFormats &)
|
||||
sw/inc/dbgoutsw.hxx:77
|
||||
sw/inc/dbgoutsw.hxx:75
|
||||
const char * dbg_out(const class SwNumRuleTable &)
|
||||
sw/inc/dbgoutsw.hxx:78
|
||||
sw/inc/dbgoutsw.hxx:76
|
||||
const char * dbg_out(const class SwNodeRange &)
|
||||
sw/inc/dbgoutsw.hxx:81
|
||||
sw/inc/dbgoutsw.hxx:79
|
||||
class rtl::OUString lcl_dbg_out(const unordered_map<type-parameter-?-?, type-parameter-?-?, type-parameter-?-?, equal_to<type-parameter-?-?>, allocator<pair<const type-parameter-?-?, type-parameter-?-?> > > &)
|
||||
sw/inc/dbgoutsw.hxx:105
|
||||
sw/inc/dbgoutsw.hxx:103
|
||||
const char * dbg_out(const unordered_map<type-parameter-?-?, type-parameter-?-?, type-parameter-?-?, equal_to<type-parameter-?-?>, allocator<pair<const type-parameter-?-?, type-parameter-?-?> > > &)
|
||||
sw/inc/dbgoutsw.hxx:109
|
||||
sw/inc/dbgoutsw.hxx:107
|
||||
const char * dbg_out(const struct SwFormToken &)
|
||||
sw/inc/dbgoutsw.hxx:110
|
||||
sw/inc/dbgoutsw.hxx:108
|
||||
const char * dbg_out(const class std::__debug::vector<struct SwFormToken, class std::allocator<struct SwFormToken> > &)
|
||||
sw/inc/docary.hxx:143
|
||||
void SwVectorModifyBase::dumpAsXml(struct _xmlTextWriter *)
|
||||
@ -464,45 +670,49 @@ sw/inc/pagedesc.hxx:427
|
||||
class SwPageDesc *const & SwPageDescs::back() const
|
||||
sw/inc/ring.hxx:204
|
||||
sw::RingIterator::RingIterator<value_type>()
|
||||
sw/inc/splargs.hxx:139
|
||||
_Bool SwInterHyphInfo::IsCheck() const
|
||||
sw/inc/swatrset.hxx:236
|
||||
const class SvxNoHyphenItem & SwAttrSet::GetNoHyphenHere(_Bool) const
|
||||
sw/inc/swrect.hxx:105
|
||||
class SvStream & WriteSwRect(class SvStream &,const class SwRect &)
|
||||
sw/qa/extras/inc/swmodeltestbase.hxx:523
|
||||
class com::sun::star::uno::Reference<class com::sun::star::beans::XPropertySet> SwModelTestBase::getParagraphAnchoredObject(const int,const class com::sun::star::uno::Reference<class com::sun::star::text::XTextRange> &) const
|
||||
sw/qa/extras/uiwriter/uiwriter.cxx:4894
|
||||
sw/qa/extras/uiwriter/uiwriter.cxx:5067
|
||||
int main()
|
||||
sw/source/core/inc/flowfrm.hxx:171
|
||||
class SwFlowFrame * SwFlowFrame::GetPrecede()
|
||||
sw/source/core/inc/frame.hxx:1187
|
||||
sw/source/core/inc/frame.hxx:1184
|
||||
class Size SwRectFnSet::GetSize(const class SwRect &) const
|
||||
sw/source/core/inc/frame.hxx:1218
|
||||
sw/source/core/inc/frame.hxx:1215
|
||||
long SwRectFnSet::LeftDist(const class SwRect &,long) const
|
||||
sw/source/core/inc/frame.hxx:1219
|
||||
sw/source/core/inc/frame.hxx:1216
|
||||
long SwRectFnSet::RightDist(const class SwRect &,long) const
|
||||
sw/source/core/inc/frame.hxx:1227
|
||||
sw/source/core/inc/frame.hxx:1224
|
||||
long SwRectFnSet::XInc(long,long) const
|
||||
sw/source/core/text/porlin.hxx:127
|
||||
_Bool SwLinePortion::IsTabRightPortion() const
|
||||
sw/source/core/text/txtpaint.hxx:73
|
||||
DbgRect::DbgRect(class OutputDevice *,const class tools::Rectangle &,const _Bool,unsigned int)
|
||||
sw/source/filter/html/svxcss1.hxx:164
|
||||
SvxCSS1MapEntry::SvxCSS1MapEntry(class SfxItemPool &,const unsigned short *)
|
||||
sw/source/filter/ww8/ww8struc.hxx:241
|
||||
WW8_BRCVer6::WW8_BRCVer6()
|
||||
ucb/source/inc/regexpmap.hxx:378
|
||||
RegexpMapConstIter<type-parameter-?-?> ucb_impl::RegexpMap::begin() const
|
||||
ucb/source/inc/regexpmap.hxx:382
|
||||
RegexpMapConstIter<type-parameter-?-?> ucb_impl::RegexpMap::end() const
|
||||
ucb/source/ucp/ftp/ftpurl.hxx:113
|
||||
ucb/source/ucp/ftp/ftpurl.hxx:112
|
||||
class rtl::OUString ftp::FTPURL::child() const
|
||||
vcl/inc/opengl/BufferObject.hxx:50
|
||||
void vcl::BufferObject::unbind()
|
||||
vcl/inc/opengl/PackedTextureAtlas.hxx:44
|
||||
PackedTextureAtlasManager::PackedTextureAtlasManager(int,int)
|
||||
vcl/inc/opengl/PackedTextureAtlas.hxx:46
|
||||
class OpenGLTexture PackedTextureAtlasManager::InsertBuffer(int,int,int,int,unsigned char *)
|
||||
class OpenGLTexture PackedTextureAtlasManager::InsertBuffer(int,int,int,int,const unsigned char *)
|
||||
vcl/inc/opengl/PackedTextureAtlas.hxx:48
|
||||
class std::__debug::vector<unsigned int, class std::allocator<unsigned int> > PackedTextureAtlasManager::ReduceTextureNumber(int)
|
||||
vcl/inc/opengl/salbmp.hxx:86
|
||||
const class BitmapPalette & OpenGLSalBitmap::GetBitmapPalette() const
|
||||
vcl/inc/opengl/texture.hxx:113
|
||||
vcl/inc/opengl/texture.hxx:114
|
||||
void OpenGLTexture::SaveToFile(const class rtl::OUString &)
|
||||
vcl/inc/opengl/zone.hxx:41
|
||||
void OpenGLZone::relaxWatchdogTimings()
|
||||
@ -513,25 +723,37 @@ vcl/inc/openglgdiimpl.hxx:116
|
||||
vcl/inc/openglgdiimpl.hxx:141
|
||||
void OpenGLSalGraphicsImpl::DrawMask(class OpenGLTexture &,unsigned int,const struct SalTwoRect &)
|
||||
vcl/inc/openglgdiimpl.hxx:145
|
||||
void OpenGLSalGraphicsImpl::DeferredTextDraw(class OpenGLTexture &,const unsigned int,const struct SalTwoRect &)
|
||||
void OpenGLSalGraphicsImpl::DeferredTextDraw(const class OpenGLTexture &,const unsigned int,const struct SalTwoRect &)
|
||||
vcl/inc/regionband.hxx:27
|
||||
const char * ImplDbgTestRegionBand(const void *)
|
||||
vcl/inc/salmenu.hxx:46
|
||||
SalMenuButtonItem::SalMenuButtonItem()
|
||||
vcl/inc/salwtype.hxx:117
|
||||
vcl/inc/salwtype.hxx:114
|
||||
SalMenuEvent::SalMenuEvent()
|
||||
vcl/inc/schedulerimpl.hxx:35
|
||||
const char * ImplSchedulerData::GetDebugName() const
|
||||
vcl/inc/unx/fontmanager.hxx:108
|
||||
psp::CharacterMetric::CharacterMetric()
|
||||
vcl/inc/unx/fontmanager.hxx:251
|
||||
unsigned short psp::PrintFontManager::getFontEncoding(int) const
|
||||
vcl/inc/unx/glyphcache.hxx:71
|
||||
void GlyphCache::ClearFontOptions()
|
||||
vcl/inc/unx/gtk/gtkdata.hxx:181
|
||||
vcl/inc/unx/gtk/gtkdata.hxx:179
|
||||
void GtkSalDisplay::RefreshMenusUnity()
|
||||
vcl/inc/unx/gtk/gtkinst.hxx:120
|
||||
void GtkDropTarget::fire_dragExit(const struct com::sun::star::datatransfer::dnd::DropTargetEvent &)
|
||||
vcl/inc/unx/printerjob.hxx:89
|
||||
class osl::File * psp::PrinterJob::GetCurrentPageHeader()
|
||||
vcl/inc/unx/salbmp.h:200
|
||||
unsigned long ImplSalDDB::ImplGetMemSize() const
|
||||
vcl/inc/unx/saldata.hxx:68
|
||||
void X11SalData::initNWF()
|
||||
vcl/inc/unx/saldisp.hxx:365
|
||||
vcl/inc/unx/saldisp.hxx:361
|
||||
class SalXLib * SalDisplay::GetXLib() const
|
||||
vcl/inc/unx/salframe.h:192
|
||||
vcl/inc/unx/salframe.h:189
|
||||
enum SalFrameStyleFlags X11SalFrame::GetStyle() const
|
||||
vcl/inc/unx/salframe.h:201
|
||||
_Bool X11SalFrame::isMapped() const
|
||||
vcl/source/edit/textdat2.hxx:85
|
||||
class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<class TETextPortion *const *, class std::__cxx1998::vector<class TETextPortion *, class std::allocator<class TETextPortion *> > >, class std::__debug::vector<class TETextPortion *, class std::allocator<class TETextPortion *> > > TETextPortionList::begin() const
|
||||
vcl/source/edit/textdat2.hxx:87
|
||||
@ -546,25 +768,25 @@ vcl/source/fontsubset/xlat.hxx:34
|
||||
unsigned short TranslateChar15(unsigned short)
|
||||
vcl/source/fontsubset/xlat.hxx:35
|
||||
unsigned short TranslateChar16(unsigned short)
|
||||
vcl/source/gdi/pdfwriter_impl.hxx:1282
|
||||
vcl/source/gdi/pdfwriter_impl.hxx:1279
|
||||
void vcl::PDFWriterImpl::setAutoAdvanceTime(unsigned int,int)
|
||||
workdir/LexTarget/l10ntools/source/srclex.cxx:1380
|
||||
workdir/LexTarget/l10ntools/source/xrmlex.cxx:730
|
||||
void YYWarning()
|
||||
workdir/LexTarget/l10ntools/source/xrmlex.cxx:2226
|
||||
void YYWarning(const char *)
|
||||
writerfilter/source/ooxml/OOXMLPropertySet.hxx:160
|
||||
class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty> *, class std::__cxx1998::vector<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty>, class std::allocator<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty> > > >, class std::__debug::vector<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty>, class std::allocator<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty> > > > writerfilter::ooxml::OOXMLPropertySet::begin() const
|
||||
writerfilter/source/ooxml/OOXMLPropertySet.hxx:161
|
||||
class __gnu_debug::_Safe_iterator<class __gnu_cxx::__normal_iterator<const class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty> *, class std::__cxx1998::vector<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty>, class std::allocator<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty> > > >, class std::__debug::vector<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty>, class std::allocator<class std::shared_ptr<class writerfilter::ooxml::OOXMLProperty> > > > writerfilter::ooxml::OOXMLPropertySet::end() const
|
||||
xmlsecurity/inc/xmlsignaturehelper.hxx:57
|
||||
XMLSignatureCreationResult::XMLSignatureCreationResult(int,enum com::sun::star::xml::crypto::SecurityOperationStatus)
|
||||
xmlsecurity/inc/xmlsignaturehelper.hxx:69
|
||||
XMLSignatureVerifyResult::XMLSignatureVerifyResult(int,enum com::sun::star::xml::crypto::SecurityOperationStatus)
|
||||
xmlsecurity/inc/xmlsignaturehelper.hxx:112
|
||||
xmloff/inc/prstylecond.hxx:21
|
||||
class rtl::OUString GetParaStyleCondInternal(const class rtl::OUString &)
|
||||
xmlsecurity/inc/xmlsignaturehelper.hxx:56
|
||||
XMLSignatureCreationResult::XMLSignatureCreationResult(enum com::sun::star::xml::crypto::SecurityOperationStatus)
|
||||
xmlsecurity/inc/xmlsignaturehelper.hxx:66
|
||||
XMLSignatureVerifyResult::XMLSignatureVerifyResult(enum com::sun::star::xml::crypto::SecurityOperationStatus)
|
||||
xmlsecurity/inc/xmlsignaturehelper.hxx:108
|
||||
void XMLSignatureHelper::SignatureCreationResultListener(struct XMLSignatureCreationResult &)
|
||||
xmlsecurity/inc/xmlsignaturehelper.hxx:113
|
||||
xmlsecurity/inc/xmlsignaturehelper.hxx:109
|
||||
void XMLSignatureHelper::SignatureVerifyResultListener(struct XMLSignatureVerifyResult &)
|
||||
xmlsecurity/source/gpg/CertificateImpl.hxx:83
|
||||
const class GpgME::Key * CertificateImpl::getCertificate() const
|
||||
xmlsecurity/source/gpg/XMLEncryption.hxx:27
|
||||
XMLEncryptionGpg::XMLEncryptionGpg()
|
||||
xmlsecurity/source/gpg/XMLSignature.hxx:27
|
||||
XMLSignatureGpg::XMLSignatureGpg()
|
||||
|
@ -28,20 +28,10 @@ chart2/source/view/main/OpenGLRender.hxx:104
|
||||
int OpenGLRender::RenderSymbol2DShape(float,float,int)
|
||||
chart2/source/view/main/OpenGLRender.hxx:121
|
||||
int OpenGLRender::Create2DCircle(int)
|
||||
compilerplugins/clang/test/externvar.hxx:23
|
||||
int f(int)
|
||||
compilerplugins/clang/test/redundantinline.hxx:35
|
||||
int S3::operator int()
|
||||
compilerplugins/clang/test/redundantinline.hxx:64
|
||||
int S4::operator int()
|
||||
compilerplugins/clang/test/redundantinline.hxx:68
|
||||
int S4::f5()
|
||||
compilerplugins/clang/test/redundantinline.hxx:70
|
||||
int S4::f6()
|
||||
compilerplugins/clang/test/redundantinline.hxx:73
|
||||
int f5()
|
||||
compilerplugins/clang/test/redundantinline.hxx:75
|
||||
int f6()
|
||||
connectivity/source/drivers/evoab2/NResultSet.hxx:125
|
||||
class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> connectivity::evoab::OEvoabResultSet::operator*()
|
||||
connectivity/source/drivers/evoab2/NResultSetMetaData.hxx:53
|
||||
class com::sun::star::uno::Reference<class com::sun::star::sdbc::XResultSetMetaData> connectivity::evoab::OEvoabResultSetMetaData::operator Reference()
|
||||
connectivity/source/inc/java/lang/Object.hxx:118
|
||||
int connectivity::java_lang_Object::callIntMethodWithIntArg_ThrowRuntime(const char *,struct _jmethodID *&,int) const
|
||||
connectivity/source/inc/OColumn.hxx:131
|
||||
@ -50,7 +40,7 @@ connectivity/source/inc/OColumn.hxx:133
|
||||
const class rtl::OUString & connectivity::OColumn::getCatalogName() const
|
||||
connectivity/source/inc/odbc/OConnection.hxx:82
|
||||
short connectivity::odbc::OConnection::Construct(const class rtl::OUString &,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> &)
|
||||
dbaccess/source/ui/browser/genericcontroller.cxx:1267
|
||||
dbaccess/source/ui/browser/genericcontroller.cxx:1266
|
||||
const type-parameter-?-? & dbaui::(anonymous namespace)::SGI_identity::operator()(const type-parameter-?-? &) const
|
||||
i18nlangtag/source/languagetag/languagetag.cxx:275
|
||||
const class rtl::OUString & LanguageTagImpl::getBcp47() const
|
||||
@ -142,14 +132,16 @@ include/canvas/rendering/isurfaceproxymanager.hxx:58
|
||||
class std::shared_ptr<struct canvas::ISurfaceProxy> canvas::ISurfaceProxyManager::createSurfaceProxy(const class std::shared_ptr<struct canvas::IColorBuffer> &) const
|
||||
include/canvas/rendering/isurfaceproxymanager.hxx:64
|
||||
class std::shared_ptr<struct canvas::ISurfaceProxyManager> createSurfaceProxyManager(const class std::shared_ptr<struct canvas::IRenderModule> &)
|
||||
include/canvas/vclwrapper.hxx:135
|
||||
include/canvas/vclwrapper.hxx:134
|
||||
type-parameter-?-? & canvas::vcltools::VCLObject::get()
|
||||
include/canvas/vclwrapper.hxx:136
|
||||
include/canvas/vclwrapper.hxx:135
|
||||
const type-parameter-?-? & canvas::vcltools::VCLObject::get() const
|
||||
include/comphelper/unique_disposing_ptr.hxx:46
|
||||
include/comphelper/unique_disposing_ptr.hxx:45
|
||||
type-parameter-?-? & comphelper::unique_disposing_ptr::operator*() const
|
||||
include/connectivity/FValue.hxx:327
|
||||
unsigned short connectivity::ORowSetValue::operator unsigned short() const
|
||||
include/editeng/editview.hxx:191
|
||||
class ErrCode EditView::Read(class SvStream &,enum EETextFormat,class SvKeyValueIterator *)
|
||||
include/LibreOfficeKit/LibreOfficeKit.hxx:63
|
||||
struct _LibreOfficeKitDocument * lok::Document::get()
|
||||
include/LibreOfficeKit/LibreOfficeKit.hxx:71
|
||||
@ -178,6 +170,8 @@ include/LibreOfficeKit/LibreOfficeKit.hxx:543
|
||||
char * lok::Office::getFilterTypes()
|
||||
include/LibreOfficeKit/LibreOfficeKit.hxx:593
|
||||
char * lok::Office::getVersionInfo()
|
||||
include/o3tl/array_view.hxx:158
|
||||
unsigned long std::hash::operator()(array_view<type-parameter-?-?>)
|
||||
include/o3tl/enumarray.hxx:100
|
||||
typename type-parameter-?-?::value_type * o3tl::enumarray_iterator::operator->()
|
||||
include/o3tl/string_view.hxx:844
|
||||
@ -188,6 +182,8 @@ include/o3tl/string_view.hxx:854
|
||||
unsigned long std::hash::operator()(class o3tl::basic_string_view<char32_t, struct std::char_traits<char32_t> >)
|
||||
include/o3tl/string_view.hxx:859
|
||||
unsigned long std::hash::operator()(class o3tl::basic_string_view<wchar_t, struct std::char_traits<wchar_t> >)
|
||||
include/oox/dump/dumperbase.hxx:637
|
||||
long oox::dump::FlagsList::getIgnoreFlags() const
|
||||
include/oox/dump/dumperbase.hxx:1392
|
||||
type-parameter-?-? oox::dump::InputObjectBase::dumpName(const class oox::dump::String &,const class oox::dump::NameListWrapper &)
|
||||
include/oox/dump/dumperbase.hxx:1398
|
||||
@ -244,12 +240,14 @@ include/oox/helper/binaryoutputstream.hxx:79
|
||||
class oox::BinaryOutputStream & oox::BinaryOutputStream::WriteUInt16(unsigned short)
|
||||
include/oox/helper/containerhelper.hxx:113
|
||||
typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::reference oox::Matrix::operator()(typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type,typename vector<type-parameter-?-?, allocator<type-parameter-?-?> >::size_type)
|
||||
include/sax/fshelper.hxx:127
|
||||
include/sax/fshelper.hxx:205
|
||||
class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(int)
|
||||
include/sax/fshelper.hxx:128
|
||||
include/sax/fshelper.hxx:206
|
||||
class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::write(long)
|
||||
include/sax/fshelper.hxx:131
|
||||
include/sax/fshelper.hxx:209
|
||||
class sax_fastparser::FastSerializerHelper * sax_fastparser::FastSerializerHelper::writeEscaped(const char *)
|
||||
include/svtools/treelistbox.hxx:536
|
||||
short SvTreeListBox::GetHeightOffset(const class Image &,class Size &)
|
||||
include/test/sheet/xnamedrange.hxx:22
|
||||
class com::sun::star::uno::Reference<class com::sun::star::uno::XInterface> apitest::XNamedRange::init()
|
||||
include/test/sheet/xsheetannotation.hxx:36
|
||||
@ -270,10 +268,8 @@ include/vcl/fontcharmap.hxx:48
|
||||
class tools::SvRef<class FontCharMap> FontCharMap::GetDefaultMap(_Bool)
|
||||
include/vcl/gdimtf.hxx:185
|
||||
class SvStream & GDIMetaFile::Read(class SvStream &)
|
||||
include/vcl/graphicfilter.hxx:261
|
||||
unsigned short GraphicFilter::ExportGraphic(const class Graphic &,const class INetURLObject &,unsigned short,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> *)
|
||||
include/vcl/menu.hxx:468
|
||||
unsigned short MenuBar::AddMenuBarButton(const class Image &,const class Link<struct MenuBar::MenuBarButtonCallbackArg &, _Bool> &,const class rtl::OUString &)
|
||||
include/vcl/graphicfilter.hxx:259
|
||||
class ErrCode GraphicFilter::ExportGraphic(const class Graphic &,const class INetURLObject &,unsigned short,const class com::sun::star::uno::Sequence<struct com::sun::star::beans::PropertyValue> *)
|
||||
lotuswordpro/source/filter/lwpsvstream.hxx:76
|
||||
class LwpSvStream & LwpSvStream::ReadUInt8(unsigned char &)
|
||||
lotuswordpro/source/filter/lwpsvstream.hxx:77
|
||||
@ -284,9 +280,9 @@ sc/source/core/opencl/formulagroupcl.cxx:968
|
||||
unsigned long sc::opencl::DynamicKernelSlidingArgument::GenReductionLoopHeader(class std::basic_stringstream<char> &,_Bool &)
|
||||
sc/source/core/opencl/formulagroupcl.cxx:1413
|
||||
unsigned long sc::opencl::ParallelReductionVectorRef::GenReductionLoopHeader(class std::basic_stringstream<char> &,int,_Bool &)
|
||||
sc/source/core/tool/scmatrix.cxx:2209
|
||||
sc/source/core/tool/scmatrix.cxx:2213
|
||||
type-parameter-?-? * wrapped_iterator::operator->() const
|
||||
sc/source/core/tool/scmatrix.cxx:3175
|
||||
sc/source/core/tool/scmatrix.cxx:3179
|
||||
const class svl::SharedString & matop::COp::operator()(char,type-parameter-?-?,double,double,const class svl::SharedString &) const
|
||||
sc/source/ui/vba/vbaformat.hxx:69
|
||||
class com::sun::star::uno::Any ScVbaFormat::getAddIndent()
|
||||
@ -320,17 +316,23 @@ sc/source/ui/vba/vbaformat.hxx:145
|
||||
class com::sun::star::uno::Any ScVbaFormat::getMergeCells()
|
||||
sc/source/ui/vba/vbaformat.hxx:151
|
||||
class com::sun::star::uno::Any ScVbaFormat::getReadingOrder()
|
||||
sd/source/filter/eppt/pptx-epptooxml.cxx:118
|
||||
sd/source/filter/eppt/pptx-epptooxml.cxx:126
|
||||
class oox::drawingml::ShapeExport & oox::core::PowerPointShapeExport::WritePageShape(const class com::sun::star::uno::Reference<class com::sun::star::drawing::XShape> &,enum PageType,_Bool)
|
||||
sd/source/ui/inc/OutlineViewShell.hxx:114
|
||||
class ErrCode sd::OutlineViewShell::ReadRtf(class SvStream &)
|
||||
sd/source/ui/remotecontrol/IBluetoothSocket.hxx:37
|
||||
int sd::IBluetoothSocket::write(const void *,unsigned int)
|
||||
sw/inc/calc.hxx:111
|
||||
sfx2/source/inc/childwinimpl.hxx:75
|
||||
class SfxFrame * SfxFrameArr_Impl::operator[](unsigned long)
|
||||
sw/inc/calc.hxx:112
|
||||
class SwSbxValue & SwSbxValue::MakeDouble()
|
||||
sw/inc/editsh.hxx:617
|
||||
const class GraphicAttr * SwEditShell::GetGraphicAttr(class GraphicAttr &) const
|
||||
sw/source/uibase/inc/fldmgr.hxx:114
|
||||
const class com::sun::star::uno::Reference<class com::sun::star::text::XNumberingTypeInfo> & SwFieldMgr::GetNumberingInfo() const
|
||||
vcl/inc/PhysicalFontFace.hxx:79
|
||||
int PhysicalFontFace::GetWidth() const
|
||||
vcl/inc/unx/gtk/gtkdata.hxx:155
|
||||
vcl/inc/unx/gtk/gtkdata.hxx:153
|
||||
int GtkSalDisplay::CaptureMouse(class SalFrame *)
|
||||
vcl/source/filter/FilterConfigCache.hxx:89
|
||||
class rtl::OUString FilterConfigCache::GetImportFormatMediaType(unsigned short)
|
||||
|
@ -85,8 +85,6 @@ namespace connectivity
|
||||
|
||||
virtual ~OEvoabDatabaseMetaData() override;
|
||||
public:
|
||||
OEvoabConnection* getOwnConnection() const { return m_pConnection; }
|
||||
|
||||
explicit OEvoabDatabaseMetaData(OEvoabConnection* _pCon);
|
||||
|
||||
// as I mentioned before this interface is really BIG
|
||||
|
@ -47,8 +47,6 @@ namespace connectivity
|
||||
void setEvoabFields(const ::rtl::Reference<connectivity::OSQLColumns> &xColumns);
|
||||
sal_uInt32 fieldAtColumn(sal_Int32 columnIndex) const
|
||||
{ return m_aEvoabFields[columnIndex - 1]; }
|
||||
sal_Int32 getFieldSize() const
|
||||
{return m_aEvoabFields.size();}
|
||||
/// Avoid ambiguous cast error from the compiler.
|
||||
operator css::uno::Reference< css::sdbc::XResultSetMetaData > () throw()
|
||||
{ return this; }
|
||||
|
@ -57,7 +57,6 @@ namespace connectivity
|
||||
sal_Int32 nField;
|
||||
bool bAscending;
|
||||
|
||||
FieldSort() : nField(0), bAscending( true ) { }
|
||||
FieldSort( const sal_Int32 _nField, const bool _bAscending ) : nField( _nField ), bAscending( _bAscending ) { }
|
||||
};
|
||||
typedef std::vector< FieldSort > SortDescriptor;
|
||||
|
@ -274,23 +274,6 @@ void SvxHyphenWordDialog::ContinueHyph_Impl( sal_Int32 nInsPos )
|
||||
}
|
||||
|
||||
|
||||
sal_uInt16 SvxHyphenWordDialog::GetHyphIndex_Impl()
|
||||
{
|
||||
sal_uInt16 nPos = 0;
|
||||
const OUString aTxt( m_pWordEdit->GetText() );
|
||||
|
||||
for ( sal_Int32 i=0; i < aTxt.getLength(); ++i )
|
||||
{
|
||||
sal_Unicode cChar = aTxt[ i ];
|
||||
if ( cChar == CUR_HYPH_POS_CHAR )
|
||||
break;
|
||||
if ( cChar != HYPH_POS_CHAR )
|
||||
nPos++;
|
||||
}
|
||||
return nPos;
|
||||
}
|
||||
|
||||
|
||||
void SvxHyphenWordDialog::SelLeft()
|
||||
{
|
||||
DBG_ASSERT( m_nOldPos > 0, "invalid hyphenation position" );
|
||||
|
@ -67,7 +67,6 @@ class SvxHyphenWordDialog : public SfxModalDialog
|
||||
|
||||
void InitControls_Impl();
|
||||
void ContinueHyph_Impl( sal_Int32 nInsPos = -1 ); // continue by default
|
||||
sal_uInt16 GetHyphIndex_Impl();
|
||||
|
||||
DECL_LINK(Left_Impl, Button*, void);
|
||||
DECL_LINK(Right_Impl, Button*, void);
|
||||
|
@ -70,31 +70,6 @@ void setMsLangIdFallback(OUString const & locale) {
|
||||
|
||||
}
|
||||
|
||||
OUString getEmergencyLocale() {
|
||||
if (!foundLocale.isEmpty()) {
|
||||
return foundLocale;
|
||||
}
|
||||
try {
|
||||
css::uno::Sequence<OUString> inst(
|
||||
officecfg::Setup::Office::InstalledLocales::get()->
|
||||
getElementNames());
|
||||
OUString locale(
|
||||
getInstalledLocaleForLanguage(
|
||||
inst,
|
||||
officecfg::Office::Linguistic::General::UILocale::get()));
|
||||
if (!locale.isEmpty()) {
|
||||
return locale;
|
||||
}
|
||||
locale = getInstalledLocaleForSystemUILanguage(inst);
|
||||
if (!locale.isEmpty()) {
|
||||
return locale;
|
||||
}
|
||||
} catch (css::uno::Exception & e) {
|
||||
SAL_WARN("desktop.app", "ignoring Exception \"" << e.Message << "\"");
|
||||
}
|
||||
return OUString();
|
||||
}
|
||||
|
||||
bool prepareLocale() {
|
||||
// #i42730# Get the windows 16Bit locale, it should be preferred over the UI
|
||||
// locale:
|
||||
|
@ -26,8 +26,6 @@
|
||||
|
||||
namespace desktop { namespace langselect {
|
||||
|
||||
OUString getEmergencyLocale();
|
||||
|
||||
bool prepareLocale();
|
||||
|
||||
} }
|
||||
|
@ -481,16 +481,6 @@ namespace drawinglayer
|
||||
}
|
||||
}
|
||||
|
||||
PolyPolygonGraphicPrimitive2D::PolyPolygonGraphicPrimitive2D(
|
||||
const basegfx::B2DPolyPolygon& rPolyPolygon,
|
||||
const attribute::FillGraphicAttribute& rFillGraphic)
|
||||
: BufferedDecompositionPrimitive2D(),
|
||||
maPolyPolygon(rPolyPolygon),
|
||||
maDefinitionRange(rPolyPolygon.getB2DRange()),
|
||||
maFillGraphic(rFillGraphic)
|
||||
{
|
||||
}
|
||||
|
||||
PolyPolygonGraphicPrimitive2D::PolyPolygonGraphicPrimitive2D(
|
||||
const basegfx::B2DPolyPolygon& rPolyPolygon,
|
||||
const basegfx::B2DRange& rDefinitionRange,
|
||||
|
@ -633,103 +633,6 @@ util::DateTime SvxRTFParser::GetDateTimeStamp( )
|
||||
return aDT;
|
||||
}
|
||||
|
||||
void SvxRTFParser::ReadInfo()
|
||||
{
|
||||
int _nOpenBrakets = 1; // the first was already detected earlier!!
|
||||
DBG_ASSERT(m_xDocProps.is(),
|
||||
"SvxRTFParser::ReadInfo: no DocumentProperties");
|
||||
OUString sStr, sComment;
|
||||
|
||||
while( _nOpenBrakets && IsParserWorking() )
|
||||
{
|
||||
int nToken = GetNextToken();
|
||||
switch( nToken )
|
||||
{
|
||||
case '}': --_nOpenBrakets; break;
|
||||
case '{':
|
||||
{
|
||||
if( RTF_IGNOREFLAG != GetNextToken() )
|
||||
SkipToken();
|
||||
else if( RTF_UNKNOWNCONTROL != GetNextToken() )
|
||||
SkipToken( -2 );
|
||||
else
|
||||
{
|
||||
// filter out at once
|
||||
ReadUnknownData();
|
||||
nToken = GetNextToken();
|
||||
if( '}' != nToken )
|
||||
eState = SvParserState::Error;
|
||||
break;
|
||||
}
|
||||
++_nOpenBrakets;
|
||||
}
|
||||
break;
|
||||
|
||||
case RTF_TITLE:
|
||||
m_xDocProps->setTitle( GetTextToEndGroup( sStr ) );
|
||||
break;
|
||||
case RTF_SUBJECT:
|
||||
m_xDocProps->setSubject( GetTextToEndGroup( sStr ) );
|
||||
break;
|
||||
case RTF_AUTHOR:
|
||||
m_xDocProps->setAuthor( GetTextToEndGroup( sStr ) );
|
||||
break;
|
||||
case RTF_OPERATOR:
|
||||
m_xDocProps->setModifiedBy( GetTextToEndGroup( sStr ) );
|
||||
break;
|
||||
case RTF_KEYWORDS:
|
||||
{
|
||||
OUString sTemp = GetTextToEndGroup( sStr );
|
||||
m_xDocProps->setKeywords(
|
||||
::comphelper::string::convertCommaSeparated(sTemp) );
|
||||
break;
|
||||
}
|
||||
case RTF_DOCCOMM:
|
||||
m_xDocProps->setDescription( GetTextToEndGroup( sStr ) );
|
||||
break;
|
||||
|
||||
case RTF_HLINKBASE:
|
||||
sBaseURL = GetTextToEndGroup( sStr ) ;
|
||||
break;
|
||||
|
||||
case RTF_CREATIM:
|
||||
m_xDocProps->setCreationDate( GetDateTimeStamp() );
|
||||
break;
|
||||
|
||||
case RTF_REVTIM:
|
||||
m_xDocProps->setModificationDate( GetDateTimeStamp() );
|
||||
break;
|
||||
|
||||
case RTF_PRINTIM:
|
||||
m_xDocProps->setPrintDate( GetDateTimeStamp() );
|
||||
break;
|
||||
|
||||
case RTF_COMMENT:
|
||||
GetTextToEndGroup( sComment );
|
||||
break;
|
||||
|
||||
case RTF_BUPTIM:
|
||||
SkipGroup();
|
||||
break;
|
||||
|
||||
case RTF_VERN:
|
||||
break;
|
||||
|
||||
case RTF_EDMINS:
|
||||
case RTF_ID:
|
||||
case RTF_VERSION:
|
||||
case RTF_NOFPAGES:
|
||||
case RTF_NOFWORDS:
|
||||
case RTF_NOFCHARS:
|
||||
NextToken( nToken );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
SkipToken(); // the closing brace is evaluated "above"
|
||||
}
|
||||
|
||||
|
||||
void SvxRTFParser::ClearColorTbl()
|
||||
{
|
||||
while ( !aColorTbl.empty() )
|
||||
|
@ -378,10 +378,6 @@ namespace drawinglayer
|
||||
virtual void create2DDecomposition(Primitive2DContainer& rContainer, const geometry::ViewInformation2D& rViewInformation) const override;
|
||||
|
||||
public:
|
||||
/// constructors. The one without definition range will use output range as definition range
|
||||
PolyPolygonGraphicPrimitive2D(
|
||||
const basegfx::B2DPolyPolygon& rPolyPolygon,
|
||||
const attribute::FillGraphicAttribute& rFillGraphic);
|
||||
PolyPolygonGraphicPrimitive2D(
|
||||
const basegfx::B2DPolyPolygon& rPolyPolygon,
|
||||
const basegfx::B2DRange& rDefinitionRange,
|
||||
|
@ -254,7 +254,6 @@ protected:
|
||||
// Read Document-Info
|
||||
css::util::DateTime GetDateTimeStamp( );
|
||||
OUString& GetTextToEndGroup( OUString& rStr );
|
||||
void ReadInfo();
|
||||
|
||||
inline SfxItemSet& GetAttrSet();
|
||||
// no text yet inserted? (SttPos from the top stack entry!)
|
||||
|
@ -40,7 +40,6 @@ public:
|
||||
sal_uInt16 GetMode() const { return nMode; }
|
||||
sal_Int32 GetFStart() const { return nFStart; }
|
||||
sal_uInt16 GetOffset() const { return nOffset; }
|
||||
sal_uInt16 GetEdFocus() const { return nEdFocus; }
|
||||
const OUString& GetUndoStr() const { return aUndoStr; }
|
||||
bool GetMatrixFlag()const{ return bMatrix;}
|
||||
const VclPtr<vcl::Window>& GetFocusWindow()const { return xFocusWin; }
|
||||
|
@ -158,11 +158,6 @@ public:
|
||||
RTL_TEXTENCODING_UTF8);
|
||||
}
|
||||
|
||||
const char* toCString() const
|
||||
{
|
||||
assert(mnIdx < mrList.maAttributeTokens.size());
|
||||
return mrList.getFastAttributeValue(mnIdx);
|
||||
}
|
||||
bool isString(const char *str) const
|
||||
{
|
||||
assert(mnIdx < mrList.maAttributeTokens.size());
|
||||
|
@ -133,9 +133,6 @@ public:
|
||||
static SfxApplication* GetOrCreate();
|
||||
static SfxApplication* Get();
|
||||
|
||||
// Resource Locale
|
||||
static std::locale* GetSfxResLocale();
|
||||
|
||||
// DDE
|
||||
#if defined(_WIN32)
|
||||
static long DdeExecute( const OUString& rCmd );
|
||||
|
@ -63,7 +63,6 @@ protected:
|
||||
OUString& GetExtraData() { return aExtraData; }
|
||||
sal_uInt32 GetUniqId() const { return nUniqId; }
|
||||
void SetUniqId(sal_uInt32 nSettingsId) { nUniqId = nSettingsId; }
|
||||
SfxItemSet* GetItemSet() { return pOutputSet; }
|
||||
void CreateOutputItemSet( SfxItemPool& rPool );
|
||||
void CreateOutputItemSet( const SfxItemSet& rInput );
|
||||
void SetInputSet( const SfxItemSet* pInSet ) { pInputSet = pInSet; }
|
||||
|
@ -36,7 +36,6 @@ public:
|
||||
|
||||
virtual Size GetOptimalSize() const override;
|
||||
|
||||
void setInsertCharHdl(const Link<SvxCharView*,void> &rLink);
|
||||
void setMouseClickHdl(const Link<SvxCharView*,void> &rLink);
|
||||
|
||||
protected:
|
||||
|
@ -170,7 +170,6 @@ public:
|
||||
{ return pWindow->GetSizePixel(); }
|
||||
virtual void Hide();
|
||||
virtual void Show( ShowFlags nFlags );
|
||||
bool CanGetFocus() const;
|
||||
sal_uInt16 GetPosition();
|
||||
sal_uInt16 GetType()
|
||||
{ return nType; }
|
||||
|
@ -22,7 +22,6 @@ namespace vcl { class Font; }
|
||||
SVT_DLLPUBLIC UScriptCode otCoverageToScript(vcl::UnicodeCoverage::UnicodeCoverageEnum eOTCoverage);
|
||||
|
||||
SVT_DLLPUBLIC bool isSymbolFont(const vcl::Font &rFont);
|
||||
SVT_DLLPUBLIC bool isOpenSymbolFont(const vcl::Font &rFont);
|
||||
|
||||
SVT_DLLPUBLIC bool canRenderNameOfSelectedFont(OutputDevice const &rDevice);
|
||||
|
||||
|
@ -76,13 +76,9 @@ public:
|
||||
// Compound object
|
||||
const Color& GetDefaultAmbientColor() { return aDefaultAmbientColor; }
|
||||
|
||||
bool GetDefaultCreateNormals() const { return bDefaultCreateNormals; }
|
||||
bool GetDefaultCreateTexture() const { return bDefaultCreateTexture; }
|
||||
|
||||
// Cube object
|
||||
const basegfx::B3DPoint& GetDefaultCubePos() { return aDefaultCubePos; }
|
||||
const basegfx::B3DVector& GetDefaultCubeSize() { return aDefaultCubeSize; }
|
||||
CubeFaces GetDefaultCubeSideFlags() const { return nDefaultCubeSideFlags; }
|
||||
bool GetDefaultCubePosIsCenter() const { return bDefaultCubePosIsCenter; }
|
||||
|
||||
// Sphere object
|
||||
|
@ -23,16 +23,6 @@
|
||||
#include <svx/svxdllapi.h>
|
||||
#include <vector>
|
||||
|
||||
// class SvxStringArray -------------------------------------------------
|
||||
|
||||
class SVX_DLLPUBLIC SvxStringArray
|
||||
{
|
||||
std::vector<OUString> m_aTranslations;
|
||||
public:
|
||||
SvxStringArray(const char** pResId, size_t nLength);
|
||||
const OUString GetString(sal_uInt32 nPos) const;
|
||||
};
|
||||
|
||||
class SVX_DLLPUBLIC SvxFieldUnitTable
|
||||
{
|
||||
public:
|
||||
@ -55,7 +45,6 @@ class SVX_DLLPUBLIC SvxAttrNameTable
|
||||
public:
|
||||
static OUString GetString(sal_uInt32 i);
|
||||
static sal_uInt32 Count();
|
||||
static sal_uInt16 GetValue(sal_uInt32 i);
|
||||
static sal_uInt32 FindIndex(int nValue);
|
||||
};
|
||||
|
||||
|
@ -141,7 +141,6 @@ public:
|
||||
void getCellBounds( const sdr::table::CellPos& rPos, ::tools::Rectangle& rCellRect );
|
||||
|
||||
const SfxItemSet& GetActiveCellItemSet() const;
|
||||
void SetMergedItemSetAndBroadcastOnActiveCell(const SfxItemSet& rSet);
|
||||
|
||||
void setTableStyle( const css::uno::Reference< css::container::XIndexAccess >& xAutoFormatStyle );
|
||||
const css::uno::Reference< css::container::XIndexAccess >& getTableStyle() const;
|
||||
|
@ -45,9 +45,6 @@ public:
|
||||
void* Get( Index aIndex ) const;
|
||||
|
||||
Index GetIndexOf( void const* p ) const;
|
||||
Index FirstIndex() const;
|
||||
Index LastIndex() const;
|
||||
Index NextIndex( Index aCurrIndex ) const;
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
@ -61,12 +58,6 @@ public:
|
||||
|
||||
Index Insert(T* p) { return UniqueIndexImpl::Insert(p); }
|
||||
T* Get(Index idx) const { return static_cast<T*>( UniqueIndexImpl::Get(idx) ); }
|
||||
T* Remove(Index idx) { return static_cast<T*>( UniqueIndexImpl::Remove(idx) ); }
|
||||
Index GetIndexOf(T* p) const { return UniqueIndexImpl::GetIndexOf(p); }
|
||||
|
||||
using UniqueIndexImpl::FirstIndex;
|
||||
using UniqueIndexImpl::LastIndex;
|
||||
using UniqueIndexImpl::NextIndex;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
@ -32,9 +32,6 @@ class VCL_DLLPUBLIC Scheduler final
|
||||
friend class Task;
|
||||
Scheduler() = delete;
|
||||
|
||||
static inline bool HasPendingTasks( const ImplSchedulerContext &rSchedCtx,
|
||||
const sal_uInt64 nTime );
|
||||
|
||||
static inline void UpdateSystemTimer( ImplSchedulerContext &rSchedCtx,
|
||||
sal_uInt64 nMinPeriod,
|
||||
bool bForce, sal_uInt64 nTime );
|
||||
|
@ -378,7 +378,6 @@ public:
|
||||
|
||||
static const OUString getNameFromToken( sal_Int32 nToken );
|
||||
static const OUString getNamespacePrefixFromToken( sal_Int32 nToken );
|
||||
static const OUString getNamespaceURIFromToken( sal_Int32 nToken );
|
||||
|
||||
SvXMLNamespaceMap& GetNamespaceMap() { return *mpNamespaceMap; }
|
||||
const SvXMLNamespaceMap& GetNamespaceMap() const { return *mpNamespaceMap; }
|
||||
|
@ -3300,10 +3300,6 @@ namespace xmloff { namespace token {
|
||||
const OUString& rString,
|
||||
enum XMLTokenEnum eToken );
|
||||
|
||||
XMLOFF_DLLPUBLIC bool IsXMLToken(
|
||||
const char* pCString,
|
||||
enum XMLTokenEnum eToken );
|
||||
|
||||
XMLOFF_DLLPUBLIC bool IsXMLToken(
|
||||
const sax_fastparser::FastAttributeList::FastAttributeIter& aIter,
|
||||
enum XMLTokenEnum eToken );
|
||||
|
@ -38,8 +38,6 @@ namespace xmlreader {
|
||||
|
||||
class OOO_DLLPUBLIC_XMLREADER XmlReader {
|
||||
public:
|
||||
XmlReader(char const *sStr, size_t nLength);
|
||||
|
||||
explicit XmlReader(OUString const & fileUrl);
|
||||
|
||||
~XmlReader();
|
||||
|
@ -70,7 +70,6 @@ class ResData
|
||||
public:
|
||||
ResData( const OString &rGId );
|
||||
ResData( const OString &rGId , const OString &rFilename );
|
||||
bool SetId(const OString &rId, IdLevel nLevel);
|
||||
|
||||
OString sResTyp;
|
||||
OString sId;
|
||||
@ -96,51 +95,6 @@ enum class StringType {
|
||||
typedef ::std::vector< ResData* > ResStack;
|
||||
class ParserQueue;
|
||||
|
||||
/// Purpose: syntax check and export of *.src, called from lexer
|
||||
class Export
|
||||
{
|
||||
private:
|
||||
bool bError; // any errors while export?
|
||||
|
||||
ParserQueue* pParseQueue;
|
||||
|
||||
void WriteData( ResData *pResData, bool bCreateNew = false ); ///< called before dest. cur ResData
|
||||
void WriteExportList( ResData *pResData, ExportList& rExportList, const ExportListType nTyp );
|
||||
|
||||
OString FullId(); ///< creates cur. GID
|
||||
|
||||
static OString GetPairedListID(const OString & rText);
|
||||
static OString GetPairedListString(const OString& rText);
|
||||
static OString StripList(const OString& rText);
|
||||
|
||||
void InsertListEntry(const OString &rLine);
|
||||
static void CleanValue( OString &rValue );
|
||||
static OString GetText(const OString &rSource, int nToken);
|
||||
|
||||
void ResData2Output( MergeEntrys *pEntry, StringType nType, const OString& rTextType );
|
||||
void MergeRest( ResData *pResData );
|
||||
static void ConvertMergeContent( OString &rText );
|
||||
static void ConvertExportContent( OString &rText );
|
||||
|
||||
void WriteToMerged(const OString &rText , bool bSDFContent);
|
||||
void SetChildWithText();
|
||||
|
||||
static void CutComment( OString &rText );
|
||||
|
||||
public:
|
||||
Export( const OString &rOutput );
|
||||
Export(const OString &rMergeSource, const OString &rOutput, bool bUTF8BOM);
|
||||
~Export();
|
||||
|
||||
void Init();
|
||||
void Execute( int nToken, const char * pToken ); ///< called from lexer
|
||||
|
||||
void SetError() { bError = true; }
|
||||
bool GetError() { return bError; }
|
||||
ParserQueue* GetParseQueue() { return pParseQueue; }
|
||||
};
|
||||
|
||||
|
||||
// class MergeEntrys
|
||||
|
||||
|
||||
@ -220,9 +174,6 @@ class MergeDataHashMap
|
||||
iterator begin() {return m_aHashMap.begin();}
|
||||
iterator end() {return m_aHashMap.end();}
|
||||
|
||||
const_iterator begin() const {return m_aHashMap.begin();}
|
||||
const_iterator end() const {return m_aHashMap.end();}
|
||||
|
||||
private:
|
||||
bool bFirstSearch;
|
||||
HashMap_t m_aHashMap;
|
||||
@ -276,7 +227,6 @@ class MergeDataFile
|
||||
|
||||
|
||||
std::vector<OString> GetLanguages() const;
|
||||
const MergeDataHashMap& getMap() const { return aMap; }
|
||||
|
||||
MergeEntrys *GetMergeEntrys( ResData *pResData );
|
||||
MergeEntrys *GetMergeEntrysCaseSensitive( ResData *pResData );
|
||||
@ -286,30 +236,6 @@ class MergeDataFile
|
||||
};
|
||||
|
||||
|
||||
class QueueEntry
|
||||
{
|
||||
public:
|
||||
QueueEntry(int nTypVal, const OString &rLineVal)
|
||||
: nTyp(nTypVal), sLine(rLineVal)
|
||||
{
|
||||
}
|
||||
int nTyp;
|
||||
OString sLine;
|
||||
};
|
||||
|
||||
class ParserQueue
|
||||
{
|
||||
public:
|
||||
|
||||
ParserQueue( Export& aExportObj );
|
||||
~ParserQueue();
|
||||
|
||||
inline void Push( const QueueEntry& aEntry );
|
||||
|
||||
void Close();
|
||||
private:
|
||||
inline void Pop( std::queue<QueueEntry>& aQueue );
|
||||
};
|
||||
#endif // INCLUDED_L10NTOOLS_INC_EXPORT_HXX
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
@ -477,49 +477,6 @@ const SvXMLTokenMap& ScXMLImport::GetDocElemTokenMap()
|
||||
return *pDocElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetBodyElemTokenMap()
|
||||
{
|
||||
if( !pBodyElemTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aBodyTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_TRACKED_CHANGES, XML_TOK_BODY_TRACKED_CHANGES },
|
||||
{ XML_NAMESPACE_TABLE, XML_CALCULATION_SETTINGS, XML_TOK_BODY_CALCULATION_SETTINGS },
|
||||
{ XML_NAMESPACE_TABLE, XML_CONTENT_VALIDATIONS, XML_TOK_BODY_CONTENT_VALIDATIONS },
|
||||
{ XML_NAMESPACE_TABLE, XML_LABEL_RANGES, XML_TOK_BODY_LABEL_RANGES },
|
||||
{ XML_NAMESPACE_TABLE, XML_TABLE, XML_TOK_BODY_TABLE },
|
||||
{ XML_NAMESPACE_TABLE, XML_NAMED_EXPRESSIONS, XML_TOK_BODY_NAMED_EXPRESSIONS },
|
||||
{ XML_NAMESPACE_TABLE, XML_DATABASE_RANGES, XML_TOK_BODY_DATABASE_RANGES },
|
||||
{ XML_NAMESPACE_TABLE, XML_DATABASE_RANGE, XML_TOK_BODY_DATABASE_RANGE },
|
||||
{ XML_NAMESPACE_TABLE, XML_DATA_PILOT_TABLES, XML_TOK_BODY_DATA_PILOT_TABLES },
|
||||
{ XML_NAMESPACE_TABLE, XML_CONSOLIDATION, XML_TOK_BODY_CONSOLIDATION },
|
||||
{ XML_NAMESPACE_TABLE, XML_DDE_LINKS, XML_TOK_BODY_DDE_LINKS },
|
||||
{ XML_NAMESPACE_CALC_EXT, XML_DATA_STREAM_SOURCE, XML_TOK_BODY_DATA_STREAM_SOURCE },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pBodyElemTokenMap = new SvXMLTokenMap( aBodyTokenMap );
|
||||
} // if( !pBodyElemTokenMap )
|
||||
|
||||
return *pBodyElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetContentValidationsElemTokenMap()
|
||||
{
|
||||
if( !pContentValidationsElemTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aContentValidationsElemTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_CONTENT_VALIDATION, XML_TOK_CONTENT_VALIDATION },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pContentValidationsElemTokenMap = new SvXMLTokenMap( aContentValidationsElemTokenMap );
|
||||
} // if( !pContentValidationsElemTokenMap )
|
||||
|
||||
return *pContentValidationsElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetContentValidationElemTokenMap()
|
||||
{
|
||||
if( !pContentValidationElemTokenMap )
|
||||
@ -539,26 +496,6 @@ const SvXMLTokenMap& ScXMLImport::GetContentValidationElemTokenMap()
|
||||
return *pContentValidationElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetContentValidationAttrTokenMap()
|
||||
{
|
||||
if( !pContentValidationAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aContentValidationAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_NAME, XML_TOK_CONTENT_VALIDATION_NAME },
|
||||
{ XML_NAMESPACE_TABLE, XML_CONDITION, XML_TOK_CONTENT_VALIDATION_CONDITION },
|
||||
{ XML_NAMESPACE_TABLE, XML_BASE_CELL_ADDRESS, XML_TOK_CONTENT_VALIDATION_BASE_CELL_ADDRESS },
|
||||
{ XML_NAMESPACE_TABLE, XML_ALLOW_EMPTY_CELL, XML_TOK_CONTENT_VALIDATION_ALLOW_EMPTY_CELL },
|
||||
{ XML_NAMESPACE_TABLE, XML_DISPLAY_LIST, XML_TOK_CONTENT_VALIDATION_DISPLAY_LIST },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pContentValidationAttrTokenMap = new SvXMLTokenMap( aContentValidationAttrTokenMap );
|
||||
} // if( !pContentValidationAttrTokenMap )
|
||||
|
||||
return *pContentValidationAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetContentValidationMessageElemTokenMap()
|
||||
{
|
||||
if( !pContentValidationMessageElemTokenMap )
|
||||
@ -575,58 +512,6 @@ const SvXMLTokenMap& ScXMLImport::GetContentValidationMessageElemTokenMap()
|
||||
return *pContentValidationMessageElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetContentValidationHelpMessageAttrTokenMap()
|
||||
{
|
||||
if( !pContentValidationHelpMessageAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aContentValidationHelpMessageAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_TITLE, XML_TOK_HELP_MESSAGE_ATTR_TITLE },
|
||||
{ XML_NAMESPACE_TABLE, XML_DISPLAY, XML_TOK_HELP_MESSAGE_ATTR_DISPLAY },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pContentValidationHelpMessageAttrTokenMap = new SvXMLTokenMap( aContentValidationHelpMessageAttrTokenMap );
|
||||
} // if( !pContentValidationHelpMessageAttrTokenMap )
|
||||
|
||||
return *pContentValidationHelpMessageAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetContentValidationErrorMessageAttrTokenMap()
|
||||
{
|
||||
if( !pContentValidationErrorMessageAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aContentValidationErrorMessageAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_TITLE, XML_TOK_ERROR_MESSAGE_ATTR_TITLE },
|
||||
{ XML_NAMESPACE_TABLE, XML_DISPLAY, XML_TOK_ERROR_MESSAGE_ATTR_DISPLAY },
|
||||
{ XML_NAMESPACE_TABLE, XML_MESSAGE_TYPE, XML_TOK_ERROR_MESSAGE_ATTR_MESSAGE_TYPE },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pContentValidationErrorMessageAttrTokenMap = new SvXMLTokenMap( aContentValidationErrorMessageAttrTokenMap );
|
||||
} // if( !pContentValidationErrorMessageAttrTokenMap )
|
||||
|
||||
return *pContentValidationErrorMessageAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetContentValidationErrorMacroAttrTokenMap()
|
||||
{
|
||||
if( !pContentValidationErrorMacroAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aContentValidationErrorMacroAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_NAME, XML_TOK_ERROR_MACRO_ATTR_NAME },
|
||||
{ XML_NAMESPACE_TABLE, XML_EXECUTE, XML_TOK_ERROR_MACRO_ATTR_EXECUTE },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pContentValidationErrorMacroAttrTokenMap = new SvXMLTokenMap( aContentValidationErrorMacroAttrTokenMap );
|
||||
} // if( !pContentValidationErrorMacroAttrTokenMap )
|
||||
|
||||
return *pContentValidationErrorMacroAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetCondFormatsTokenMap()
|
||||
{
|
||||
if( !pCondFormatsTokenMap )
|
||||
@ -822,40 +707,6 @@ const SvXMLTokenMap& ScXMLImport::GetDataBarEntryAttrMap()
|
||||
return *pFormattingEntryAttrMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetLabelRangesElemTokenMap()
|
||||
{
|
||||
if( !pLabelRangesElemTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aLabelRangesElemTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_LABEL_RANGE, XML_TOK_LABEL_RANGE_ELEM },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pLabelRangesElemTokenMap = new SvXMLTokenMap( aLabelRangesElemTokenMap );
|
||||
} // if( !pLabelRangesElemTokenMap )
|
||||
|
||||
return *pLabelRangesElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetLabelRangeAttrTokenMap()
|
||||
{
|
||||
if( !pLabelRangeAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aLabelRangeAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_LABEL_CELL_RANGE_ADDRESS, XML_TOK_LABEL_RANGE_ATTR_LABEL_RANGE },
|
||||
{ XML_NAMESPACE_TABLE, XML_DATA_CELL_RANGE_ADDRESS, XML_TOK_LABEL_RANGE_ATTR_DATA_RANGE },
|
||||
{ XML_NAMESPACE_TABLE, XML_ORIENTATION, XML_TOK_LABEL_RANGE_ATTR_ORIENTATION },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pLabelRangeAttrTokenMap = new SvXMLTokenMap( aLabelRangeAttrTokenMap );
|
||||
} // if( !pLabelRangeAttrTokenMap )
|
||||
|
||||
return *pLabelRangeAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetTableElemTokenMap()
|
||||
{
|
||||
if( !pTableElemTokenMap )
|
||||
@ -890,30 +741,6 @@ const SvXMLTokenMap& ScXMLImport::GetTableElemTokenMap()
|
||||
return *pTableElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetTableProtectionAttrTokenMap()
|
||||
{
|
||||
if (!pTableProtectionElemTokenMap)
|
||||
{
|
||||
static const SvXMLTokenMapEntry aTableProtectionTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_SELECT_PROTECTED_CELLS, XML_TOK_TABLE_SELECT_PROTECTED_CELLS },
|
||||
{ XML_NAMESPACE_TABLE, XML_SELECT_UNPROTECTED_CELLS, XML_TOK_TABLE_SELECT_UNPROTECTED_CELLS },
|
||||
{ XML_NAMESPACE_OFFICE_EXT, XML_SELECT_PROTECTED_CELLS, XML_TOK_TABLE_SELECT_PROTECTED_CELLS_EXT },
|
||||
{ XML_NAMESPACE_LO_EXT, XML_SELECT_PROTECTED_CELLS, XML_TOK_TABLE_SELECT_PROTECTED_CELLS_EXT },
|
||||
{ XML_NAMESPACE_OFFICE_EXT, XML_SELECT_UNPROTECTED_CELLS, XML_TOK_TABLE_SELECT_UNPROTECTED_CELLS_EXT },
|
||||
{ XML_NAMESPACE_LO_EXT, XML_SELECT_UNPROTECTED_CELLS, XML_TOK_TABLE_SELECT_UNPROTECTED_CELLS_EXT },
|
||||
{ XML_NAMESPACE_LO_EXT, XML_INSERT_COLUMNS, XML_TOK_TABLE_INSERT_COLUMNS_EXT, },
|
||||
{ XML_NAMESPACE_LO_EXT, XML_INSERT_ROWS, XML_TOK_TABLE_INSERT_ROWS_EXT, },
|
||||
{ XML_NAMESPACE_LO_EXT, XML_DELETE_COLUMNS, XML_TOK_TABLE_DELETE_COLUMNS_EXT, },
|
||||
{ XML_NAMESPACE_LO_EXT, XML_DELETE_ROWS, XML_TOK_TABLE_DELETE_ROWS_EXT, },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
pTableProtectionElemTokenMap = new SvXMLTokenMap(aTableProtectionTokenMap);
|
||||
}
|
||||
|
||||
return *pTableProtectionElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetTableRowsElemTokenMap()
|
||||
{
|
||||
if( !pTableRowsElemTokenMap )
|
||||
@ -933,92 +760,6 @@ const SvXMLTokenMap& ScXMLImport::GetTableRowsElemTokenMap()
|
||||
return *pTableRowsElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetTableColsElemTokenMap()
|
||||
{
|
||||
if( !pTableColsElemTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aTableColsElemTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_TABLE_COLUMN_GROUP, XML_TOK_TABLE_COLS_COL_GROUP },
|
||||
{ XML_NAMESPACE_TABLE, XML_TABLE_HEADER_COLUMNS, XML_TOK_TABLE_COLS_HEADER_COLS },
|
||||
{ XML_NAMESPACE_TABLE, XML_TABLE_COLUMNS, XML_TOK_TABLE_COLS_COLS },
|
||||
{ XML_NAMESPACE_TABLE, XML_TABLE_COLUMN, XML_TOK_TABLE_COLS_COL },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pTableColsElemTokenMap = new SvXMLTokenMap( aTableColsElemTokenMap );
|
||||
} // if( !pTableColsElemTokenMap )
|
||||
|
||||
return *pTableColsElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetTableAttrTokenMap()
|
||||
{
|
||||
if( !pTableAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aTableAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_NAME, XML_TOK_TABLE_NAME },
|
||||
{ XML_NAMESPACE_TABLE, XML_STYLE_NAME, XML_TOK_TABLE_STYLE_NAME },
|
||||
{ XML_NAMESPACE_TABLE, XML_PROTECTED, XML_TOK_TABLE_PROTECTED },
|
||||
{ XML_NAMESPACE_TABLE, XML_PRINT_RANGES, XML_TOK_TABLE_PRINT_RANGES },
|
||||
{ XML_NAMESPACE_TABLE, XML_PROTECTION_KEY, XML_TOK_TABLE_PASSWORD },
|
||||
{ XML_NAMESPACE_TABLE, XML_PROTECTION_KEY_DIGEST_ALGORITHM, XML_TOK_TABLE_PASSHASH },
|
||||
{ XML_NAMESPACE_TABLE, XML_PROTECTION_KEY_DIGEST_ALGORITHM_2, XML_TOK_TABLE_PASSHASH_2 },
|
||||
{ XML_NAMESPACE_LO_EXT, XML_PROTECTION_KEY_DIGEST_ALGORITHM_2, XML_TOK_TABLE_PASSHASH_2 },
|
||||
{ XML_NAMESPACE_TABLE, XML_PRINT, XML_TOK_TABLE_PRINT },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pTableAttrTokenMap = new SvXMLTokenMap( aTableAttrTokenMap );
|
||||
} // if( !pTableAttrTokenMap )
|
||||
|
||||
return *pTableAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetTableScenarioAttrTokenMap()
|
||||
{
|
||||
if( !pTableScenarioAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aTableScenarioAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_DISPLAY_BORDER, XML_TOK_TABLE_SCENARIO_ATTR_DISPLAY_BORDER },
|
||||
{ XML_NAMESPACE_TABLE, XML_BORDER_COLOR, XML_TOK_TABLE_SCENARIO_ATTR_BORDER_COLOR },
|
||||
{ XML_NAMESPACE_TABLE, XML_COPY_BACK, XML_TOK_TABLE_SCENARIO_ATTR_COPY_BACK },
|
||||
{ XML_NAMESPACE_TABLE, XML_COPY_STYLES, XML_TOK_TABLE_SCENARIO_ATTR_COPY_STYLES },
|
||||
{ XML_NAMESPACE_TABLE, XML_COPY_FORMULAS, XML_TOK_TABLE_SCENARIO_ATTR_COPY_FORMULAS },
|
||||
{ XML_NAMESPACE_TABLE, XML_IS_ACTIVE, XML_TOK_TABLE_SCENARIO_ATTR_IS_ACTIVE },
|
||||
{ XML_NAMESPACE_TABLE, XML_SCENARIO_RANGES, XML_TOK_TABLE_SCENARIO_ATTR_SCENARIO_RANGES },
|
||||
{ XML_NAMESPACE_TABLE, XML_COMMENT, XML_TOK_TABLE_SCENARIO_ATTR_COMMENT },
|
||||
{ XML_NAMESPACE_TABLE, XML_PROTECTED, XML_TOK_TABLE_SCENARIO_ATTR_PROTECTED },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pTableScenarioAttrTokenMap = new SvXMLTokenMap( aTableScenarioAttrTokenMap );
|
||||
} // if( !pTableScenarioAttrTokenMap )
|
||||
|
||||
return *pTableScenarioAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetTableColAttrTokenMap()
|
||||
{
|
||||
if( !pTableColAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aTableColAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_STYLE_NAME, XML_TOK_TABLE_COL_ATTR_STYLE_NAME },
|
||||
{ XML_NAMESPACE_TABLE, XML_NUMBER_COLUMNS_REPEATED, XML_TOK_TABLE_COL_ATTR_REPEATED },
|
||||
{ XML_NAMESPACE_TABLE, XML_VISIBILITY, XML_TOK_TABLE_COL_ATTR_VISIBILITY },
|
||||
{ XML_NAMESPACE_TABLE, XML_DEFAULT_CELL_STYLE_NAME, XML_TOK_TABLE_COL_ATTR_DEFAULT_CELL_STYLE_NAME },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pTableColAttrTokenMap = new SvXMLTokenMap( aTableColAttrTokenMap );
|
||||
} // if( !pTableColAttrTokenMap )
|
||||
|
||||
return *pTableColAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetTableRowElemTokenMap()
|
||||
{
|
||||
if( !pTableRowElemTokenMap )
|
||||
@ -1172,122 +913,6 @@ const SvXMLTokenMap& ScXMLImport::GetTableCellRangeSourceAttrTokenMap()
|
||||
return *pTableCellRangeSourceAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetNamedExpressionsElemTokenMap()
|
||||
{
|
||||
if( !pNamedExpressionsElemTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aNamedExpressionsTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_NAMED_RANGE, XML_TOK_NAMED_EXPRESSIONS_NAMED_RANGE },
|
||||
{ XML_NAMESPACE_TABLE, XML_NAMED_EXPRESSION, XML_TOK_NAMED_EXPRESSIONS_NAMED_EXPRESSION },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pNamedExpressionsElemTokenMap = new SvXMLTokenMap( aNamedExpressionsTokenMap );
|
||||
} // if( !pNamedExpressionsElemTokenMap )
|
||||
|
||||
return *pNamedExpressionsElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetNamedRangeAttrTokenMap()
|
||||
{
|
||||
if( !pNamedRangeAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aNamedRangeAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_NAME, XML_TOK_NAMED_RANGE_ATTR_NAME },
|
||||
{ XML_NAMESPACE_TABLE, XML_CELL_RANGE_ADDRESS, XML_TOK_NAMED_RANGE_ATTR_CELL_RANGE_ADDRESS },
|
||||
{ XML_NAMESPACE_TABLE, XML_BASE_CELL_ADDRESS, XML_TOK_NAMED_RANGE_ATTR_BASE_CELL_ADDRESS },
|
||||
{ XML_NAMESPACE_TABLE, XML_RANGE_USABLE_AS, XML_TOK_NAMED_RANGE_ATTR_RANGE_USABLE_AS },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pNamedRangeAttrTokenMap = new SvXMLTokenMap( aNamedRangeAttrTokenMap );
|
||||
} // if( !pNamedRangeAttrTokenMap )
|
||||
|
||||
return *pNamedRangeAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetNamedExpressionAttrTokenMap()
|
||||
{
|
||||
if( !pNamedExpressionAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aNamedExpressionAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_NAME, XML_TOK_NAMED_EXPRESSION_ATTR_NAME },
|
||||
{ XML_NAMESPACE_TABLE, XML_BASE_CELL_ADDRESS, XML_TOK_NAMED_EXPRESSION_ATTR_BASE_CELL_ADDRESS },
|
||||
{ XML_NAMESPACE_TABLE, XML_EXPRESSION, XML_TOK_NAMED_EXPRESSION_ATTR_EXPRESSION },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pNamedExpressionAttrTokenMap = new SvXMLTokenMap( aNamedExpressionAttrTokenMap );
|
||||
} // if( !pNamedExpressionAttrTokenMap )
|
||||
|
||||
return *pNamedExpressionAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetDatabaseRangesElemTokenMap()
|
||||
{
|
||||
if( !pDatabaseRangesElemTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aDatabaseRangesTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_DATABASE_RANGE, XML_TOK_DATABASE_RANGE },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pDatabaseRangesElemTokenMap = new SvXMLTokenMap( aDatabaseRangesTokenMap );
|
||||
} // if( !pDatabaseRangesElemTokenMap )
|
||||
|
||||
return *pDatabaseRangesElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetDatabaseRangeElemTokenMap()
|
||||
{
|
||||
if( !pDatabaseRangeElemTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aDatabaseRangeTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_DATABASE_SOURCE_SQL, XML_TOK_DATABASE_RANGE_SOURCE_SQL },
|
||||
{ XML_NAMESPACE_TABLE, XML_DATABASE_SOURCE_TABLE, XML_TOK_DATABASE_RANGE_SOURCE_TABLE },
|
||||
{ XML_NAMESPACE_TABLE, XML_DATABASE_SOURCE_QUERY, XML_TOK_DATABASE_RANGE_SOURCE_QUERY },
|
||||
{ XML_NAMESPACE_TABLE, XML_FILTER, XML_TOK_FILTER },
|
||||
{ XML_NAMESPACE_TABLE, XML_SORT, XML_TOK_SORT },
|
||||
{ XML_NAMESPACE_TABLE, XML_SUBTOTAL_RULES, XML_TOK_DATABASE_RANGE_SUBTOTAL_RULES },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pDatabaseRangeElemTokenMap = new SvXMLTokenMap( aDatabaseRangeTokenMap );
|
||||
} // if( !pDatabaseRangeElemTokenMap )
|
||||
|
||||
return *pDatabaseRangeElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetDatabaseRangeAttrTokenMap()
|
||||
{
|
||||
if( !pDatabaseRangeAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aDatabaseRangeAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_NAME, XML_TOK_DATABASE_RANGE_ATTR_NAME },
|
||||
{ XML_NAMESPACE_TABLE, XML_IS_SELECTION, XML_TOK_DATABASE_RANGE_ATTR_IS_SELECTION },
|
||||
{ XML_NAMESPACE_TABLE, XML_ON_UPDATE_KEEP_STYLES, XML_TOK_DATABASE_RANGE_ATTR_ON_UPDATE_KEEP_STYLES },
|
||||
{ XML_NAMESPACE_TABLE, XML_ON_UPDATE_KEEP_SIZE, XML_TOK_DATABASE_RANGE_ATTR_ON_UPDATE_KEEP_SIZE },
|
||||
{ XML_NAMESPACE_TABLE, XML_HAS_PERSISTENT_DATA, XML_TOK_DATABASE_RANGE_ATTR_HAS_PERSISTENT_DATA },
|
||||
{ XML_NAMESPACE_TABLE, XML_ORIENTATION, XML_TOK_DATABASE_RANGE_ATTR_ORIENTATION },
|
||||
{ XML_NAMESPACE_TABLE, XML_CONTAINS_HEADER, XML_TOK_DATABASE_RANGE_ATTR_CONTAINS_HEADER },
|
||||
{ XML_NAMESPACE_TABLE, XML_DISPLAY_FILTER_BUTTONS, XML_TOK_DATABASE_RANGE_ATTR_DISPLAY_FILTER_BUTTONS },
|
||||
{ XML_NAMESPACE_TABLE, XML_TARGET_RANGE_ADDRESS, XML_TOK_DATABASE_RANGE_ATTR_TARGET_RANGE_ADDRESS },
|
||||
{ XML_NAMESPACE_TABLE, XML_REFRESH_DELAY, XML_TOK_DATABASE_RANGE_ATTR_REFRESH_DELAY },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pDatabaseRangeAttrTokenMap = new SvXMLTokenMap( aDatabaseRangeAttrTokenMap );
|
||||
} // if( !pDatabaseRangeAttrTokenMap )
|
||||
|
||||
return *pDatabaseRangeAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetDatabaseRangeSourceSQLAttrTokenMap()
|
||||
{
|
||||
if( !pDatabaseRangeSourceSQLAttrTokenMap )
|
||||
@ -1452,29 +1077,6 @@ const SvXMLTokenMap& ScXMLImport::GetSortElemTokenMap()
|
||||
return *pSortElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetSortAttrTokenMap()
|
||||
{
|
||||
if( !pSortAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aSortAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_BIND_STYLES_TO_CONTENT, XML_TOK_SORT_ATTR_BIND_STYLES_TO_CONTENT },
|
||||
{ XML_NAMESPACE_TABLE, XML_TARGET_RANGE_ADDRESS, XML_TOK_SORT_ATTR_TARGET_RANGE_ADDRESS },
|
||||
{ XML_NAMESPACE_TABLE, XML_CASE_SENSITIVE, XML_TOK_SORT_ATTR_CASE_SENSITIVE },
|
||||
{ XML_NAMESPACE_TABLE, XML_RFC_LANGUAGE_TAG, XML_TOK_SORT_ATTR_RFC_LANGUAGE_TAG },
|
||||
{ XML_NAMESPACE_TABLE, XML_LANGUAGE, XML_TOK_SORT_ATTR_LANGUAGE },
|
||||
{ XML_NAMESPACE_TABLE, XML_SCRIPT, XML_TOK_SORT_ATTR_SCRIPT },
|
||||
{ XML_NAMESPACE_TABLE, XML_COUNTRY, XML_TOK_SORT_ATTR_COUNTRY },
|
||||
{ XML_NAMESPACE_TABLE, XML_ALGORITHM, XML_TOK_SORT_ATTR_ALGORITHM },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pSortAttrTokenMap = new SvXMLTokenMap( aSortAttrTokenMap );
|
||||
} // if( !pSortAttrTokenMap )
|
||||
|
||||
return *pSortAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetSortSortByAttrTokenMap()
|
||||
{
|
||||
if( !pSortSortByAttrTokenMap )
|
||||
@ -1493,107 +1095,6 @@ const SvXMLTokenMap& ScXMLImport::GetSortSortByAttrTokenMap()
|
||||
return *pSortSortByAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetDatabaseRangeSubTotalRulesElemTokenMap()
|
||||
{
|
||||
if( !pDatabaseRangeSubTotalRulesElemTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aDatabaseRangeSubTotalRulesTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_SORT_GROUPS, XML_TOK_SUBTOTAL_RULES_SORT_GROUPS },
|
||||
{ XML_NAMESPACE_TABLE, XML_SUBTOTAL_RULE, XML_TOK_SUBTOTAL_RULES_SUBTOTAL_RULE },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pDatabaseRangeSubTotalRulesElemTokenMap = new SvXMLTokenMap( aDatabaseRangeSubTotalRulesTokenMap );
|
||||
} // if( !pDatabaseRangeSubTotalRulesElemTokenMap )
|
||||
|
||||
return *pDatabaseRangeSubTotalRulesElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetDatabaseRangeSubTotalRulesAttrTokenMap()
|
||||
{
|
||||
if( !pDatabaseRangeSubTotalRulesAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aDatabaseRangeSubTotalRulesAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_BIND_STYLES_TO_CONTENT, XML_TOK_SUBTOTAL_RULES_ATTR_BIND_STYLES_TO_CONTENT },
|
||||
{ XML_NAMESPACE_TABLE, XML_CASE_SENSITIVE, XML_TOK_SUBTOTAL_RULES_ATTR_CASE_SENSITIVE },
|
||||
{ XML_NAMESPACE_TABLE, XML_PAGE_BREAKS_ON_GROUP_CHANGE, XML_TOK_SUBTOTAL_RULES_ATTR_PAGE_BREAKS_ON_GROUP_CHANGE },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pDatabaseRangeSubTotalRulesAttrTokenMap = new SvXMLTokenMap( aDatabaseRangeSubTotalRulesAttrTokenMap );
|
||||
} // if( !pDatabaseRangeSubTotalRulesAttrTokenMap )
|
||||
|
||||
return *pDatabaseRangeSubTotalRulesAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetSubTotalRulesSortGroupsAttrTokenMap()
|
||||
{
|
||||
if( !pSubTotalRulesSortGroupsAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aSubTotalRulesSortGroupsAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_DATA_TYPE, XML_TOK_SORT_GROUPS_ATTR_DATA_TYPE },
|
||||
{ XML_NAMESPACE_TABLE, XML_ORDER, XML_TOK_SORT_GROUPS_ATTR_ORDER },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pSubTotalRulesSortGroupsAttrTokenMap = new SvXMLTokenMap( aSubTotalRulesSortGroupsAttrTokenMap );
|
||||
} // if( !pSubTotalRulesSortGroupsAttrTokenMap )
|
||||
|
||||
return *pSubTotalRulesSortGroupsAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetSubTotalRulesSubTotalRuleElemTokenMap()
|
||||
{
|
||||
if( !pSubTotalRulesSubTotalRuleElemTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aSubTotalRulesSubTotalRuleTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_SUBTOTAL_FIELD, XML_TOK_SUBTOTAL_RULE_SUBTOTAL_FIELD },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pSubTotalRulesSubTotalRuleElemTokenMap = new SvXMLTokenMap( aSubTotalRulesSubTotalRuleTokenMap );
|
||||
} // if( !pSubTotalRulesSubTotalRuleElemTokenMap )
|
||||
|
||||
return *pSubTotalRulesSubTotalRuleElemTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetSubTotalRulesSubTotalRuleAttrTokenMap()
|
||||
{
|
||||
if( !pSubTotalRulesSubTotalRuleAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aSubTotalRulesSubTotalRuleAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_GROUP_BY_FIELD_NUMBER, XML_TOK_SUBTOTAL_RULE_ATTR_GROUP_BY_FIELD_NUMBER },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pSubTotalRulesSubTotalRuleAttrTokenMap = new SvXMLTokenMap( aSubTotalRulesSubTotalRuleAttrTokenMap );
|
||||
} // if( !pSubTotalRulesSubTotalRuleAttrTokenMap )
|
||||
|
||||
return *pSubTotalRulesSubTotalRuleAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetSubTotalRuleSubTotalFieldAttrTokenMap()
|
||||
{
|
||||
if( !pSubTotalRuleSubTotalFieldAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aSubTotalRuleSubTotalFieldAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_FIELD_NUMBER, XML_TOK_SUBTOTAL_FIELD_ATTR_FIELD_NUMBER },
|
||||
{ XML_NAMESPACE_TABLE, XML_FUNCTION, XML_TOK_SUBTOTAL_FIELD_ATTR_FUNCTION },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pSubTotalRuleSubTotalFieldAttrTokenMap = new SvXMLTokenMap( aSubTotalRuleSubTotalFieldAttrTokenMap );
|
||||
} // if( !pSubTotalRuleSubTotalFieldAttrTokenMap )
|
||||
|
||||
return *pSubTotalRuleSubTotalFieldAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetDataPilotTablesElemTokenMap()
|
||||
{
|
||||
if( !pDataPilotTablesElemTokenMap )
|
||||
@ -1879,26 +1380,6 @@ const SvXMLTokenMap& ScXMLImport::GetDataPilotMemberAttrTokenMap()
|
||||
return *pDataPilotMemberAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetConsolidationAttrTokenMap()
|
||||
{
|
||||
if( !pConsolidationAttrTokenMap )
|
||||
{
|
||||
static const SvXMLTokenMapEntry aConsolidationAttrTokenMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_TABLE, XML_FUNCTION, XML_TOK_CONSOLIDATION_ATTR_FUNCTION },
|
||||
{ XML_NAMESPACE_TABLE, XML_SOURCE_CELL_RANGE_ADDRESSES, XML_TOK_CONSOLIDATION_ATTR_SOURCE_RANGES },
|
||||
{ XML_NAMESPACE_TABLE, XML_TARGET_CELL_ADDRESS, XML_TOK_CONSOLIDATION_ATTR_TARGET_ADDRESS },
|
||||
{ XML_NAMESPACE_TABLE, XML_USE_LABEL, XML_TOK_CONSOLIDATION_ATTR_USE_LABEL },
|
||||
{ XML_NAMESPACE_TABLE, XML_LINK_TO_SOURCE_DATA, XML_TOK_CONSOLIDATION_ATTR_LINK_TO_SOURCE },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
|
||||
pConsolidationAttrTokenMap = new SvXMLTokenMap( aConsolidationAttrTokenMap );
|
||||
} // if( !pConsolidationAttrTokenMap )
|
||||
|
||||
return *pConsolidationAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetCellTextParaElemTokenMap()
|
||||
{
|
||||
if (!pCellTextParaElemTokenMap)
|
||||
@ -1985,23 +1466,6 @@ const SvXMLTokenMap& ScXMLImport::GetCellTextSAttrTokenMap()
|
||||
return *pCellTextSAttrTokenMap;
|
||||
}
|
||||
|
||||
const SvXMLTokenMap& ScXMLImport::GetDataStreamAttrTokenMap()
|
||||
{
|
||||
if (!pDataStreamAttrTokenMap)
|
||||
{
|
||||
static const SvXMLTokenMapEntry aMap[] =
|
||||
{
|
||||
{ XML_NAMESPACE_XLINK, XML_HREF, XML_TOK_DATA_STREAM_ATTR_URL },
|
||||
{ XML_NAMESPACE_TABLE, XML_TARGET_RANGE_ADDRESS, XML_TOK_DATA_STREAM_ATTR_RANGE },
|
||||
{ XML_NAMESPACE_CALC_EXT, XML_EMPTY_LINE_REFRESH, XML_TOK_DATA_STREAM_ATTR_EMPTY_LINE_REFRESH },
|
||||
{ XML_NAMESPACE_CALC_EXT, XML_INSERTION_POSITION, XML_TOK_DATA_STREAM_ATTR_INSERTION_POSITION },
|
||||
XML_TOKEN_MAP_END
|
||||
};
|
||||
pDataStreamAttrTokenMap = new SvXMLTokenMap(aMap);
|
||||
}
|
||||
return *pDataStreamAttrTokenMap;
|
||||
}
|
||||
|
||||
void ScXMLImport::SetPostProcessData( sc::ImportPostProcessData* p )
|
||||
{
|
||||
mpPostProcessData = p;
|
||||
|
@ -1006,14 +1006,8 @@ public:
|
||||
const rtl::Reference < XMLPropertySetMapper >& GetTableStylesPropertySetMapper() const { return xTableStylesPropertySetMapper; }
|
||||
|
||||
const SvXMLTokenMap& GetDocElemTokenMap();
|
||||
const SvXMLTokenMap& GetBodyElemTokenMap();
|
||||
const SvXMLTokenMap& GetContentValidationsElemTokenMap();
|
||||
const SvXMLTokenMap& GetContentValidationElemTokenMap();
|
||||
const SvXMLTokenMap& GetContentValidationAttrTokenMap();
|
||||
const SvXMLTokenMap& GetContentValidationMessageElemTokenMap();
|
||||
const SvXMLTokenMap& GetContentValidationHelpMessageAttrTokenMap();
|
||||
const SvXMLTokenMap& GetContentValidationErrorMessageAttrTokenMap();
|
||||
const SvXMLTokenMap& GetContentValidationErrorMacroAttrTokenMap();
|
||||
const SvXMLTokenMap& GetCondFormatsTokenMap();
|
||||
const SvXMLTokenMap& GetCondFormatTokenMap();
|
||||
const SvXMLTokenMap& GetCondFormatAttrMap();
|
||||
@ -1025,15 +1019,8 @@ public:
|
||||
const SvXMLTokenMap& GetDataBarAttrMap();
|
||||
const SvXMLTokenMap& GetDataBarEntryAttrMap();
|
||||
const SvXMLTokenMap& GetIconSetAttrMap();
|
||||
const SvXMLTokenMap& GetLabelRangesElemTokenMap();
|
||||
const SvXMLTokenMap& GetLabelRangeAttrTokenMap();
|
||||
const SvXMLTokenMap& GetTableElemTokenMap();
|
||||
const SvXMLTokenMap& GetTableProtectionAttrTokenMap();
|
||||
const SvXMLTokenMap& GetTableRowsElemTokenMap();
|
||||
const SvXMLTokenMap& GetTableColsElemTokenMap();
|
||||
const SvXMLTokenMap& GetTableAttrTokenMap();
|
||||
const SvXMLTokenMap& GetTableScenarioAttrTokenMap();
|
||||
const SvXMLTokenMap& GetTableColAttrTokenMap();
|
||||
const SvXMLTokenMap& GetTableRowElemTokenMap();
|
||||
const SvXMLTokenMap& GetTableRowAttrTokenMap();
|
||||
const SvXMLTokenMap& GetTableRowCellElemTokenMap();
|
||||
@ -1043,12 +1030,6 @@ public:
|
||||
const SvXMLTokenMap& GetDetectiveHighlightedAttrTokenMap();
|
||||
const SvXMLTokenMap& GetDetectiveOperationAttrTokenMap();
|
||||
const SvXMLTokenMap& GetTableCellRangeSourceAttrTokenMap();
|
||||
const SvXMLTokenMap& GetNamedExpressionsElemTokenMap();
|
||||
const SvXMLTokenMap& GetNamedRangeAttrTokenMap();
|
||||
const SvXMLTokenMap& GetNamedExpressionAttrTokenMap();
|
||||
const SvXMLTokenMap& GetDatabaseRangesElemTokenMap();
|
||||
const SvXMLTokenMap& GetDatabaseRangeElemTokenMap();
|
||||
const SvXMLTokenMap& GetDatabaseRangeAttrTokenMap();
|
||||
const SvXMLTokenMap& GetDatabaseRangeSourceSQLAttrTokenMap();
|
||||
const SvXMLTokenMap& GetDatabaseRangeSourceTableAttrTokenMap();
|
||||
const SvXMLTokenMap& GetDatabaseRangeSourceQueryAttrTokenMap();
|
||||
@ -1058,14 +1039,7 @@ public:
|
||||
const SvXMLTokenMap& GetFilterConditionAttrTokenMap();
|
||||
const SvXMLTokenMap& GetFilterSetItemAttrTokenMap();
|
||||
const SvXMLTokenMap& GetSortElemTokenMap();
|
||||
const SvXMLTokenMap& GetSortAttrTokenMap();
|
||||
const SvXMLTokenMap& GetSortSortByAttrTokenMap();
|
||||
const SvXMLTokenMap& GetDatabaseRangeSubTotalRulesElemTokenMap();
|
||||
const SvXMLTokenMap& GetDatabaseRangeSubTotalRulesAttrTokenMap();
|
||||
const SvXMLTokenMap& GetSubTotalRulesSortGroupsAttrTokenMap();
|
||||
const SvXMLTokenMap& GetSubTotalRulesSubTotalRuleElemTokenMap();
|
||||
const SvXMLTokenMap& GetSubTotalRulesSubTotalRuleAttrTokenMap();
|
||||
const SvXMLTokenMap& GetSubTotalRuleSubTotalFieldAttrTokenMap();
|
||||
const SvXMLTokenMap& GetDataPilotTablesElemTokenMap();
|
||||
const SvXMLTokenMap& GetDataPilotTableAttrTokenMap();
|
||||
const SvXMLTokenMap& GetDataPilotTableElemTokenMap();
|
||||
@ -1081,13 +1055,11 @@ public:
|
||||
const SvXMLTokenMap& GetDataPilotSubTotalAttrTokenMap();
|
||||
const SvXMLTokenMap& GetDataPilotMembersElemTokenMap();
|
||||
const SvXMLTokenMap& GetDataPilotMemberAttrTokenMap();
|
||||
const SvXMLTokenMap& GetConsolidationAttrTokenMap();
|
||||
const SvXMLTokenMap& GetCellTextParaElemTokenMap();
|
||||
const SvXMLTokenMap& GetCellTextSpanElemTokenMap();
|
||||
const SvXMLTokenMap& GetCellTextSpanAttrTokenMap();
|
||||
const SvXMLTokenMap& GetCellTextURLAttrTokenMap();
|
||||
const SvXMLTokenMap& GetCellTextSAttrTokenMap();
|
||||
const SvXMLTokenMap& GetDataStreamAttrTokenMap();
|
||||
|
||||
void SetPostProcessData( sc::ImportPostProcessData* p );
|
||||
sc::ImportPostProcessData* GetPostProcessData() { return mpPostProcessData;}
|
||||
|
@ -251,7 +251,6 @@ class ScGridWindow : public vcl::Window, public DropTargetHelper, public DragSou
|
||||
bool DrawHasMarkedObj();
|
||||
void DrawEndAction();
|
||||
void DrawMarkDropObj( SdrObject* pObj );
|
||||
SdrObject* GetEditObject();
|
||||
bool IsMyModel(SdrEditView* pSdrView);
|
||||
|
||||
void DrawRedraw( ScOutputData& rOutputData, SdrLayerID nLayer );
|
||||
|
@ -308,19 +308,6 @@ void ScGridWindow::CreateAnchorHandle(SdrHdlList& rHdl, const ScAddress& rAddres
|
||||
}
|
||||
}
|
||||
|
||||
SdrObject* ScGridWindow::GetEditObject()
|
||||
{
|
||||
ScDrawView* pDrView = pViewData->GetView()->GetScDrawView();
|
||||
if (pDrView)
|
||||
{
|
||||
OutlinerView* pOlView = pDrView->GetTextEditOutlinerView();
|
||||
if (pOlView && pOlView->GetWindow() == this)
|
||||
return pDrView->GetTextEditObject();
|
||||
}
|
||||
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
void ScGridWindow::UpdateStatusPosSize()
|
||||
{
|
||||
ScDrawView* pDrView = pViewData->GetView()->GetScDrawView();
|
||||
|
@ -215,15 +215,6 @@ NavigatorDragType SdNavigatorWin::GetNavigatorDragType()
|
||||
return eDT;
|
||||
}
|
||||
|
||||
//Get SdDrawDocShell
|
||||
sd::DrawDocShell* SdNavigatorWin::GetDrawDocShell( const SdDrawDocument* pDoc )
|
||||
{
|
||||
if( !pDoc )
|
||||
return nullptr; // const as const can...
|
||||
sd::DrawDocShell* pDocShell = pDoc->GetDocSh();
|
||||
return pDocShell;
|
||||
}
|
||||
|
||||
IMPL_LINK_NOARG(SdNavigatorWin, SelectToolboxHdl, ToolBox *, void)
|
||||
{
|
||||
sal_uInt16 nId = maToolbox->GetCurItemId();
|
||||
|
@ -861,111 +861,6 @@ bool DrawDocShell::GotoBookmark(const OUString& rBookmark)
|
||||
return bFound;
|
||||
}
|
||||
|
||||
// If object is marked return true else return false.
|
||||
bool DrawDocShell::IsMarked( SdrObject* pObject )
|
||||
{
|
||||
bool bisMarked =false;
|
||||
|
||||
if (mpViewShell && dynamic_cast< const DrawViewShell *>( mpViewShell ) != nullptr)
|
||||
{
|
||||
DrawViewShell* pDrViewSh = static_cast<DrawViewShell*>( mpViewShell );
|
||||
if (pObject )
|
||||
{
|
||||
bisMarked = pDrViewSh->GetView()->IsObjMarked(pObject);
|
||||
}
|
||||
}
|
||||
return bisMarked;
|
||||
}
|
||||
|
||||
// If object is marked return true else return false. Optionally realize multi-selection of objects.
|
||||
bool DrawDocShell::GetObjectIsmarked(const OUString& rBookmark, bool bRealizeMultiSelectionOfObjects /* = false */)
|
||||
{
|
||||
bool bUnMark = false;
|
||||
bool bFound = false;
|
||||
|
||||
if (mpViewShell && dynamic_cast< const DrawViewShell *>( mpViewShell ) != nullptr)
|
||||
{
|
||||
DrawViewShell* pDrViewSh = static_cast<DrawViewShell*>( mpViewShell );
|
||||
|
||||
OUString aBookmark( rBookmark );
|
||||
|
||||
if( rBookmark.startsWith("#") )
|
||||
aBookmark = rBookmark.copy( 1 );
|
||||
|
||||
// Is the bookmark a page ?
|
||||
bool bIsMasterPage;
|
||||
sal_uInt16 nPgNum = mpDoc->GetPageByName( aBookmark, bIsMasterPage );
|
||||
SdrObject* pObj = nullptr;
|
||||
|
||||
if (nPgNum == SDRPAGE_NOTFOUND)
|
||||
{
|
||||
// Is the bookmark an object ?
|
||||
pObj = mpDoc->GetObj(aBookmark);
|
||||
|
||||
if (pObj)
|
||||
{
|
||||
nPgNum = pObj->GetPage()->GetPageNum();
|
||||
}
|
||||
}
|
||||
|
||||
if (nPgNum != SDRPAGE_NOTFOUND)
|
||||
{
|
||||
/********************
|
||||
* Skip to the page *
|
||||
********************/
|
||||
bFound = true;
|
||||
SdPage* pPage = static_cast<SdPage*>( mpDoc->GetPage(nPgNum) );
|
||||
|
||||
PageKind eNewPageKind = pPage->GetPageKind();
|
||||
|
||||
if (eNewPageKind != pDrViewSh->GetPageKind())
|
||||
{
|
||||
// change workspace
|
||||
GetFrameView()->SetPageKind(eNewPageKind);
|
||||
( ( mpViewShell && mpViewShell->GetViewFrame() ) ?
|
||||
mpViewShell->GetViewFrame() : SfxViewFrame::Current() )->
|
||||
GetDispatcher()->Execute( SID_VIEWSHELL0, SfxCallMode::SYNCHRON | SfxCallMode::RECORD );
|
||||
|
||||
// The current ViewShell changed
|
||||
pDrViewSh = static_cast<DrawViewShell*>( mpViewShell );
|
||||
}
|
||||
|
||||
setEditMode(pDrViewSh, bIsMasterPage);
|
||||
|
||||
// Jump to the page. This is done by using the API because this
|
||||
// takes care of all the little things to be done. Especially
|
||||
// writing the view data to the frame view (see bug #107803#).
|
||||
SdUnoDrawView* pUnoDrawView = new SdUnoDrawView (
|
||||
*pDrViewSh,
|
||||
*pDrViewSh->GetView());
|
||||
css::uno::Reference<css::drawing::XDrawPage> xDrawPage( pPage->getUnoPage(), css::uno::UNO_QUERY);
|
||||
pUnoDrawView->setCurrentPage (xDrawPage);
|
||||
delete pUnoDrawView;
|
||||
|
||||
if (pObj)
|
||||
{
|
||||
// Show and select object
|
||||
pDrViewSh->MakeVisible(pObj->GetLogicRect(),
|
||||
*pDrViewSh->GetActiveWindow());
|
||||
bUnMark = pDrViewSh->GetView()->IsObjMarked(pObj);
|
||||
if (bRealizeMultiSelectionOfObjects)
|
||||
{
|
||||
pDrViewSh->GetView()->MarkObj(pObj, pDrViewSh->GetView()->GetSdrPageView(), bUnMark);
|
||||
}
|
||||
}
|
||||
}
|
||||
if (bRealizeMultiSelectionOfObjects)
|
||||
{
|
||||
SfxBindings& rBindings = ( ( mpViewShell && mpViewShell->GetViewFrame() ) ?
|
||||
mpViewShell->GetViewFrame() : SfxViewFrame::Current() )->GetBindings();
|
||||
rBindings.Invalidate(SID_NAVIGATOR_STATE, true);
|
||||
rBindings.Invalidate(SID_NAVIGATOR_PAGENAME);
|
||||
}
|
||||
}
|
||||
|
||||
return bRealizeMultiSelectionOfObjects ? bFound : bUnMark;
|
||||
}
|
||||
|
||||
/**
|
||||
* If it should become a document template.
|
||||
*/
|
||||
|
@ -131,9 +131,6 @@ public:
|
||||
|
||||
bool GotoBookmark(const OUString& rBookmark);
|
||||
|
||||
bool IsMarked( SdrObject* pObject );
|
||||
// Optionally realize multi-selection of objects
|
||||
bool GetObjectIsmarked(const OUString& rBookmark, bool bRealizeMultiSelectionOfObjects);
|
||||
Bitmap GetPagePreviewBitmap(SdPage* pPage);
|
||||
|
||||
/** checks, if the given name is a valid new name for a slide
|
||||
|
@ -142,7 +142,6 @@ private:
|
||||
|
||||
public:
|
||||
//when object is marked , fresh the corresponding entry tree .
|
||||
static sd::DrawDocShell* GetDrawDocShell(const SdDrawDocument*);
|
||||
void FreshTree ( const SdDrawDocument* pDoc );
|
||||
void FreshEntry( );
|
||||
};
|
||||
|
@ -343,15 +343,9 @@ void SfxApplication::SetViewFrame_Impl( SfxViewFrame *pFrame )
|
||||
pFrame->GetViewShell()->SetCurrentDocument();
|
||||
}
|
||||
|
||||
std::locale* SfxApplication::GetSfxResLocale()
|
||||
{
|
||||
return SfxResLocale::GetResLocale();
|
||||
}
|
||||
|
||||
void SfxApplication::SetProgress_Impl
|
||||
(
|
||||
SfxProgress *pProgress
|
||||
|
||||
)
|
||||
{
|
||||
DBG_ASSERT( ( !pImpl->pProgress && pProgress ) ||
|
||||
|
@ -681,11 +681,6 @@ void SfxChildWindow::SetFrame( const css::uno::Reference< css::frame::XFrame > &
|
||||
}
|
||||
}
|
||||
|
||||
bool SfxChildWindow::CanGetFocus() const
|
||||
{
|
||||
return !(pImpl->pFact->aInfo.nFlags & SfxChildWindowFlags::CANTGETFOCUS);
|
||||
}
|
||||
|
||||
void SfxChildWindowContext::RegisterChildWindowContext(SfxModule* pMod, sal_uInt16 nId, SfxChildWinContextFactory* pFact)
|
||||
{
|
||||
SfxGetpApp()->RegisterChildWindowContext_Impl( pMod, nId, pFact );
|
||||
|
@ -100,11 +100,6 @@ void SfxFrameArr_Impl::push_back( SfxFrame* p )
|
||||
maData.push_back(p);
|
||||
}
|
||||
|
||||
size_t SfxFrameArr_Impl::size() const
|
||||
{
|
||||
return maData.size();
|
||||
}
|
||||
|
||||
bool SfxFrameArr_Impl::empty() const
|
||||
{
|
||||
return maData.empty();
|
||||
|
@ -166,11 +166,6 @@ void SvxCharView::Paint(vcl::RenderContext& rRenderContext, const ::tools::Recta
|
||||
rRenderContext.SetFont(aOrigFont);
|
||||
}
|
||||
|
||||
void SvxCharView::setInsertCharHdl(const Link<SvxCharView*,void> &rLink)
|
||||
{
|
||||
maInsertCharHdl = rLink;
|
||||
}
|
||||
|
||||
void SvxCharView::setMouseClickHdl(const Link<SvxCharView*,void> &rLink)
|
||||
{
|
||||
maMouseClickHdl = rLink;
|
||||
|
@ -75,7 +75,6 @@ public:
|
||||
SfxFrame* operator[] ( size_t i );
|
||||
|
||||
void push_back( SfxFrame* p );
|
||||
size_t size() const;
|
||||
bool empty() const;
|
||||
};
|
||||
|
||||
|
@ -91,8 +91,6 @@ public:
|
||||
SmMathConfig * GetConfig();
|
||||
SmSymbolManager & GetSymbolManager();
|
||||
|
||||
SmLocalizedSymbolData & GetLocSymbolData();
|
||||
|
||||
static void GetState(SfxItemSet&);
|
||||
|
||||
const SvtSysLocale& GetSysLocale();
|
||||
|
@ -189,13 +189,6 @@ SmSymbolManager & SmModule::GetSymbolManager()
|
||||
return GetConfig()->GetSymbolManager();
|
||||
}
|
||||
|
||||
SmLocalizedSymbolData & SmModule::GetLocSymbolData()
|
||||
{
|
||||
if (!mpLocSymbolData)
|
||||
mpLocSymbolData.reset(new SmLocalizedSymbolData);
|
||||
return *mpLocSymbolData;
|
||||
}
|
||||
|
||||
const SvtSysLocale& SmModule::GetSysLocale()
|
||||
{
|
||||
if( !mpSysLocale )
|
||||
|
@ -25,17 +25,6 @@
|
||||
#include "fieldunit.hrc"
|
||||
#include "numberingtype.hrc"
|
||||
|
||||
SvxStringArray::SvxStringArray(const char **pResId, size_t nLength)
|
||||
{
|
||||
for (size_t i = 0; i < nLength; ++i)
|
||||
m_aTranslations.push_back(SvxResId(pResId[i]));
|
||||
}
|
||||
|
||||
const OUString SvxStringArray::GetString(sal_uInt32 nPos) const
|
||||
{
|
||||
return m_aTranslations[nPos];
|
||||
}
|
||||
|
||||
sal_uInt32 SvxFieldUnitTable::Count()
|
||||
{
|
||||
return SAL_N_ELEMENTS(RID_SVXSTR_FIELDUNIT_TABLE);
|
||||
@ -67,13 +56,6 @@ sal_uInt32 SvxAttrNameTable::Count()
|
||||
return SAL_N_ELEMENTS(RID_ATTR_NAMES);
|
||||
}
|
||||
|
||||
sal_uInt16 SvxAttrNameTable::GetValue(sal_uInt32 nPos)
|
||||
{
|
||||
if (RESARRAY_INDEX_NOTFOUND != nPos && nPos < Count())
|
||||
return RID_ATTR_NAMES[nPos].second;
|
||||
return 0;
|
||||
}
|
||||
|
||||
sal_uInt32 SvxAttrNameTable::FindIndex(int nValue)
|
||||
{
|
||||
for (size_t i = 0; i < SAL_N_ELEMENTS(RID_ATTR_NAMES); ++i)
|
||||
|
@ -1169,11 +1169,6 @@ const SfxItemSet& SdrTableObj::GetActiveCellItemSet() const
|
||||
return getActiveCell()->GetItemSet();
|
||||
}
|
||||
|
||||
void SdrTableObj::SetMergedItemSetAndBroadcastOnActiveCell(const SfxItemSet& rSet)
|
||||
{
|
||||
return getActiveCell()->SetMergedItemSetAndBroadcast(rSet, false/*bClearAllItems*/);
|
||||
}
|
||||
|
||||
void SdrTableObj::setTableStyle( const Reference< XIndexAccess >& xTableStyle )
|
||||
{
|
||||
if( mpImpl.is() && (mpImpl->mxTableStyle != xTableStyle) )
|
||||
|
@ -113,7 +113,6 @@ class SwInterHyphInfo
|
||||
{
|
||||
css::uno::Reference< css::linguistic2::XHyphenatedWord > xHyphWord;
|
||||
const Point aCursorPos;
|
||||
bool bCheck : 1;
|
||||
public:
|
||||
sal_Int32 nStart;
|
||||
sal_Int32 nEnd;
|
||||
@ -122,7 +121,6 @@ public:
|
||||
|
||||
SwInterHyphInfo( const Point &rCursorPos )
|
||||
: aCursorPos(rCursorPos)
|
||||
, bCheck(false)
|
||||
, nStart(0)
|
||||
, nEnd(SAL_MAX_INT32)
|
||||
, nWordStart(0), nWordLen(0)
|
||||
@ -136,8 +134,6 @@ public:
|
||||
{
|
||||
return aCursorPos.X() || aCursorPos.Y() ? &aCursorPos : nullptr;
|
||||
}
|
||||
bool IsCheck() const { return bCheck; }
|
||||
void SetCheck( const bool bNew ) { bCheck = bNew; }
|
||||
void SetHyphWord(const css::uno::Reference< css::linguistic2::XHyphenatedWord > &rxHW)
|
||||
{
|
||||
xHyphWord = rxHW;
|
||||
|
@ -241,7 +241,6 @@ bool SwTextFormatter::Hyphenate( SwInterHyphInfo &rHyphInf )
|
||||
rHyphInf.SetHyphWord( xHyphWord );
|
||||
rHyphInf.nWordStart = nWrdStart;
|
||||
rHyphInf.nWordLen = nLen;
|
||||
rHyphInf.SetCheck( true );
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -161,10 +161,6 @@ class SvxCSS1MapEntry
|
||||
SvxCSS1PropertyInfo aPropInfo;
|
||||
|
||||
public:
|
||||
SvxCSS1MapEntry( SfxItemPool& rPool, const sal_uInt16 *pWhichMap ) :
|
||||
aItemSet( rPool, pWhichMap )
|
||||
{}
|
||||
|
||||
SvxCSS1MapEntry( const SfxItemSet& rItemSet,
|
||||
const SvxCSS1PropertyInfo& rProp );
|
||||
|
||||
|
@ -64,33 +64,6 @@ void* UniqueIndexImpl::Get( Index nIndex ) const
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
UniqueIndexImpl::Index UniqueIndexImpl::FirstIndex() const
|
||||
{
|
||||
if ( maMap.empty() )
|
||||
return IndexNotFound;
|
||||
|
||||
return maMap.begin()->first;
|
||||
}
|
||||
|
||||
UniqueIndexImpl::Index UniqueIndexImpl::LastIndex() const
|
||||
{
|
||||
if ( maMap.empty() )
|
||||
return IndexNotFound;
|
||||
|
||||
return maMap.rbegin()->first;
|
||||
}
|
||||
|
||||
UniqueIndexImpl::Index UniqueIndexImpl::NextIndex(Index aIndex) const
|
||||
{
|
||||
std::map<Index, void*>::const_iterator it = maMap.find( aIndex );
|
||||
if ( it == maMap.end() )
|
||||
return IndexNotFound;
|
||||
++it;
|
||||
if ( it == maMap.end() )
|
||||
return IndexNotFound;
|
||||
return it->first;
|
||||
}
|
||||
|
||||
UniqueIndexImpl::Index UniqueIndexImpl::GetIndexOf(void const * p) const
|
||||
{
|
||||
for( std::map<Index, void*>::const_iterator it = maMap.begin(); it != maMap.end(); ++it )
|
||||
|
@ -99,17 +99,6 @@ struct PrintFontInfo : public FastPrintFontInfo
|
||||
{}
|
||||
};
|
||||
|
||||
// the values are per thousand of the font size
|
||||
// note: width, height contain advances, not bounding box
|
||||
struct CharacterMetric
|
||||
{
|
||||
short int width, height;
|
||||
|
||||
CharacterMetric() : width( 0 ), height( 0 ) {}
|
||||
bool operator!=( const CharacterMetric& rOther ) const
|
||||
{ return rOther.width != width || rOther.height != height; }
|
||||
};
|
||||
|
||||
// a class to manage printable fonts
|
||||
|
||||
class VCL_PLUGIN_PUBLIC PrintFontManager
|
||||
@ -247,13 +236,6 @@ public:
|
||||
return pFont ? pFont->m_eWeight : WEIGHT_DONTKNOW;
|
||||
}
|
||||
|
||||
// get a specific fonts encoding
|
||||
rtl_TextEncoding getFontEncoding( fontID nFontID ) const
|
||||
{
|
||||
PrintFont* pFont = getFont( nFontID );
|
||||
return pFont ? pFont->m_aEncoding : RTL_TEXTENCODING_DONTKNOW;
|
||||
}
|
||||
|
||||
// get a specific fonts system dependent filename
|
||||
OString getFontFileSysPath( fontID nFontID ) const
|
||||
{
|
||||
|
@ -86,7 +86,6 @@ public: // for usage in PrinterGfx
|
||||
sal_uInt16 GetPostscriptLevel (const JobData *pJobData = nullptr) const;
|
||||
bool IsColorPrinter () const;
|
||||
|
||||
osl::File* GetCurrentPageHeader ();
|
||||
osl::File* GetCurrentPageBody ();
|
||||
|
||||
const OUString& GetPrinterName() const { return m_aLastJobData.m_aPrinterName; }
|
||||
|
@ -197,10 +197,6 @@ public:
|
||||
long ImplGetWidth() const { return maTwoRect.mnDestWidth; }
|
||||
long ImplGetHeight() const { return maTwoRect.mnDestHeight; }
|
||||
long ImplGetDepth() const { return mnDepth; }
|
||||
sal_uIntPtr ImplGetMemSize() const
|
||||
{
|
||||
return( ( maTwoRect.mnDestWidth * maTwoRect.mnDestHeight * mnDepth ) >> 3 );
|
||||
}
|
||||
const SalX11Screen& ImplGetScreen() const { return mnXScreen; }
|
||||
|
||||
bool ImplMatches( SalX11Screen nXScreen, long nDepth, const SalTwoRect& rTwoRect ) const;
|
||||
|
@ -198,7 +198,6 @@ public:
|
||||
bool IsSysChildWindow() const { return bool(nStyle_ & SalFrameStyleFlags::SYSTEMCHILD); }
|
||||
bool IsFloatGrabWindow() const;
|
||||
SalI18N_InputContext* getInputContext() const { return mpInputContext; }
|
||||
bool isMapped() const { return bMapped_; }
|
||||
bool hasFocus() const { return mbInputFocus; }
|
||||
|
||||
void beginUnicodeSequence();
|
||||
|
@ -155,12 +155,6 @@ PrinterJob::IsColorPrinter () const
|
||||
return bColor;
|
||||
}
|
||||
|
||||
osl::File*
|
||||
PrinterJob::GetCurrentPageHeader ()
|
||||
{
|
||||
return maHeaderList.back();
|
||||
}
|
||||
|
||||
osl::File*
|
||||
PrinterJob::GetCurrentPageBody ()
|
||||
{
|
||||
|
@ -18,6 +18,5 @@
|
||||
*/
|
||||
|
||||
OUString GetParaStyleCondExternal( OUString const &);
|
||||
OUString GetParaStyleCondInternal( OUString const &);
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
@ -2007,16 +2007,6 @@ const OUString SvXMLImport::getNamespacePrefixFromToken( sal_Int32 nToken )
|
||||
return OUString();
|
||||
}
|
||||
|
||||
const OUString SvXMLImport::getNamespaceURIFromToken( sal_Int32 nToken )
|
||||
{
|
||||
sal_Int32 nNamespaceToken = ( nToken & NMSP_MASK ) >> NMSP_SHIFT;
|
||||
auto aIter( aNamespaceMap.find( nNamespaceToken ) );
|
||||
if( aIter != aNamespaceMap.end() )
|
||||
return (*aIter).second.second;
|
||||
else
|
||||
return OUString();
|
||||
}
|
||||
|
||||
void SvXMLImport::initializeNamespaceMaps()
|
||||
{
|
||||
auto mapTokenToNamespace = [&]( sal_Int32 nToken, sal_Int32 nPrefix, sal_Int32 nNamespace )
|
||||
|
@ -3335,17 +3335,6 @@ namespace xmloff { namespace token {
|
||||
return rString.equalsAsciiL( pToken->pChar, pToken->nLength );
|
||||
}
|
||||
|
||||
bool IsXMLToken(
|
||||
const char* pCString,
|
||||
enum XMLTokenEnum eToken )
|
||||
{
|
||||
assert(XML_TOKEN_INVALID < eToken);
|
||||
assert(eToken < XML_TOKEN_END);
|
||||
|
||||
const XMLTokenEntry* pToken = &aTokenList[(sal_uInt16)eToken];
|
||||
return !strcmp( pCString, pToken->pChar );
|
||||
}
|
||||
|
||||
bool IsXMLToken(
|
||||
const sax_fastparser::FastAttributeList::FastAttributeIter& aIter,
|
||||
enum XMLTokenEnum eToken )
|
||||
|
@ -84,42 +84,4 @@ OUString GetParaStyleCondExternal( OUString const &internal)
|
||||
return OUString();
|
||||
}
|
||||
|
||||
OUString GetParaStyleCondInternal( OUString const &external)
|
||||
{
|
||||
sal_Int32 paren = external.indexOf('(');
|
||||
|
||||
if( paren > 0 && external[paren + 1] == ')' )
|
||||
{
|
||||
OUString stub( external.getStr(), paren );
|
||||
int numval = -1;
|
||||
unsigned i;
|
||||
|
||||
if(external.getLength() > paren + 2)
|
||||
{
|
||||
if(external[paren + 2] == '=')
|
||||
{
|
||||
OUString num( external.getStr() + 3 );
|
||||
|
||||
numval = num.toInt32();
|
||||
}
|
||||
else
|
||||
{
|
||||
return OUString();
|
||||
}
|
||||
}
|
||||
|
||||
for(i = 0; i < CONDITION_COUNT; ++i)
|
||||
{
|
||||
if( aConditionMap[i].aValue == numval &&
|
||||
stub == GetXMLToken( aConditionMap[i].nExternal ) )
|
||||
{
|
||||
return OUString( aConditionMap[i].aInternal,
|
||||
strlen( aConditionMap[i].aInternal ),
|
||||
RTL_TEXTENCODING_ASCII_US );
|
||||
}
|
||||
}
|
||||
}
|
||||
return OUString();
|
||||
}
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
@ -54,20 +54,6 @@ bool isSpace(char c) {
|
||||
|
||||
}
|
||||
|
||||
XmlReader::XmlReader(char const *sStr, size_t nLength)
|
||||
: fileUrl_("stream")
|
||||
, fileHandle_(nullptr)
|
||||
, fileSize_(0)
|
||||
, fileAddress_(nullptr)
|
||||
{
|
||||
namespaceIris_.push_back(Span("http://www.w3.org/XML/1998/namespace"));
|
||||
namespaces_.push_back(NamespaceData(Span("xml"), NAMESPACE_XML));
|
||||
pos_ = sStr;
|
||||
end_ = pos_ + nLength;
|
||||
state_ = State::Content;
|
||||
firstAttribute_ = true;
|
||||
}
|
||||
|
||||
XmlReader::XmlReader(OUString const & fileUrl)
|
||||
: fileUrl_(fileUrl)
|
||||
, fileHandle_(nullptr)
|
||||
|
@ -49,27 +49,6 @@ namespace embed {
|
||||
class XStorage; }
|
||||
}}}
|
||||
|
||||
struct XMLSignatureCreationResult
|
||||
{
|
||||
css::xml::crypto::SecurityOperationStatus nSignatureCreationResult;
|
||||
|
||||
XMLSignatureCreationResult( css::xml::crypto::SecurityOperationStatus nResult )
|
||||
{
|
||||
nSignatureCreationResult = nResult;
|
||||
}
|
||||
};
|
||||
|
||||
struct XMLSignatureVerifyResult
|
||||
{
|
||||
css::xml::crypto::SecurityOperationStatus nSignatureVerifyResult;
|
||||
|
||||
XMLSignatureVerifyResult( css::xml::crypto::SecurityOperationStatus nResult )
|
||||
{
|
||||
nSignatureVerifyResult = nResult;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
/**********************************************************
|
||||
XMLSignatureHelper
|
||||
|
||||
@ -89,10 +68,6 @@ private:
|
||||
css::uno::Reference< css::uno::XComponentContext > mxCtx;
|
||||
css::uno::Reference< css::xml::crypto::XUriBinding > mxUriBinding;
|
||||
|
||||
std::vector<XMLSignatureCreationResult>
|
||||
maCreationResults;
|
||||
std::vector<XMLSignatureVerifyResult>
|
||||
maVerifyResults;
|
||||
rtl::Reference<XSecController> mpXSecController;
|
||||
bool mbError;
|
||||
bool mbODFPre1_2;
|
||||
@ -105,8 +80,6 @@ public:
|
||||
XMLSignatureHelper(const css::uno::Reference< css::uno::XComponentContext >& mrCtx );
|
||||
~XMLSignatureHelper();
|
||||
|
||||
void SignatureCreationResultListener(XMLSignatureCreationResult& rResult);
|
||||
void SignatureVerifyResultListener(XMLSignatureVerifyResult& rResult);
|
||||
void StartVerifySignatureElement();
|
||||
|
||||
// Set the storage which should be used by the default UriBinding
|
||||
|
@ -292,20 +292,6 @@ SignatureInformations XMLSignatureHelper::GetSignatureInformations() const
|
||||
return mpXSecController->getSignatureInformations();
|
||||
}
|
||||
|
||||
void XMLSignatureHelper::SignatureCreationResultListener(XMLSignatureCreationResult& rResult)
|
||||
{
|
||||
maCreationResults.insert( maCreationResults.begin() + maCreationResults.size(), rResult );
|
||||
if ( rResult.nSignatureCreationResult != css::xml::crypto::SecurityOperationStatus_OPERATION_SUCCEEDED )
|
||||
mbError = true;
|
||||
}
|
||||
|
||||
void XMLSignatureHelper::SignatureVerifyResultListener(XMLSignatureVerifyResult& rResult)
|
||||
{
|
||||
maVerifyResults.insert( maVerifyResults.begin() + maVerifyResults.size(), rResult );
|
||||
if ( rResult.nSignatureVerifyResult != css::xml::crypto::SecurityOperationStatus_OPERATION_SUCCEEDED )
|
||||
mbError = true;
|
||||
}
|
||||
|
||||
void XMLSignatureHelper::StartVerifySignatureElement()
|
||||
{
|
||||
if ( !maStartVerifySignatureHdl.IsSet() || maStartVerifySignatureHdl.Call(nullptr) )
|
||||
|
Loading…
x
Reference in New Issue
Block a user