Kaydet (Commit) 25106908 authored tarafından Caolán McNamara's avatar Caolán McNamara

callcatcher: update unused code

Change-Id: I954a5dd88cb9ae9a2a36509507385e68b88f8cd5
üst 8610d063
...@@ -86,7 +86,6 @@ $(eval $(call gb_Library_add_exception_objects,comphelper,\ ...@@ -86,7 +86,6 @@ $(eval $(call gb_Library_add_exception_objects,comphelper,\
comphelper/source/misc/evtlistenerhlp \ comphelper/source/misc/evtlistenerhlp \
comphelper/source/misc/evtmethodhelper \ comphelper/source/misc/evtmethodhelper \
comphelper/source/misc/expandmacro \ comphelper/source/misc/expandmacro \
comphelper/source/misc/ihwrapnofilter \
comphelper/source/misc/instancelocker \ comphelper/source/misc/instancelocker \
comphelper/source/misc/interaction \ comphelper/source/misc/interaction \
comphelper/source/misc/listenernotification \ comphelper/source/misc/listenernotification \
......
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include "comphelper/ihwrapnofilter.hxx"
#include <cppuhelper/supportsservice.hxx>
#include <com/sun/star/document/NoSuchFilterRequest.hpp>
namespace comphelper
{
using namespace ::com::sun::star;
OIHWrapNoFilterDialog::OIHWrapNoFilterDialog( uno::Reference< task::XInteractionHandler > xInteraction )
:m_xInter( xInteraction )
{
}
OIHWrapNoFilterDialog::~OIHWrapNoFilterDialog()
{
}
uno::Sequence< OUString > SAL_CALL OIHWrapNoFilterDialog::impl_staticGetSupportedServiceNames()
{
uno::Sequence< OUString > aRet(1);
aRet[0] = "com.sun.star.task.InteractionHandlerWrapper";
return aRet;
}
OUString SAL_CALL OIHWrapNoFilterDialog::impl_staticGetImplementationName()
{
return OUString("com.sun.star.comp.task.InteractionHandlerWrapper");
}
// XInteractionHandler
void SAL_CALL OIHWrapNoFilterDialog::handle( const uno::Reference< task::XInteractionRequest >& xRequest)
throw( com::sun::star::uno::RuntimeException, std::exception )
{
if( !m_xInter.is() )
return;
uno::Any aRequest = xRequest->getRequest();
document::NoSuchFilterRequest aNoSuchFilterRequest;
if ( aRequest >>= aNoSuchFilterRequest )
return;
else
m_xInter->handle( xRequest );
}
// XInteractionHandler2
sal_Bool SAL_CALL OIHWrapNoFilterDialog::handleInteractionRequest( const uno::Reference< task::XInteractionRequest >& xRequest)
throw( com::sun::star::uno::RuntimeException, std::exception )
{
if( !m_xInter.is() )
return sal_False;
uno::Any aRequest = xRequest->getRequest();
document::NoSuchFilterRequest aNoSuchFilterRequest;
if ( aRequest >>= aNoSuchFilterRequest )
return sal_False;
else
{
m_xInter->handle( xRequest );
return sal_True;
}
}
// XServiceInfo
OUString SAL_CALL OIHWrapNoFilterDialog::getImplementationName()
throw ( uno::RuntimeException, std::exception )
{
return impl_staticGetImplementationName();
}
sal_Bool SAL_CALL OIHWrapNoFilterDialog::supportsService( const OUString& ServiceName )
throw ( uno::RuntimeException, std::exception )
{
return cppu::supportsService(this, ServiceName);
}
uno::Sequence< OUString > SAL_CALL OIHWrapNoFilterDialog::getSupportedServiceNames()
throw ( uno::RuntimeException, std::exception )
{
return impl_staticGetSupportedServiceNames();
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_COMPHELPER_IHWRAPNOFILTER_HXX
#define INCLUDED_COMPHELPER_IHWRAPNOFILTER_HXX
#include <com/sun/star/task/XInteractionHandler2.hpp>
#include <com/sun/star/task/XInteractionHandler.hpp>
#include <com/sun/star/task/XInteractionRequest.hpp>
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <cppuhelper/implbase2.hxx>
#include <comphelper/comphelperdllapi.h>
namespace comphelper {
class COMPHELPER_DLLPUBLIC OIHWrapNoFilterDialog : public ::cppu::WeakImplHelper2
< ::com::sun::star::task::XInteractionHandler2
, ::com::sun::star::lang::XServiceInfo >
{
com::sun::star::uno::Reference< com::sun::star::task::XInteractionHandler > m_xInter;
public:
OIHWrapNoFilterDialog( com::sun::star::uno::Reference< com::sun::star::task::XInteractionHandler > xInteraction );
virtual ~OIHWrapNoFilterDialog();
static OUString SAL_CALL impl_staticGetImplementationName();
static ::com::sun::star::uno::Sequence< OUString > SAL_CALL impl_staticGetSupportedServiceNames();
// XInteractionHandler
virtual void SAL_CALL handle( const com::sun::star::uno::Reference< com::sun::star::task::XInteractionRequest >& xRequest)
throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XInteractionHandler2
virtual sal_Bool SAL_CALL handleInteractionRequest( const com::sun::star::uno::Reference< com::sun::star::task::XInteractionRequest >& xRequest)
throw( com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName()
throw ( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName )
throw ( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames()
throw ( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
};
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -441,7 +441,6 @@ $(eval $(call gb_Library_add_exception_objects,sc,\ ...@@ -441,7 +441,6 @@ $(eval $(call gb_Library_add_exception_objects,sc,\
sc/source/ui/drawfunc/fudraw \ sc/source/ui/drawfunc/fudraw \
sc/source/ui/drawfunc/fuins1 \ sc/source/ui/drawfunc/fuins1 \
sc/source/ui/drawfunc/fuins2 \ sc/source/ui/drawfunc/fuins2 \
sc/source/ui/drawfunc/fumark \
sc/source/ui/drawfunc/fupoor \ sc/source/ui/drawfunc/fupoor \
sc/source/ui/drawfunc/fusel \ sc/source/ui/drawfunc/fusel \
sc/source/ui/drawfunc/fusel2 \ sc/source/ui/drawfunc/fusel2 \
......
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sfx2/dispatch.hxx>
#include <sfx2/viewfrm.hxx>
#include "fumark.hxx"
#include "sc.hrc"
#include "tabvwsh.hxx"
#include "scmod.hxx"
#include "reffact.hxx"
#include "document.hxx"
#include "scresid.hxx"
#include "drawview.hxx"
#include "markdata.hxx"
/*************************************************************************
|*
|* Funktion zum Aufziehen eines Rechtecks
|*
\************************************************************************/
FuMarkRect::FuMarkRect(ScTabViewShell* pViewSh, Window* pWin, ScDrawView* pViewP,
SdrModel* pDoc, SfxRequest& rReq) :
FuPoor(pViewSh, pWin, pViewP, pDoc, rReq),
bVisible(false),
bStartDrag(false)
{
}
/*************************************************************************
|*
|* Destruktor
|*
\************************************************************************/
FuMarkRect::~FuMarkRect()
{
}
/*************************************************************************
|*
|* MouseButtonDown-event
|*
\************************************************************************/
bool FuMarkRect::MouseButtonDown(const MouseEvent& rMEvt)
{
// remember button state for creation of own MouseEvents
SetMouseButtonCode(rMEvt.GetButtons());
pWindow->CaptureMouse();
pView->UnmarkAll(); // der Einheitlichkeit halber und wegen #50558#
bStartDrag = true;
aBeginPos = pWindow->PixelToLogic( rMEvt.GetPosPixel() );
aZoomRect = Rectangle( aBeginPos, Size() );
return true;
}
/*************************************************************************
|*
|* MouseMove-event
|*
\************************************************************************/
bool FuMarkRect::MouseMove(const MouseEvent& rMEvt)
{
if ( bStartDrag )
{
if ( bVisible )
pViewShell->DrawMarkRect(aZoomRect);
Point aPixPos= rMEvt.GetPosPixel();
ForceScroll(aPixPos);
Point aEndPos = pWindow->PixelToLogic(aPixPos);
Rectangle aRect(aBeginPos, aEndPos);
aZoomRect = aRect;
aZoomRect.Justify();
pViewShell->DrawMarkRect(aZoomRect);
bVisible = true;
}
ForcePointer(&rMEvt);
return bStartDrag;
}
/*************************************************************************
|*
|* MouseButtonUp-event
|*
\************************************************************************/
bool FuMarkRect::MouseButtonUp(const MouseEvent& rMEvt)
{
// remember button state for creation of own MouseEvents
SetMouseButtonCode(rMEvt.GetButtons());
if ( bVisible )
{
// Hide ZoomRect
pViewShell->DrawMarkRect(aZoomRect);
bVisible = false;
}
Size aZoomSizePixel = pWindow->LogicToPixel(aZoomRect).GetSize();
sal_uInt16 nMinMove = pView->GetMinMoveDistancePixel();
if ( aZoomSizePixel.Width() < nMinMove || aZoomSizePixel.Height() < nMinMove )
{
// Klick auf der Stelle
aZoomRect.SetSize(Size()); // dann ganz leer
}
bStartDrag = false;
pWindow->ReleaseMouse();
pViewShell->GetViewData()->GetDispatcher().
Execute(aSfxRequest.GetSlot(), SFX_CALLMODE_SYNCHRON | SFX_CALLMODE_RECORD);
// Daten an der View merken
pViewShell->SetChartArea( aSourceRange, aZoomRect );
// Chart-Dialog starten:
// sal_uInt16 nId = ScChartDlgWrapper::GetChildWindowId();
// SfxChildWindow* pWnd = pViewShell->GetViewFrame()->GetChildWindow( nId );
// SC_MOD()->SetRefDialog( nId, pWnd ? sal_False : sal_True );
return true;
}
/*************************************************************************
|*
|* Command-event
|*
\************************************************************************/
sal_uInt8 FuMarkRect::Command(const CommandEvent& rCEvt)
{
if ( COMMAND_STARTDRAG == rCEvt.GetCommand() )
{
// nicht anfangen, auf der Tabelle rumzudraggen,
// aber Maus-Status nicht zuruecksetzen
return SC_CMD_IGNORE;
}
else
return FuPoor::Command(rCEvt);
}
/*************************************************************************
|*
|* Tastaturereignisse bearbeiten
|*
|* Wird ein KeyEvent bearbeitet, so ist der Return-Wert sal_True, andernfalls
|* FALSE.
|*
\************************************************************************/
bool FuMarkRect::KeyInput(const KeyEvent& rKEvt)
{
bool bReturn = false;
switch ( rKEvt.GetKeyCode().GetCode() )
{
case KEY_ESCAPE:
// beenden
pViewShell->GetViewData()->GetDispatcher().
Execute(aSfxRequest.GetSlot(), SFX_CALLMODE_SLOT | SFX_CALLMODE_RECORD);
bReturn = true;
break;
}
if (!bReturn)
{
bReturn = FuPoor::KeyInput(rKEvt);
}
return bReturn;
}
/*************************************************************************
|*
|* Function aktivieren
|*
\************************************************************************/
void FuMarkRect::Activate()
{
FuPoor::Activate();
// Markierung merken, bevor evtl. Tabelle umgeschaltet wird
ScViewData* pViewData = pViewShell->GetViewData();
ScMarkData& rMark = pViewData->GetMarkData();
if ( !rMark.IsMultiMarked() && !rMark.IsMarked() )
pViewShell->MarkDataArea( true );
pViewData->GetMultiArea( aSourceRange ); // Mehrfachselektion erlaubt
// pViewShell->Unmark();
ForcePointer(NULL);
}
/*************************************************************************
|*
|* Function deaktivieren
|*
\************************************************************************/
void FuMarkRect::Deactivate()
{
FuPoor::Deactivate();
if (bVisible)
{
// Hide ZoomRect
pViewShell->DrawMarkRect(aZoomRect);
bVisible = false;
bStartDrag = false;
}
}
/*************************************************************************
|*
|* Maus-Pointer umschalten
|*
\************************************************************************/
void FuMarkRect::ForcePointer(const MouseEvent* /* pMEvt */)
{
pViewShell->SetActivePointer( Pointer( POINTER_CHART ) );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SC_SOURCE_UI_INC_FUMARK_HXX
#define INCLUDED_SC_SOURCE_UI_INC_FUMARK_HXX
#include "fupoor.hxx"
#include "rangelst.hxx"
/** Function for drawing a rectangle */
class FuMarkRect : public FuPoor
{
protected:
Point aBeginPos;
Rectangle aZoomRect;
bool bVisible;
bool bStartDrag;
ScRangeListRef aSourceRange;
public:
FuMarkRect(ScTabViewShell* pViewSh, Window* pWin, ScDrawView* pView,
SdrModel* pDoc, SfxRequest& rReq);
virtual ~FuMarkRect();
virtual bool KeyInput(const KeyEvent& rKEvt) SAL_OVERRIDE;
virtual void Activate() SAL_OVERRIDE;
virtual void Deactivate() SAL_OVERRIDE;
virtual void ForcePointer(const MouseEvent* pMEvt);
virtual bool MouseMove(const MouseEvent& rMEvt) SAL_OVERRIDE;
virtual bool MouseButtonUp(const MouseEvent& rMEvt) SAL_OVERRIDE;
virtual bool MouseButtonDown(const MouseEvent& rMEvt) SAL_OVERRIDE;
virtual sal_uInt8 Command(const CommandEvent& rCEvt) SAL_OVERRIDE;
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
...@@ -36,7 +36,6 @@ ...@@ -36,7 +36,6 @@
#include "fuconuno.hxx" #include "fuconuno.hxx"
#include "fusel.hxx" #include "fusel.hxx"
#include "futext.hxx" #include "futext.hxx"
#include "fumark.hxx"
#include "fuinsert.hxx" #include "fuinsert.hxx"
#include "global.hxx" #include "global.hxx"
#include "sc.hrc" #include "sc.hrc"
......
...@@ -9,6 +9,13 @@ DocxSdrExport::setFlyFrameGraphic(bool) ...@@ -9,6 +9,13 @@ DocxSdrExport::setFlyFrameGraphic(bool)
DocxSdrExport::setFrameBtLr(bool) DocxSdrExport::setFrameBtLr(bool)
EditEngine::IsIdleFormatterActive() const EditEngine::IsIdleFormatterActive() const
FPSCounter::getGPUTime() FPSCounter::getGPUTime()
FPSCounter::gpuAccumulationTimeclear()
FPSCounter::gpuTimeAccumulation()
FPSCounter::gpuTimeStampEnd()
FPSCounter::gpuTimeStampStart()
FPSCounter::loadFPSShader(ShaderProgram*)
FPSCounter::printFPS(glTF::glTFViewport*)
FPSCounter::timeStamp()
FillAttributes::FillAttributes() FillAttributes::FillAttributes()
FillAttributes::getFillGradientAttribute() const FillAttributes::getFillGradientAttribute() const
Font::LoadSystemFont(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, int) Font::LoadSystemFont(std::basic_string<char, std::char_traits<char>, std::allocator<char> >, int)
...@@ -26,7 +33,8 @@ MenuBar::GetMenuBarButtonRectPixel(unsigned short) ...@@ -26,7 +33,8 @@ MenuBar::GetMenuBarButtonRectPixel(unsigned short)
MenuBar::RemoveMenuBarButton(unsigned short) MenuBar::RemoveMenuBarButton(unsigned short)
MenuBar::SetMenuBarButtonHighlightHdl(unsigned short, Link const&) MenuBar::SetMenuBarButtonHighlightHdl(unsigned short, Link const&)
OpenGLContext::getOpenGLWindow() OpenGLContext::getOpenGLWindow()
OpenGLRender::CreateTextTexture(rtl::OUString&, Font, long, com::sun::star::awt::Point, com::sun::star::awt::Size, long) OpenGLContext::renderToFile()
OpenGLRender::CreateTextTexture(rtl::OUString const&, Font, long, com::sun::star::awt::Point, com::sun::star::awt::Size, long)
OutputDevice::GetCanvas() const OutputDevice::GetCanvas() const
OutputDevice::HasAlpha() OutputDevice::HasAlpha()
OutputDevice::LogicToLogic(basegfx::B2DPolyPolygon const&, MapMode const&, MapMode const&) OutputDevice::LogicToLogic(basegfx::B2DPolyPolygon const&, MapMode const&, MapMode const&)
...@@ -207,32 +215,19 @@ basegfx::tools::containsOnlyHorizontalAndVerticalEdges(basegfx::B2DPolyPolygon c ...@@ -207,32 +215,19 @@ basegfx::tools::containsOnlyHorizontalAndVerticalEdges(basegfx::B2DPolyPolygon c
canvas::createSurfaceProxyManager(boost::shared_ptr<canvas::IRenderModule> const&) canvas::createSurfaceProxyManager(boost::shared_ptr<canvas::IRenderModule> const&)
chart::ChartTypeUnoDlg::Create(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) chart::ChartTypeUnoDlg::Create(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&)
chart::ShapeToolbarController::create(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&) chart::ShapeToolbarController::create(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&)
chart::opengl3D::Line::Line(unsigned int) chart::opengl3D::Camera::zoom(unsigned int)
chart::opengl3D::OpenGL3DRenderer::AddExtrude3DObjectPoint(float, float, float) chart::opengl3D::Line::Line(chart::opengl3D::OpenGL3DRenderer*, unsigned int)
chart::opengl3D::OpenGL3DRenderer::AddPolygon3DObjectNormalPoint(float, float, float) chart::opengl3D::OpenGL3DRenderer::CreateBMPHeader(unsigned char*, int, int)
chart::opengl3D::OpenGL3DRenderer::AddPolygon3DObjectPoint(float, float, float)
chart::opengl3D::OpenGL3DRenderer::AddShape3DExtrudeObject(int, int, float, float, float)
chart::opengl3D::OpenGL3DRenderer::AddShapePolygon3DObject(int, bool, int, long, int)
chart::opengl3D::OpenGL3DRenderer::CreateActualRoundedCube(float, int, int, float, float, float)
chart::opengl3D::OpenGL3DRenderer::EndAddExtrude3DObjectPoint()
chart::opengl3D::OpenGL3DRenderer::EndAddPolygon3DObjectNormalPoint()
chart::opengl3D::OpenGL3DRenderer::EndAddPolygon3DObjectPoint()
chart::opengl3D::OpenGL3DRenderer::EndAddShape3DExtrudeObject()
chart::opengl3D::OpenGL3DRenderer::EndAddShapePolygon3DObject()
chart::opengl3D::OpenGL3DRenderer::GetTime() chart::opengl3D::OpenGL3DRenderer::GetTime()
chart::opengl3D::OpenGL3DRenderer::LoadShaders()
chart::opengl3D::OpenGL3DRenderer::OpenGL3DRenderer()
chart::opengl3D::OpenGL3DRenderer::ProcessPickingBox() chart::opengl3D::OpenGL3DRenderer::ProcessPickingBox()
chart::opengl3D::OpenGL3DRenderer::ProcessUnrenderedShape() chart::opengl3D::OpenGL3DRenderer::ProcessUnrenderedShape()
chart::opengl3D::OpenGL3DRenderer::RenderClickPos(Point) chart::opengl3D::OpenGL3DRenderer::RenderClickPos(Point)
chart::opengl3D::OpenGL3DRenderer::RenderFPS(float) chart::opengl3D::OpenGL3DRenderer::RenderFPS(float)
chart::opengl3D::OpenGL3DRenderer::Set3DSenceInfo(glm::detail::tvec3<float>, glm::detail::tmat4x4<float>, bool, int)
chart::opengl3D::OpenGL3DRenderer::SetClickPos(Point) chart::opengl3D::OpenGL3DRenderer::SetClickPos(Point)
chart::opengl3D::OpenGL3DRenderer::SetFPS(float) chart::opengl3D::OpenGL3DRenderer::SetFPS(float)
chart::opengl3D::OpenGL3DRenderer::SetLightInfo(bool, int, glm::detail::tvec4<float>)
chart::opengl3D::OpenGL3DRenderer::init() chart::opengl3D::OpenGL3DRenderer::init()
chart::opengl3D::Rectangle::Rectangle(unsigned int) chart::opengl3D::Rectangle::Rectangle(chart::opengl3D::OpenGL3DRenderer*, unsigned int)
chart::opengl3D::Text::Text(unsigned int) chart::opengl3D::Text::Text(chart::opengl3D::OpenGL3DRenderer*, unsigned int)
comphelper::detail::ConfigurationWrapper::getGroupReadWrite(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&) const comphelper::detail::ConfigurationWrapper::getGroupReadWrite(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&) const
comphelper::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString const&) const comphelper::detail::ConfigurationWrapper::getLocalizedPropertyValue(rtl::OUString const&) const
comphelper::detail::ConfigurationWrapper::setLocalizedPropertyValue(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&, com::sun::star::uno::Any const&) const comphelper::detail::ConfigurationWrapper::setLocalizedPropertyValue(boost::shared_ptr<comphelper::ConfigurationChanges> const&, rtl::OUString const&, com::sun::star::uno::Any const&) const
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment