/* -*- 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/. */ #ifndef CUI_PERSONALIZATION_HXX #define CUI_PERSONALIZATION_HXX #include class FixedText; class SvxPersonalizationTabPage : public SfxTabPage { using SfxTabPage::DeactivatePage; private: RadioButton *m_pNoBackground; ///< Just the default look, without any bitmap RadioButton *m_pDefaultBackground; ///< Use the built-in bitmap for Writer background RadioButton *m_pOwnBackground; ///< Use the user-defined bitmap PushButton *m_pSelectBackground; ///< Let the user select in the 'own' case OUString m_aBackgroundURL; ///< URL of the the background image in the 'own' case RadioButton *m_pNoPersona; ///< Just the default look, without any bitmap RadioButton *m_pDefaultPersona; ///< Use the built-in bitmap RadioButton *m_pOwnPersona; ///< Use the user-defined bitmap PushButton *m_pSelectPersona; ///< Let the user select in the 'own' case OUString m_aPersonaSettings; ///< Header and footer images + color to be set in the settings. public: SvxPersonalizationTabPage( Window *pParent, const SfxItemSet &rSet ); ~SvxPersonalizationTabPage(); static SfxTabPage* Create( Window *pParent, const SfxItemSet &rSet ); /// Apply the settings ([OK] button). virtual sal_Bool FillItemSet( SfxItemSet &rSet ); /// Reset to default settings ([Revert] button). virtual void Reset( const SfxItemSet &rSet ); private: /// Handle the bacground selection DECL_LINK( SelectBackground, PushButton* ); /// Handle the Persona selection DECL_LINK( SelectPersona, PushButton* ); /// When 'own' is chosen, but the background image or Persona is not chosen yet. DECL_LINK( ForceSelect, RadioButton* ); /// Download the bitmaps + color settings, and copy them to user's profile. bool CopyPersonaToGallery( const OUString &rURL ); }; #endif // CUI_PERSONALIZATION_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */