update credits
[LibreOffice.git] / cui / source / options / optupdt.hxx
blobbdfb8f7a8e74e3b6005da5f43e8e568a0dcdb50f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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
31 private:
32 CheckBox* m_pAutoCheckCheckBox;
33 RadioButton* m_pEveryDayButton;
34 RadioButton* m_pEveryWeekButton;
35 RadioButton* m_pEveryMonthButton;
36 PushButton* m_pCheckNowButton;
37 CheckBox* m_pAutoDownloadCheckBox;
38 FixedText* m_pDestPathLabel;
39 FixedText* m_pDestPath;
40 PushButton* m_pChangePathButton;
41 FixedText* m_pLastChecked;
42 OUString m_aNeverChecked;
43 OUString m_aLastCheckedTemplate;
45 DECL_LINK(FileDialogHdl_Impl, void *) ;
46 DECL_LINK(CheckNowHdl_Impl, void *) ;
47 DECL_LINK( AutoCheckHdl_Impl, CheckBox* ) ;
49 ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > m_xUpdateAccess;
51 void UpdateLastCheckedText();
53 public:
54 SvxOnlineUpdateTabPage( Window* pParent, const SfxItemSet& rSet );
55 ~SvxOnlineUpdateTabPage();
57 static SfxTabPage* Create( Window* pParent, const SfxItemSet& rSet );
59 virtual sal_Bool FillItemSet( SfxItemSet& rSet );
60 virtual void Reset( const SfxItemSet& rSet );
61 virtual void FillUserData();
65 #endif
67 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */