/* -*- 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_CUI_SOURCE_INC_CUIGALDLG_HXX #define INCLUDED_CUI_SOURCE_INC_CUIGALDLG_HXX #include "sal/config.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include class GalleryTheme; class SearchProgress; class TakeProgress; class TPGalleryThemeProperties; typedef ::std::vector< OUString > StringList; typedef ::std::vector< sal_uLong > TokenList_impl; struct FilterEntry { OUString aFilterName; }; class SearchThread: public salhelper::Thread { private: VclPtr mpProgress; VclPtr mpBrowser; INetURLObject maStartURL; void ImplSearch( const INetURLObject& rStartURL, const ::std::vector< OUString >& rFormats, bool bRecursive ); virtual ~SearchThread() override; virtual void execute() override; public: SearchThread( SearchProgress* pProgess, TPGalleryThemeProperties* pBrowser, const INetURLObject& rStartURL ); }; class SearchProgress : public ModalDialog { private: VclPtr m_pFtSearchDir; VclPtr m_pFtSearchType; VclPtr m_pBtnCancel; VclPtr parent_; INetURLObject startUrl_; rtl::Reference< SearchThread > maSearchThread; DECL_LINK( ClickCancelBtn, Button*, void ); public: SearchProgress( vcl::Window* pParent, const INetURLObject& rStartURL ); virtual ~SearchProgress() override; virtual void dispose() override; DECL_LINK( CleanUpHdl, void*, void ); virtual short Execute() override; virtual void StartExecuteModal( const Link& rEndDialogHdl ) override; void SetFileType( const OUString& rType ) { m_pFtSearchType->SetText( rType ); } void SetDirectory( const INetURLObject& rURL ) { m_pFtSearchDir->SetText( GetReducedString( rURL, 30 ) ); } }; class TakeThread: public salhelper::Thread { private: VclPtr mpProgress; VclPtr mpBrowser; TokenList_impl& mrTakenList; virtual ~TakeThread() override; virtual void execute() override; public: TakeThread( TakeProgress* pProgess, TPGalleryThemeProperties* pBrowser, TokenList_impl& rTakenList ); }; class TakeProgress : public ModalDialog { private: VclPtr m_pFtTakeFile; VclPtr m_pBtnCancel; VclPtr window_; rtl::Reference< TakeThread > maTakeThread; TokenList_impl maTakenList; DECL_LINK( ClickCancelBtn, Button*, void ); public: TakeProgress( vcl::Window* pWindow ); virtual ~TakeProgress() override; virtual void dispose() override; DECL_LINK( CleanUpHdl, void*, void ); void SetFile( const INetURLObject& rURL ) { m_pFtTakeFile->SetText( GetReducedString( rURL, 30 ) ); } virtual short Execute() override; virtual void StartExecuteModal( const Link& rEndDialogHdl ) override; }; class ActualizeProgress : public ModalDialog { private: VclPtr m_pFtActualizeFile; VclPtr m_pBtnCancel; Idle* pIdle; GalleryTheme* pTheme; GalleryProgress aStatusProgress; DECL_LINK( ClickCancelBtn, Button*, void ); DECL_LINK( TimeoutHdl, Idle*, void ); DECL_LINK( ActualizeHdl, const INetURLObject&, void ); public: ActualizeProgress( vcl::Window* pWindow, GalleryTheme* pThm ); virtual ~ActualizeProgress() override; virtual void dispose() override; virtual short Execute() override; }; class TitleDialog : public ModalDialog { private: VclPtr m_pEdit; public: TitleDialog(vcl::Window* pParent, const OUString& rOldText); virtual ~TitleDialog() override; virtual void dispose() override; OUString GetTitle() const { return m_pEdit->GetText(); } }; class GalleryIdDialog : public ModalDialog { private: VclPtr m_pBtnOk; VclPtr m_pLbResName; GalleryTheme* pThm; DECL_LINK( ClickOkHdl, Button*, void ); public: GalleryIdDialog( vcl::Window* pParent, GalleryTheme* pThm ); virtual ~GalleryIdDialog() override; virtual void dispose() override; sal_uLong GetId() const { return m_pLbResName->GetSelectEntryPos(); } }; class GalleryThemeProperties : public SfxTabDialog { ExchangeData* pData; sal_uInt16 m_nGeneralPageId; sal_uInt16 m_nFilesPageId; virtual void PageCreated(sal_uInt16 nId, SfxTabPage &rPage) override; public: GalleryThemeProperties(vcl::Window* pParent, ExchangeData* pData, SfxItemSet* pItemSet); }; class TPGalleryThemeGeneral : public SfxTabPage { private: VclPtr m_pFiMSImage; VclPtr m_pEdtMSName; VclPtr m_pFtMSShowType; VclPtr m_pFtMSShowPath; VclPtr m_pFtMSShowContent; VclPtr m_pFtMSShowChangeDate; ExchangeData* pData; virtual void Reset( const SfxItemSet* ) override {} virtual bool FillItemSet( SfxItemSet* rSet ) override; public: TPGalleryThemeGeneral( vcl::Window* pParent, const SfxItemSet& rSet ); virtual ~TPGalleryThemeGeneral() override; virtual void dispose() override; void SetXChgData( ExchangeData* pData ); static VclPtr Create( vcl::Window* pParent, const SfxItemSet* rSet ); }; class TPGalleryThemeProperties : public SfxTabPage { friend class SearchThread; friend class TakeProgress; friend class TakeThread; VclPtr m_pCbbFileType; VclPtr m_pLbxFound; VclPtr m_pBtnSearch; VclPtr m_pBtnTake; VclPtr m_pBtnTakeAll; VclPtr m_pCbxPreview; VclPtr m_pWndPreview; ExchangeData* pData; StringList aFoundList; ::std::vector< FilterEntry* > aFilterEntryList; Timer aPreviewTimer; OUString aLastFilterName; OUString aPreviewString; INetURLObject aURL; sal_uInt16 nCurFilterPos; sal_uInt16 nFirstExtFilterPos; bool bEntriesFound; bool bInputAllowed; bool bTakeAll; bool bSearchRecursive; rtl::Reference< ::svt::DialogClosedListener > xDialogListener; css::uno::Reference< css::media::XPlayer > xMediaPlayer; css::uno::Reference< css::ui::dialogs::XFolderPicker2 > xFolderPicker; virtual void Reset( const SfxItemSet* /*rSet*/ ) override {} virtual bool FillItemSet( SfxItemSet* /*rSet*/ ) override { return true; } static OUString addExtension( const OUString&, const OUString& ); void FillFilterList(); void SearchFiles(); void TakeFiles(); void DoPreview(); DECL_LINK( ClickPreviewHdl, Button*, void ); DECL_LINK( ClickSearchHdl, Button*, void ); DECL_LINK( ClickTakeHdl, Button*, void ); DECL_LINK( ClickTakeAllHdl, Button*, void ); DECL_LINK( SelectFoundHdl, ListBox&, void ); DECL_LINK( SelectFileTypeHdl, ComboBox&, void ); DECL_LINK( DClickFoundHdl, ListBox&, void ); DECL_LINK( PreviewTimerHdl, Timer*, void ); DECL_LINK( EndSearchProgressHdl, Dialog&, void ); DECL_LINK( DialogClosedHdl, css::ui::dialogs::DialogClosedEvent*, void ); public: TPGalleryThemeProperties( vcl::Window* pWindow, const SfxItemSet& rSet ); virtual ~TPGalleryThemeProperties() override; virtual void dispose() override; void SetXChgData( ExchangeData* pData ); const ExchangeData* GetXChgData() const { return pData; } void StartSearchFiles( const OUString& _rFolderURL, short _nDlgResult ); static VclPtr Create( vcl::Window* pParent, const SfxItemSet* rSet ); }; #endif // INCLUDED_CUI_SOURCE_INC_CUIGALDLG_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */