/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * Copyright 2012 LibreOffice contributors. * * 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/. */ #ifndef TEMPLATEDLG_HXX #define TEMPLATEDLG_HXX #include #include #include class Edit; class PopupMenu; class SfxTemplateInfoDlg; class TemplateAbstractView; class TemplateLocalView; class TemplateRemoteView; class TemplateSearchView; class ThumbnailView; class ThumbnailViewItem; class ToolBox; namespace com { namespace sun { namespace star { namespace frame { class XComponentLoader; class XModel; } } } } class SfxTemplateManagerDlg : public ModelessDialog { public: SfxTemplateManagerDlg (Window *parent = NULL); ~SfxTemplateManagerDlg (); void setSaveMode (bool bMode); void setDocumentModel (const com::sun::star::uno::Reference &rModel); DECL_LINK(ViewAllHdl, void*); DECL_LINK(ViewDocsHdl, void*); DECL_LINK(ViewPresentsHdl, void*); DECL_LINK(ViewSheetsHdl, void*); DECL_LINK(ViewDrawsHdl, void*); private: virtual void MouseButtonDown( const MouseEvent& rMEvt ); DECL_LINK(CloseOverlayHdl, void*); DECL_LINK(OnClickSelectionMode, ImageButton*); DECL_LINK(TBXViewHdl, void*); DECL_LINK(TBXActionHdl, void*); DECL_LINK(TBXTemplateHdl, void*); DECL_LINK(TBXDropdownHdl, ToolBox*); DECL_LINK(TVFolderStateHdl, const ThumbnailViewItem*); DECL_LINK(TVTemplateStateHdl, const ThumbnailViewItem*); DECL_LINK(MenuSelectHdl, Menu*); DECL_LINK(MoveMenuSelectHdl, Menu*); DECL_LINK(RepositoryMenuSelectHdl, Menu*); DECL_LINK(DefaultTemplateMenuSelectHdl, Menu*); DECL_LINK(OpenTemplateHdl, ThumbnailViewItem*); DECL_LINK(SearchUpdateHdl, void*); DECL_LINK(RepositoryChangeNameHdl, void*); void OnTemplateImport (); void OnTemplateSearch (); void OnTemplateEdit (); void OnTemplateProperties (); void OnTemplateDelete (); void OnTemplateAsDefault (); void OnTemplateExport (); void OnFolderDelete (); void OnRepositoryDelete (); void OnTemplateSaveAs (); void centerTopButtons (); void createRepositoryMenu (); void createDefaultTemplateMenu (); // Exchange view between local/online view. void switchMainView (bool bDisplayLocal); /** * * Move templates stored in the filesystem to another folder. * **/ void localMoveTo (sal_uInt16 nMenuId); void remoteMoveTo (const sal_uInt16 nMenuId); /** * * Move search result templates stored in the filesystem to another folder. * **/ void localSearchMoveTo (sal_uInt16 nMenuId); private: PushButton aButtonAll; PushButton aButtonDocs; PushButton aButtonPresents; PushButton aButtonSheets; PushButton aButtonDraws; ImageButton maButtonSelMode; Edit *mpSearchEdit; ToolBox *mpViewBar; ToolBox *mpActionBar; ToolBox *mpTemplateBar; TemplateSearchView *mpSearchView; TemplateAbstractView *mpCurView; TemplateLocalView *maView; TemplateRemoteView *mpOnlineView; PopupMenu *mpActionMenu; PopupMenu *mpRepositoryMenu; PopupMenu *mpTemplateDefaultMenu; std::set maSelTemplates; std::set maSelFolders; bool mbIsSaveMode; ///< Flag that indicates if we are in save mode or not. com::sun::star::uno::Reference< com::sun::star::frame::XModel > m_xModel; com::sun::star::uno::Reference< com::sun::star::frame::XComponentLoader > mxDesktop; }; #endif // TEMPLATEDLG_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */