1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef _SVX_OPTUPDT_HXX
21 #define _SVX_OPTUPDT_HXX
23 #include <sfx2/tabdlg.hxx>
24 #include <vcl/fixed.hxx>
25 #include <com/sun/star/container/XNameReplace.hpp>
27 // class SvxPathTabPage --------------------------------------------------
29 class SvxOnlineUpdateTabPage
: public SfxTabPage
32 FixedLine m_aOptionsLine
;
33 CheckBox m_aAutoCheckCheckBox
;
34 RadioButton m_aEveryDayButton
;
35 RadioButton m_aEveryWeekButton
;
36 RadioButton m_aEveryMonthButton
;
37 PushButton m_aCheckNowButton
;
38 CheckBox m_aAutoDownloadCheckBox
;
39 FixedText m_aDestPathLabel
;
40 FixedText m_aDestPath
;
41 PushButton m_aChangePathButton
;
42 FixedText m_aLastChecked
;
43 rtl::OUString m_aNeverChecked
;
44 rtl::OUString m_aLastCheckedTemplate
;
46 DECL_LINK(FileDialogHdl_Impl
, void *) ;
47 DECL_LINK(CheckNowHdl_Impl
, void *) ;
48 DECL_LINK( AutoCheckHdl_Impl
, CheckBox
* ) ;
50 void CalcButtonWidth();
52 ::com::sun::star::uno::Reference
< ::com::sun::star::container::XNameReplace
> m_xUpdateAccess
;
54 void UpdateLastCheckedText();
57 SvxOnlineUpdateTabPage( Window
* pParent
, const SfxItemSet
& rSet
);
58 ~SvxOnlineUpdateTabPage();
60 static SfxTabPage
* Create( Window
* pParent
, const SfxItemSet
& rSet
);
62 virtual sal_Bool
FillItemSet( SfxItemSet
& rSet
);
63 virtual void Reset( const SfxItemSet
& rSet
);
64 virtual void FillUserData();
70 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */