Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #ifndef INCLUDED_SW_SOURCE_UI_INC_DRPCPS_HXX
20 : #define INCLUDED_SW_SOURCE_UI_INC_DRPCPS_HXX
21 :
22 : #include <sfx2/basedlgs.hxx>
23 : #include <sfx2/tabdlg.hxx>
24 :
25 : #include <vcl/button.hxx>
26 :
27 : #include <vcl/fixed.hxx>
28 :
29 : #include <vcl/field.hxx>
30 :
31 : #include <vcl/edit.hxx>
32 :
33 : #include <vcl/lstbox.hxx>
34 :
35 : class SwWrtShell;
36 :
37 : // class SwDropCapsDlg ******************************************************
38 :
39 0 : class SwDropCapsDlg : public SfxSingleTabDialog
40 : {
41 : public:
42 : SwDropCapsDlg(Window *pParent, const SfxItemSet &rSet );
43 : };
44 :
45 : class SwDropCapsPict;
46 :
47 : // class SwDropCapsPage *****************************************************
48 :
49 : class SwDropCapsPage : public SfxTabPage
50 : {
51 : friend class SwDropCapsPict;
52 : CheckBox* m_pDropCapsBox;
53 : CheckBox* m_pWholeWordCB;
54 : FixedText* m_pSwitchText;
55 : NumericField* m_pDropCapsField;
56 : FixedText* m_pLinesText;
57 : NumericField* m_pLinesField;
58 : FixedText* m_pDistanceText;
59 : MetricField* m_pDistanceField;
60 : FixedText* m_pTextText;
61 : Edit* m_pTextEdit;
62 : FixedText* m_pTemplateText;
63 : ListBox* m_pTemplateBox;
64 :
65 : SwDropCapsPict* m_pPict;
66 :
67 : sal_Bool bModified;
68 : sal_Bool bFormat;
69 : sal_Bool bHtmlMode;
70 :
71 : SwWrtShell &rSh;
72 :
73 : SwDropCapsPage(Window *pParent, const SfxItemSet &rSet);
74 : virtual ~SwDropCapsPage();
75 :
76 : virtual int DeactivatePage(SfxItemSet *pSet) SAL_OVERRIDE;
77 : void FillSet( SfxItemSet &rSet );
78 :
79 : DECL_LINK(ClickHdl, void *);
80 : DECL_LINK( ModifyHdl, Edit * );
81 : DECL_LINK(SelectHdl, void *);
82 : DECL_LINK(WholeWordHdl, void *);
83 :
84 : using SfxTabPage::ActivatePage;
85 : using SfxTabPage::DeactivatePage;
86 :
87 : public:
88 :
89 : static SfxTabPage *Create(Window *pParent, const SfxItemSet &rSet);
90 : static sal_uInt16* GetRanges();
91 :
92 : virtual bool FillItemSet( SfxItemSet &rSet) SAL_OVERRIDE;
93 : virtual void Reset (const SfxItemSet &rSet) SAL_OVERRIDE;
94 :
95 0 : void SetFormat(sal_Bool bSet){bFormat = bSet;}
96 : protected:
97 : void aSwitchText(sal_Bool bChecked);
98 : //void SW_RES(int arg1);
99 : };
100 :
101 : #endif
102 :
103 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|