diff options
-rw-r--r-- | toolkit/Library_tk.mk | 1 | ||||
-rw-r--r-- | toolkit/inc/layout/layout.hxx | 90 | ||||
-rw-r--r-- | toolkit/source/layout/vcl/wbutton.cxx | 9 | ||||
-rw-r--r-- | toolkit/source/layout/vcl/wcontainer.cxx | 134 | ||||
-rw-r--r-- | toolkit/source/layout/vcl/wfield.cxx | 98 | ||||
-rw-r--r-- | toolkit/source/layout/vcl/wrapper.cxx | 73 | ||||
-rw-r--r-- | toolkit/source/layout/vcl/wrapper.hxx | 3 | ||||
-rw-r--r-- | unusedcode.easy | 32 |
8 files changed, 0 insertions, 440 deletions
diff --git a/toolkit/Library_tk.mk b/toolkit/Library_tk.mk index ca599fef7f9f..7411f7dd95e5 100644 --- a/toolkit/Library_tk.mk +++ b/toolkit/Library_tk.mk @@ -157,7 +157,6 @@ $(eval $(call gb_Library_add_exception_objects,tk,\ toolkit/source/layout/core/translate \ toolkit/source/layout/core/vcl \ toolkit/source/layout/vcl/wbutton \ - toolkit/source/layout/vcl/wcontainer \ toolkit/source/layout/vcl/wfield \ toolkit/source/layout/vcl/wrapper \ )) diff --git a/toolkit/inc/layout/layout.hxx b/toolkit/inc/layout/layout.hxx index 986ae5f10e97..792316d2c43f 100644 --- a/toolkit/inc/layout/layout.hxx +++ b/toolkit/inc/layout/layout.hxx @@ -116,8 +116,6 @@ class TOOLKIT_DLLPUBLIC Window protected: friend class WindowImpl; WindowImpl *mpImpl; - static PeerHandle CreatePeer( Window *parent, WinBits nStyle, - char const* pName); virtual void setRes (ResId const& res); @@ -127,7 +125,6 @@ public: virtual ~Window(); PeerHandle GetPeer() const; - Context *getContext(); void Show( bool bVisible = true ); inline void Hide() { Show( false ); } @@ -223,7 +220,6 @@ class TOOLKIT_DLLPUBLIC Button : public Control { DECL_GET_IMPL( Button ); DECL_CONSTRUCTORS( Button, Control, 0 ); - DECL_GET_WINDOW (Button); public: ~Button (); @@ -237,14 +233,12 @@ class PushButtonImpl; class TOOLKIT_DLLPUBLIC PushButton : public Button { DECL_GET_IMPL( PushButton ); - DECL_GET_WINDOW (PushButton); protected: explicit PushButton( WindowImpl *pImpl ) : Button( pImpl ) {} public: ~PushButton (); - void Check( bool bCheck=true ); void SetToggleHdl( Link const& rLink ); }; @@ -285,38 +279,12 @@ class TOOLKIT_DLLPUBLIC Edit : public Control { DECL_GET_IMPL( Edit ); DECL_CONSTRUCTORS( Edit, Control, WB_BORDER ); - DECL_GET_WINDOW (Edit); public: ~Edit (); void SetModifyHdl( Link const& rLink ); }; -class FormatterBaseImpl; -class TOOLKIT_DLLPUBLIC FormatterBase -{ -protected: - FormatterBaseImpl *mpFormatImpl; - FormatterBase( FormatterBaseImpl *pFormatImpl ); -}; - -class NumericFormatterImpl; -class TOOLKIT_DLLPUBLIC NumericFormatter : public FormatterBase -{ -protected: - explicit NumericFormatter( FormatterBaseImpl *pImpl ); - NumericFormatterImpl &getFormatImpl() const; -}; - -class MetricFormatterImpl; -// Different inheritance to save code -class TOOLKIT_DLLPUBLIC MetricFormatter : public FormatterBase -{ - protected: - explicit MetricFormatter( FormatterBaseImpl *pImpl ); - MetricFormatterImpl &getFormatImpl() const; -}; - class ListBoxImpl; class TOOLKIT_DLLPUBLIC ListBox : public Control { @@ -327,21 +295,12 @@ class TOOLKIT_DLLPUBLIC ListBox : public Control public: ~ListBox (); - sal_uInt16 GetEntryPos( String const& rStr ) const; - String GetEntry( sal_uInt16 nPos ) const; - - void SelectEntryPos( sal_uInt16 nPos, bool bSelect=true ); - - sal_uInt16 GetSelectEntryPos( sal_uInt16 nSelIndex=0 ) const; - virtual void SetNoSelection (); }; class DialogImpl; class TOOLKIT_DLLPUBLIC Dialog : public Context, public Window { - DECL_GET_WINDOW (Dialog); - public: DECL_GET_IMPL (Dialog); Dialog( ::Window *parent, char const* xml_file, char const* id, sal_uInt32 nId=0 ); @@ -397,19 +356,6 @@ protected: void init (char const* message, char const* yes, char const* no, const rtl::OString& help_id); }; -#define CLASS_MESSAGE_BOX(Name)\ - class TOOLKIT_DLLPUBLIC Name##Box : public MessageBox\ - {\ - DECL_MESSAGE_BOX_CTORS (Name);\ - } - -//CLASS_MESSAGE_BOX (Mess); -typedef MessageBox MessBox; -CLASS_MESSAGE_BOX (Error); -CLASS_MESSAGE_BOX (Info); - -#undef CLASS_MESSAGE_BOX - #undef TAB_APPEND class TabControlImpl; @@ -424,7 +370,6 @@ class TOOLKIT_DLLPUBLIC TabControl : public Control public: ~TabControl (); - void SetCurPageId (sal_uInt16 id); void SetActivatePageHdl (Link const& link); void SetDeactivatePageHdl (Link const& link); }; @@ -447,41 +392,6 @@ public: // layout container / helper wrappers // ----------------------------------------------------------------- -class TOOLKIT_DLLPUBLIC Container -{ -protected: - css::uno::Reference< css::awt::XLayoutContainer > mxContainer; - Container( rtl::OUString const& rName, sal_Int32 nBorder ); -public: - Container( Context const* context, char const* id ); - - // we can't really do a GetChildren() as they don't have a common class, - // besides we would need to keep track of children, uh - - void ShowAll( bool bVisible ); - - css::uno::Reference< css::awt::XLayoutContainer > getImpl() - { return mxContainer; } -}; - -class TOOLKIT_DLLPUBLIC Table : public Container -{ - void setProps( css::uno::Reference< css::awt::XLayoutConstrains > xChild, - bool bXExpand, bool bYExpand, sal_Int32 nXSpan, sal_Int32 nYSpan ); -}; - -class TOOLKIT_DLLPUBLIC Box : public Container -{ -protected: - Box( rtl::OUString const& rName, sal_Int32 nBorder, bool bHomogeneous ); -public: - Box( Context const* context, char const* id ); - -private: - void setProps( css::uno::Reference< css::awt::XLayoutConstrains > xChild, - bool bXExpand, bool bYExpand, sal_Int32 nPadding ); -}; - class InPlugImpl; class TOOLKIT_DLLPUBLIC InPlug : public Context, public Window { diff --git a/toolkit/source/layout/vcl/wbutton.cxx b/toolkit/source/layout/vcl/wbutton.cxx index f3272dcc1c85..0cb855192f2f 100644 --- a/toolkit/source/layout/vcl/wbutton.cxx +++ b/toolkit/source/layout/vcl/wbutton.cxx @@ -143,7 +143,6 @@ void Button::Click() } IMPL_GET_IMPL( Button ); -IMPL_GET_WINDOW (Button); class PushButtonImpl : public ButtonImpl , public ::cppu::WeakImplHelper1< awt::XItemListener > @@ -193,13 +192,6 @@ PushButton::~PushButton () SetToggleHdl (Link ()); } -void PushButton::Check( bool bCheck ) -{ - getImpl().setProperty( "State", uno::Any( (sal_Int16) !!bCheck ) ); - // XButton doesn't have explicit toggle event - getImpl().fireToggle(); -} - void PushButton::SetToggleHdl( const Link& link ) { if (&getImpl () && getImpl().mxButton.is ()) @@ -207,7 +199,6 @@ void PushButton::SetToggleHdl( const Link& link ) } IMPL_GET_IMPL( PushButton ); -IMPL_GET_WINDOW (PushButton); #define BUTTON_IMPL(t, parent, response) \ class t##Impl : public parent##Impl \ diff --git a/toolkit/source/layout/vcl/wcontainer.cxx b/toolkit/source/layout/vcl/wcontainer.cxx deleted file mode 100644 index 868915b33f47..000000000000 --- a/toolkit/source/layout/vcl/wcontainer.cxx +++ /dev/null @@ -1,134 +0,0 @@ -/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ -/************************************************************************* - * - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * Copyright 2000, 2010 Oracle and/or its affiliates. - * - * OpenOffice.org - a multi-platform office productivity suite - * - * This file is part of OpenOffice.org. - * - * OpenOffice.org is free software: you can redistribute it and/or modify - * it under the terms of the GNU Lesser General Public License version 3 - * only, as published by the Free Software Foundation. - * - * OpenOffice.org is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Lesser General Public License version 3 for more details - * (a copy is included in the LICENSE file that accompanied this code). - * - * You should have received a copy of the GNU Lesser General Public License - * version 3 along with OpenOffice.org. If not, see - * <http://www.openoffice.org/license.html> - * for a copy of the LGPLv3 License. - * - ************************************************************************/ - -#include "wrapper.hxx" - -#include <com/sun/star/awt/XLayoutRoot.hpp> -#include <com/sun/star/awt/XLayoutContainer.hpp> -#include <comphelper/processfactory.hxx> -#include <layout/core/helper.hxx> -#include <tools/debug.hxx> - -using namespace ::com::sun::star; - -namespace layout -{ - -Container::Container( Context const* context, char const* pId ) - : mxContainer( context->GetPeerHandle( pId ), uno::UNO_QUERY ) -{ - if ( !mxContainer.is() ) - { - OSL_TRACE( "Error: failed to associate container with '%s'", pId ); - } -} - -Container::Container( rtl::OUString const& rName, sal_Int32 nBorder ) -{ - mxContainer = layoutimpl::WidgetFactory::createContainer( rName ); - - uno::Reference< beans::XPropertySet > xProps( mxContainer, uno::UNO_QUERY_THROW ); - xProps->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Border" ) ), - uno::Any( nBorder ) ); -} - -void Container::ShowAll( bool bShow ) -{ - struct inner - { - static void setChildrenVisible( uno::Reference < awt::XLayoutContainer > xCont, - bool bVisible ) /* auxiliary */ - { - if ( xCont.is() ) - { - uno::Sequence< uno::Reference < awt::XLayoutConstrains > > aChildren; - aChildren = xCont->getChildren(); - for (int i = 0; i < aChildren.getLength(); i++) - { - uno::Reference < awt::XLayoutConstrains > xChild( aChildren[ i ] ); - - uno::Reference< awt::XWindow > xWin( xChild, uno::UNO_QUERY); - if ( xWin.is() ) - xWin->setVisible( bVisible ); - - uno::Reference < awt::XLayoutContainer > xChildCont( - xChild, uno::UNO_QUERY ); - setChildrenVisible( xChildCont, bVisible ); - } - } - } - }; - - inner::setChildrenVisible( mxContainer, bShow ); -} - -void Table::setProps( uno::Reference< awt::XLayoutConstrains > xChild, - bool bXExpand, bool bYExpand, sal_Int32 nXSpan, sal_Int32 nYSpan ) -{ - uno::Reference< beans::XPropertySet > xProps - ( mxContainer->getChildProperties( xChild ), uno::UNO_QUERY_THROW ); - xProps->setPropertyValue( rtl::OUString ( RTL_CONSTASCII_USTRINGPARAM( "XExpand" ) ), - uno::Any( bXExpand ) ); - xProps->setPropertyValue( rtl::OUString ( RTL_CONSTASCII_USTRINGPARAM( "YExpand" ) ), - uno::Any( bYExpand ) ); - xProps->setPropertyValue( rtl::OUString ( RTL_CONSTASCII_USTRINGPARAM( "ColSpan" ) ), - uno::Any( nXSpan ) ); - xProps->setPropertyValue( rtl::OUString ( RTL_CONSTASCII_USTRINGPARAM( "RowSpan" ) ), - uno::Any( nYSpan ) ); -} - -Box::Box( rtl::OUString const& rName, sal_Int32 nBorder, bool bHomogeneous ) - : Container( rName, nBorder ) -{ - uno::Reference< beans::XPropertySet > xProps( mxContainer, uno::UNO_QUERY_THROW ); - xProps->setPropertyValue( rtl::OUString ( RTL_CONSTASCII_USTRINGPARAM( "Homogeneous" ) ), - uno::Any( bHomogeneous ) ); -} - -void Box::setProps( uno::Reference< awt::XLayoutConstrains > xChild, - bool bExpand, bool bFill, sal_Int32 nPadding ) -{ - uno::Reference< beans::XPropertySet > xProps - ( mxContainer->getChildProperties( xChild ), uno::UNO_QUERY_THROW ); - - xProps->setPropertyValue( rtl::OUString ( RTL_CONSTASCII_USTRINGPARAM( "Expand" ) ), - uno::Any( bExpand ) ); - xProps->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Fill" ) ), - uno::Any( bFill ) ); - xProps->setPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Padding" ) ), - uno::Any( nPadding ) ); -} - -Box::Box( Context const* context, char const* pId ) - : Container( context, pId ) -{ -} - -} // namespace layout - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/toolkit/source/layout/vcl/wfield.cxx b/toolkit/source/layout/vcl/wfield.cxx index 04b0757ca999..78b4484c2298 100644 --- a/toolkit/source/layout/vcl/wfield.cxx +++ b/toolkit/source/layout/vcl/wfield.cxx @@ -109,80 +109,6 @@ void Edit::SetModifyHdl( const Link& link ) } IMPL_GET_IMPL( Edit ); -IMPL_GET_WINDOW (Edit); - -class FormatterBaseImpl -{ - protected: - PeerHandle mpeer; - public: - explicit FormatterBaseImpl( const PeerHandle &peer ) - : mpeer( peer ) - { - }; -}; - -FormatterBase::FormatterBase( FormatterBaseImpl *pFormatImpl ) - : mpFormatImpl( pFormatImpl ) -{ -} - -class NumericFormatterImpl : public FormatterBaseImpl -{ - public: - uno::Reference< awt::XNumericField > mxField; - explicit NumericFormatterImpl( const PeerHandle &peer ) - : FormatterBaseImpl( peer ) - , mxField( peer, uno::UNO_QUERY ) - { - } - - // FIXME: burn that CPU ! cut/paste from vclxwindows.cxx - double valueToDouble( sal_Int64 nValue ) - { - sal_Int16 nDigits = mxField->getDecimalDigits(); - double n = (double)nValue; - for ( sal_uInt16 d = 0; d < nDigits; d++ ) - n /= 10; - return n; - } // FIXME: burn that CPU ! cut/paste from vclxwindows.cxx - sal_Int64 doubleToValue( double nValue ) - { - sal_Int16 nDigits = mxField->getDecimalDigits(); - double n = nValue; - for ( sal_uInt16 d = 0; d < nDigits; d++ ) - n *= 10; - return (sal_Int64) n; - } -}; - -class MetricFormatterImpl : public FormatterBaseImpl -{ - public: - uno::Reference< awt::XMetricField > mxField; - explicit MetricFormatterImpl( const PeerHandle &peer ) - : FormatterBaseImpl( peer ) - , mxField( peer, uno::UNO_QUERY ) - { - } -}; - -NumericFormatter::NumericFormatter( FormatterBaseImpl *pImpl ) - : FormatterBase( pImpl ) -{ -} - -NumericFormatterImpl& NumericFormatter::getFormatImpl() const -{ - return *( static_cast<NumericFormatterImpl *>( mpFormatImpl ) ); -} - -MetricFormatter::MetricFormatter( FormatterBaseImpl *pImpl ) - : FormatterBase( pImpl ) -{ -} -MetricFormatterImpl& MetricFormatter::getFormatImpl() const -{ return *( static_cast<MetricFormatterImpl *>( mpFormatImpl ) ); } class ListBoxImpl : public ControlImpl , public ::cppu::WeakImplHelper1< awt::XActionListener > @@ -351,30 +277,6 @@ ListBox::~ListBox () { } -sal_uInt16 ListBox::GetEntryPos( String const& rStr ) const -{ - return getImpl().GetEntryPos( rStr ); -} - -String ListBox::GetEntry( sal_uInt16 nPos ) const -{ - return getImpl().GetEntry( nPos ); -} - -void ListBox::SelectEntryPos( sal_uInt16 nPos, bool bSelect ) -{ -#if LAYOUT_API_CALLS_HANDLER - getImpl().SelectEntryPos( nPos, bSelect ); -#else /* !LAYOUT_API_CALLS_HANDLER */ - GetListBox ()->SelectEntryPos (nPos, bSelect); -#endif /* !LAYOUT_API_CALLS_HANDLER */ -} - -sal_uInt16 ListBox::GetSelectEntryPos( sal_uInt16 nSelIndex ) const -{ - return getImpl().GetSelectEntryPos( nSelIndex ); -} - void ListBox::SetNoSelection () { GetListBox ()->SetNoSelection (); diff --git a/toolkit/source/layout/vcl/wrapper.cxx b/toolkit/source/layout/vcl/wrapper.cxx index b175ea2be0b9..8e437bc874ad 100644 --- a/toolkit/source/layout/vcl/wrapper.cxx +++ b/toolkit/source/layout/vcl/wrapper.cxx @@ -191,14 +191,6 @@ void SAL_CALL WindowImpl::disposing (lang::EventObject const&) mxWindow.clear (); } -uno::Any WindowImpl::getProperty (char const* name) -{ - if ( !this || !mxVclPeer.is() ) - return css::uno::Any(); - return mxVclPeer->getProperty - ( rtl::OUString( name, strlen( name ), RTL_TEXTENCODING_ASCII_US ) ); -} - void WindowImpl::setProperty (char const *name, uno::Any any) { if ( !this || !mxVclPeer.is() ) @@ -321,11 +313,6 @@ void Window::ParentSet (Window *window) window->SetParent (GetWindow ()); } -Context *Window::getContext() -{ - return this && mpImpl ? mpImpl->mpCtx : NULL; -} - PeerHandle Window::GetPeer() const { if ( !mpImpl ) @@ -447,16 +434,6 @@ uno::Reference< awt::XToolkit > getToolkit() return xToolkit; } -PeerHandle Window::CreatePeer( Window *parent, WinBits nStyle, const char *pName) -{ - long nWinAttrbs = 0; - for (int i = 0; i < toolkitVclPropsMapLen; i++) - if ( nStyle & toolkitVclPropsMap[ i ].vclStyle ) - nWinAttrbs |= toolkitVclPropsMap[ i ].initAttr; - - return layoutimpl::WidgetFactory::createWidget (getToolkit(), parent->GetPeer(), OUString::createFromAscii( pName ), nWinAttrbs); -} - void Window::Show( bool bVisible ) { if ( !getImpl().mxWindow.is() ) @@ -496,11 +473,6 @@ void ControlImpl::SetGetFocusHdl (Link const& link) mGetFocusHdl = link; } -Link& ControlImpl::GetGetFocusHdl () -{ - return mGetFocusHdl; -} - void ControlImpl::SetLoseFocusHdl (Link const& link) { if (!mGetFocusHdl || !link) @@ -508,11 +480,6 @@ void ControlImpl::SetLoseFocusHdl (Link const& link) mLoseFocusHdl = link; } -Link& ControlImpl::GetLoseFocusHdl () -{ - return mGetFocusHdl; -} - void ControlImpl::UpdateListening (Link const& link) { if (!link && (!!mGetFocusHdl || !!mLoseFocusHdl) @@ -577,7 +544,6 @@ Dialog::~Dialog () { } -IMPL_GET_WINDOW (Dialog); IMPL_GET_IMPL (Dialog); #define MX_DIALOG if (getImpl ().mxDialog.is ()) getImpl ().mxDialog @@ -719,40 +685,6 @@ void MessageBox::init (OUString const& message, OUString const& yes, OUString co helpButton.Hide (); } -#undef MESSAGE_BOX_IMPL -#define MESSAGE_BOX_IMPL(Name)\ - Name##Box::Name##Box (::Window *parent, char const* message,\ - char const* yes, char const* no, const rtl::OString& help_id,\ - char const* xml_file, char const* id)\ - : MessageBox (parent, message, yes, no, help_id, xml_file, id)\ - {\ - image##Name.Show ();\ - }\ - Name##Box::Name##Box (::Window *parent, OUString const& message,\ - OUString yes, OUString no, const rtl::OString& help_id,\ - char const* xml_file, char const* id)\ - : MessageBox (parent, message, yes, no, help_id, xml_file, id)\ - {\ - image##Name.Show ();\ - }\ - Name##Box::Name##Box (::Window *parent, WinBits bits, char const* message,\ - char const* yes, char const* no, const rtl::OString& help_id,\ - char const* xml_file, char const* id)\ - : MessageBox (parent, bits, message, yes, no, help_id, xml_file, id)\ - {\ - image##Name.Show ();\ - }\ - Name##Box::Name##Box (::Window *parent, WinBits bits, OUString const& message,\ - OUString yes, OUString no, const rtl::OString& help_id,\ - char const* xml_file, char const* id)\ - : MessageBox (parent, bits, message, yes, no, help_id, xml_file, id)\ - {\ - image##Name.Show ();\ - } - -MESSAGE_BOX_IMPL (Error); -MESSAGE_BOX_IMPL (Info); - class TabControlImpl : public ControlImpl , public ::cppu::WeakImplHelper1 <awt::XTabListener> @@ -836,11 +768,6 @@ TabControl::~TabControl () SetDeactivatePageHdl (Link ()); } -void TabControl::SetCurPageId (sal_uInt16 id) -{ - getImpl ().redraw (); - GetTabControl ()->SetCurPageId (id); -} void TabControl::SetActivatePageHdl (Link const& link) { if (&getImpl () && getImpl().mxTabControl.is ()) diff --git a/toolkit/source/layout/vcl/wrapper.hxx b/toolkit/source/layout/vcl/wrapper.hxx index 8a88be68001e..3ac89468cfa4 100644 --- a/toolkit/source/layout/vcl/wrapper.hxx +++ b/toolkit/source/layout/vcl/wrapper.hxx @@ -58,7 +58,6 @@ public: virtual ~WindowImpl (); void wrapperGone(); - css::uno::Any getProperty (char const *name); void setProperty (char const *name, css::uno::Any any); void redraw (bool resize=false); @@ -77,9 +76,7 @@ public: ~ControlImpl (); virtual void SetGetFocusHdl (Link const& link); - Link& GetGetFocusHdl (); virtual void SetLoseFocusHdl (Link const& link); - Link& GetLoseFocusHdl (); virtual void UpdateListening (Link const& link); // XFocusListener diff --git a/unusedcode.easy b/unusedcode.easy index ba23ba9c7f90..c2d3481d14ef 100644 --- a/unusedcode.easy +++ b/unusedcode.easy @@ -1994,38 +1994,6 @@ graphite2::TtfUtil::GlyfLookup(unsigned short, void const*, void const*, unsigne jfw_plugin::VendorBase::createInstance() jfw_plugin::VendorBase::getJavaExePaths(int*) jvmaccess::ClassPath::doLoadClass(com::sun::star::uno::Reference<com::sun::star::uno::XComponentContext> const&, void*, rtl::OUString const&, rtl::OUString const&) -layout::Box::Box(layout::Context const*, char const*) -layout::Box::Box(rtl::OUString const&, int, bool) -layout::Box::setProps(com::sun::star::uno::Reference<com::sun::star::awt::XLayoutConstrains>, bool, bool, int) -layout::Button::GetButton() const -layout::Container::ShowAll(bool) -layout::ControlImpl::GetGetFocusHdl() -layout::ControlImpl::GetLoseFocusHdl() -layout::Dialog::GetDialog() const -layout::Edit::GetEdit() const -layout::ErrorBox::ErrorBox(Window*, char const*, char const*, char const*, rtl::OString const&, char const*, char const*) -layout::ErrorBox::ErrorBox(Window*, long, char const*, char const*, char const*, rtl::OString const&, char const*, char const*) -layout::ErrorBox::ErrorBox(Window*, long, rtl::OUString const&, rtl::OUString, rtl::OUString, rtl::OString const&, char const*, char const*) -layout::ErrorBox::ErrorBox(Window*, rtl::OUString const&, rtl::OUString, rtl::OUString, rtl::OString const&, char const*, char const*) -layout::InfoBox::InfoBox(Window*, char const*, char const*, char const*, rtl::OString const&, char const*, char const*) -layout::InfoBox::InfoBox(Window*, long, char const*, char const*, char const*, rtl::OString const&, char const*, char const*) -layout::InfoBox::InfoBox(Window*, long, rtl::OUString const&, rtl::OUString, rtl::OUString, rtl::OString const&, char const*, char const*) -layout::InfoBox::InfoBox(Window*, rtl::OUString const&, rtl::OUString, rtl::OUString, rtl::OString const&, char const*, char const*) -layout::ListBox::GetEntry(unsigned short) const -layout::ListBox::GetEntryPos(String const&) const -layout::ListBox::GetSelectEntryPos(unsigned short) const -layout::ListBox::SelectEntryPos(unsigned short, bool) -layout::MetricFormatter::MetricFormatter(layout::FormatterBaseImpl*) -layout::MetricFormatter::getFormatImpl() const -layout::NumericFormatter::NumericFormatter(layout::FormatterBaseImpl*) -layout::NumericFormatter::getFormatImpl() const -layout::PushButton::Check(bool) -layout::PushButton::GetPushButton() const -layout::TabControl::SetCurPageId(unsigned short) -layout::Table::setProps(com::sun::star::uno::Reference<com::sun::star::awt::XLayoutConstrains>, bool, bool, int, int) -layout::Window::CreatePeer(layout::Window*, long, char const*) -layout::Window::getContext() -layout::WindowImpl::getProperty(char const*) layoutimpl::LayoutRoot::addItem(rtl::OUString const&, com::sun::star::uno::Reference<com::sun::star::awt::XLayoutConstrains> const&) layoutimpl::VCLXPlugin::SetPlugin(Control*) layoutimpl::VCLXTabControl::AddChild(com::sun::star::uno::Reference<com::sun::star::awt::XLayoutConstrains> const&) |