diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-07-26 10:01:26 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2012-07-27 19:23:48 -0400 |
commit | 6410afaa449659429decf369ba91fcb74a92562a (patch) | |
tree | a6b06f5e4ae059299b8210f6ff291297e1abc0d7 /framework | |
parent | bcee196287027b4fde406eec73e10f93dcd8ddd8 (diff) |
Remove unnecessary fluffy comment partitions.
Change-Id: I8fad1d7e4bb9827266b6b1f1d90fe1dd2b401b44
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/inc/loadenv/loadenv.hxx | 56 |
1 files changed, 3 insertions, 53 deletions
diff --git a/framework/source/inc/loadenv/loadenv.hxx b/framework/source/inc/loadenv/loadenv.hxx index 4c72e6b36acf..a38926121c8d 100644 --- a/framework/source/inc/loadenv/loadenv.hxx +++ b/framework/source/inc/loadenv/loadenv.hxx @@ -58,26 +58,21 @@ //_______________________________________________ // namespace -namespace framework{ +namespace framework { namespace css = ::com::sun::star; class QuietInteraction; -//_______________________________________________ -// definitions /** @short implements general mechainsm for loading documents. @descr An instance of this class can be used inside the API calls - XComponentLoader::loadComponentFromURL() and XDispatch::dispatch() - (of course in its derived interfaces too :-)). + XComponentLoader::loadComponentFromURL() and + XDispatch::dispatch(). @author as96863 */ class LoadEnv : private ThreadHelpBase { - //___________________________________________ - // structs, types, etc. - public: /** @short enable/disable special features @@ -101,8 +96,6 @@ class LoadEnv : private ThreadHelpBase E_ALLOW_CONTENTHANDLER = 2 }; - //_______________________________________ - /** @short classify a content. @descr The load environment must know, if a content @@ -131,9 +124,6 @@ class LoadEnv : private ThreadHelpBase E_CAN_BE_SET }; - //___________________________________________ - // member - private: /** @short reference to an uno service manager, which must be used @@ -225,9 +215,6 @@ class LoadEnv : private ThreadHelpBase QuietInteraction* m_pQuietInteraction; - //___________________________________________ - // native interface - public: /** @short initialize a new instance of this load environment. @@ -244,16 +231,10 @@ class LoadEnv : private ThreadHelpBase LoadEnv(const css::uno::Reference< css::lang::XMultiServiceFactory >& xSMGR) throw(LoadEnvException, css::uno::RuntimeException); - //_______________________________________ - /** @short deinitialize an instance of this class in the right way. */ ~LoadEnv(); - //_______________________________________ - - /** @short DRAFT TODO - */ static css::uno::Reference< css::lang::XComponent > loadComponentFromURL(const css::uno::Reference< css::frame::XComponentLoader >& xLoader, const css::uno::Reference< css::lang::XMultiServiceFactory >& xSMGR , const ::rtl::OUString& sURL , @@ -264,8 +245,6 @@ class LoadEnv : private ThreadHelpBase css::io::IOException , css::uno::RuntimeException ); - //_______________________________________ - /** @short set some changeable parameters for a new load request. @descr The parameter for targeting, the content description, and @@ -323,8 +302,6 @@ class LoadEnv : private ThreadHelpBase EFeature eFeature = E_NO_FEATURE , EContentType eContentType = E_UNSUPPORTED_CONTENT); - //_______________________________________ - /** @short start loading of the resource represented by this loadenv instance. @descr There is no direct return value possible here. Because it depends @@ -375,10 +352,6 @@ class LoadEnv : private ThreadHelpBase /** TODO document me ... */ css::uno::Reference< css::lang::XComponent > getTargetComponent() const; - - //___________________________________________ - // static interface - public: /** @short checks if the specified content can be handled by a @@ -444,9 +417,6 @@ class LoadEnv : private ThreadHelpBase void impl_reactForLoadingState() throw(LoadEnvException, css::uno::RuntimeException); - //___________________________________________ - // private helper - private: /** @short tries to detect the type and the filter of the specified content. @@ -470,8 +440,6 @@ class LoadEnv : private ThreadHelpBase void impl_detectTypeAndFilter() throw(LoadEnvException, css::uno::RuntimeException); - //_______________________________________ - /** @short tries to ask user for it's filter decision in case normal detection failed. @@ -485,8 +453,6 @@ class LoadEnv : private ThreadHelpBase ::rtl::OUString impl_askUserForTypeAndFilterIfAllowed() throw(LoadEnvException, css::uno::RuntimeException); - //_______________________________________ - /** @short tries to use ContentHandler objects for loading. @descr It searches for a suitable content handler object, registered @@ -508,8 +474,6 @@ class LoadEnv : private ThreadHelpBase sal_Bool impl_handleContent() throw(LoadEnvException, css::uno::RuntimeException); - //_______________________________________ - /** @short tries to use FrameLoader objects for loading. @descr First the target frame will be located. If it could be found @@ -529,8 +493,6 @@ class LoadEnv : private ThreadHelpBase sal_Bool impl_loadContent() throw(LoadEnvException, css::uno::RuntimeException); - //_______________________________________ - /** @short checks if the specified content is already loaded. @descr It depends from the set target information, if such @@ -557,8 +519,6 @@ class LoadEnv : private ThreadHelpBase css::uno::Reference< css::frame::XFrame > impl_searchAlreadyLoaded() throw(LoadEnvException, css::uno::RuntimeException); - //_______________________________________ - /** @short search for any target frame, which seems to be useable for this load request. @@ -590,8 +550,6 @@ class LoadEnv : private ThreadHelpBase css::uno::Reference< css::frame::XFrame > impl_searchRecycleTarget() throw(LoadEnvException, css::uno::RuntimeException); - //_______________________________________ - /** @short because showing of a frame is needed more then once ... it's implemented as an seperate method .-) @@ -620,8 +578,6 @@ class LoadEnv : private ThreadHelpBase void impl_makeFrameWindowVisible(const css::uno::Reference< css::awt::XWindow >& xWindow , sal_Bool bForceToFront); - //_______________________________________ - /** @short checks whether a frame is already used for another load request or not. @descr Such frames cant be used for our "recycle feature"! @@ -635,22 +591,16 @@ class LoadEnv : private ThreadHelpBase */ sal_Bool impl_isFrameAlreadyUsedForLoading(const css::uno::Reference< css::frame::XFrame >& xFrame) const; - //_______________________________________ - /** @short try to determine the used application module of this load request and applay right position and size for this document window ... hopefully before we show it .-) */ void impl_applyPersistentWindowState(const css::uno::Reference< css::awt::XWindow >& xWindow); - //_______________________________________ - /** @short determine if it's allowed to open new document frames. */ sal_Bool impl_furtherDocsAllowed(); - //_______________________________________ - /** @short jumps to the requested bookmark inside a given document. */ void impl_jumpToMark(const css::uno::Reference< css::frame::XFrame >& xFrame, |