/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2008 by Sun Microsystems, Inc. * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: genericunodialog.hxx,v $ * $Revision: 1.5 $ * * 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 * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef _SVT_GENERICUNODIALOG_HXX_ #define _SVT_GENERICUNODIALOG_HXX_ #include "svtools/svtdllapi.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include class Dialog; class Window; class VclWindowEvent; //......................................................................... namespace svt { //......................................................................... //========================================================================= #define UNODIALOG_PROPERTY_ID_TITLE 1 #define UNODIALOG_PROPERTY_ID_PARENT 2 #define UNODIALOG_PROPERTY_TITLE "Title" #define UNODIALOG_PROPERTY_PARENT "ParentWindow" //========================================================================= typedef ::cppu::WeakImplHelper3 < com::sun::star::ui::dialogs::XExecutableDialog , com::sun::star::lang::XServiceInfo , com::sun::star::lang::XInitialization > OGenericUnoDialogBase; /** abstract base class for implementing UNO objects representing dialogs (XDialog) */ class SVT_DLLPUBLIC OGenericUnoDialog :public OGenericUnoDialogBase ,public ::comphelper::OMutexAndBroadcastHelper ,public ::comphelper::OPropertyContainer { private: ::osl::Mutex m_aExecutionMutex; /// acess safety for execute/cancel protected: Dialog* m_pDialog; /// the dialog to execute sal_Bool m_bExecuting : 1; /// we're currently executing the dialog sal_Bool m_bCanceled : 1; /// endDialog was called while we were executing sal_Bool m_bTitleAmbiguous : 1; /// m_sTitle has not been set yet bool m_bInitialized : 1; /// has "initialize" been called? bool m_bNeedInitialization : 1; /// do we need to be initialized before any other API call is allowed? // ::rtl::OUString m_sTitle; /// title of the dialog com::sun::star::uno::Reference m_xParent; /// parent window // ::comphelper::ComponentContext m_aContext; public: inline bool needInitialization() const { return m_bNeedInitialization && !m_bInitialized; } protected: OGenericUnoDialog(const com::sun::star::uno::Reference< com::sun::star::lang::XMultiServiceFactory >& _rxORB); OGenericUnoDialog(const com::sun::star::uno::Reference< com::sun::star::uno::XComponentContext >& _rxContext); virtual ~OGenericUnoDialog(); public: // UNO DECLARE_UNO3_DEFAULTS(OGenericUnoDialog, OGenericUnoDialogBase); virtual com::sun::star::uno::Any SAL_CALL queryInterface(const com::sun::star::uno::Type& _rType) throw (com::sun::star::uno::RuntimeException); // XTypeProvider virtual com::sun::star::uno::Sequence SAL_CALL getTypes( ) throw(com::sun::star::uno::RuntimeException); virtual com::sun::star::uno::Sequence SAL_CALL getImplementationId( ) throw(com::sun::star::uno::RuntimeException) = 0; // XServiceInfo virtual ::rtl::OUString SAL_CALL getImplementationName() throw(com::sun::star::uno::RuntimeException) = 0; virtual sal_Bool SAL_CALL supportsService(const ::rtl::OUString& ServiceName) throw(com::sun::star::uno::RuntimeException); virtual ::comphelper::StringSequence SAL_CALL getSupportedServiceNames() throw(com::sun::star::uno::RuntimeException) = 0; // OPropertySetHelper virtual void SAL_CALL setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const com::sun::star::uno::Any& rValue ) throw(com::sun::star::uno::Exception); virtual sal_Bool SAL_CALL convertFastPropertyValue( com::sun::star::uno::Any& rConvertedValue, com::sun::star::uno::Any& rOldValue, sal_Int32 nHandle, const com::sun::star::uno::Any& rValue) throw(com::sun::star::lang::IllegalArgumentException); // XExecutableDialog virtual void SAL_CALL setTitle( const ::rtl::OUString& aTitle ) throw(::com::sun::star::uno::RuntimeException); virtual sal_Int16 SAL_CALL execute( ) throw(::com::sun::star::uno::RuntimeException); // XInitialization virtual void SAL_CALL initialize( const com::sun::star::uno::Sequence< com::sun::star::uno::Any >& aArguments ) throw(com::sun::star::uno::Exception, com::sun::star::uno::RuntimeException); protected: /** create the concret dialog instance. note that m_aMutex is not locked when this method get's called, but the application-wide solar mutex is (to guard the not thread-safe ctor of the dialog). @param pParent the parent window for the new dialog */ virtual Dialog* createDialog(Window* _pParent) = 0; /// called to destroy the dialog used. the default implementation just deletes m_pDialog and resets it to NULL virtual void destroyDialog(); /** called after the dialog has been executed @param _nExecutionResult the execution result as returned by Dialog::Execute */ virtual void executedDialog(sal_Int16 /*_nExecutionResult*/) { } /** smaller form of initialize.

The initialize method is called with a sequence of Any's, which is split up into the single elements, which are passed to implInitialize. The default implementation tries to exract an PropertyValue from the value an pass it to the XPropertySet interface of the object. */ virtual void implInitialize(const com::sun::star::uno::Any& _rValue); private: DECL_LINK( OnDialogDying, VclWindowEvent* ); /** ensures that m_pDialog is not This method does nothing if m_pDialog is already non-. Else, it calls createDialog and does all necessary initializations of the new dialog instance. @precond m_aMutex is locked @return if and only if m_pDialog is non- upon returning from the method. Note that the only case where m_pDialog is is when createDialog returned , which is will fire an assertion in non-product builds. */ bool impl_ensureDialog_lck(); }; /// helper class for guarding access to methods of a OGenericUnoDialog class UnoDialogEntryGuard { public: UnoDialogEntryGuard( OGenericUnoDialog& _rDialog ) :m_aGuard( _rDialog.GetMutex() ) { if ( _rDialog.needInitialization() ) throw ::com::sun::star::lang::NotInitializedException(); } private: ::osl::MutexGuard m_aGuard; }; //......................................................................... } // namespace svt //......................................................................... #endif // _SVT_GENERICUNODIALOG_HXX_