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_UIBASE_INC_OPTLOAD_HXX
20 : #define INCLUDED_SW_SOURCE_UIBASE_INC_OPTLOAD_HXX
21 :
22 : #include <sfx2/tabdlg.hxx>
23 :
24 : #include <vcl/group.hxx>
25 : #include <vcl/fixed.hxx>
26 : #include <vcl/layout.hxx>
27 : #include <vcl/lstbox.hxx>
28 : #include <vcl/field.hxx>
29 : #include <svx/strarray.hxx>
30 : #include <sfx2/basedlgs.hxx>
31 : #include <svx/checklbx.hxx>
32 : #include <swlbox.hxx>
33 : #include <caption.hxx>
34 :
35 : class SwFieldMgr;
36 : class SvTreeListEntry;
37 : class SwWrtShell;
38 :
39 : class SwLoadOptPage : public SfxTabPage
40 : {
41 : private:
42 : VclPtr<RadioButton> m_pAlwaysRB;
43 : VclPtr<RadioButton> m_pRequestRB;
44 : VclPtr<RadioButton> m_pNeverRB;
45 :
46 : VclPtr<CheckBox> m_pAutoUpdateFields;
47 : VclPtr<CheckBox> m_pAutoUpdateCharts;
48 :
49 : VclPtr<ListBox> m_pMetricLB;
50 : VclPtr<FixedText> m_pTabFT;
51 : VclPtr<MetricField> m_pTabMF;
52 : VclPtr<CheckBox> m_pUseSquaredPageMode;
53 : VclPtr<CheckBox> m_pUseCharUnit;
54 : VclPtr<Edit> m_pWordCountED;
55 : VclPtr<CheckBox> m_pShowStandardizedPageCount;
56 : VclPtr<NumericField> m_pStandardizedPageSizeNF;
57 :
58 : SwWrtShell* m_pWrtShell;
59 : sal_uInt16 m_nLastTab;
60 : sal_Int32 m_nOldLinkMode;
61 :
62 : DECL_LINK(MetricHdl, void *);
63 : DECL_LINK(StandardizedPageCountCheckHdl, void *);
64 :
65 : public:
66 : SwLoadOptPage(vcl::Window* pParent, const SfxItemSet& rSet);
67 : virtual ~SwLoadOptPage();
68 : virtual void dispose() SAL_OVERRIDE;
69 :
70 : static VclPtr<SfxTabPage> Create( vcl::Window* pParent,
71 : const SfxItemSet* rAttrSet);
72 :
73 : virtual bool FillItemSet( SfxItemSet* rSet ) SAL_OVERRIDE;
74 : virtual void Reset( const SfxItemSet* rSet ) SAL_OVERRIDE;
75 : };
76 :
77 0 : class SwCaptionOptDlg : public SfxSingleTabDialog
78 : {
79 : public:
80 : SwCaptionOptDlg(vcl::Window* pParent, const SfxItemSet& rSet);
81 : };
82 :
83 0 : class CaptionComboBox : public SwComboBox
84 : {
85 : protected:
86 : virtual void KeyInput( const KeyEvent& ) SAL_OVERRIDE;
87 :
88 : public:
89 0 : CaptionComboBox(vcl::Window* pParent, WinBits nStyle)
90 0 : : SwComboBox(pParent, nStyle)
91 0 : {}
92 : };
93 :
94 0 : class SwCaptionPreview : public vcl::Window
95 : {
96 : private:
97 : OUString maText;
98 : bool mbFontInitialized;
99 : vcl::Font maFont;
100 : Point maDrawPos;
101 : public:
102 : SwCaptionPreview(vcl::Window* pParent, WinBits nStyle);
103 : void Init();
104 : virtual void ApplySettings(vcl::RenderContext& rRenderContext) SAL_OVERRIDE;
105 : void SetPreviewText( const OUString& rText );
106 : virtual void Paint( vcl::RenderContext& rRenderContext, const Rectangle& rRect ) SAL_OVERRIDE;
107 : virtual Size GetOptimalSize() const SAL_OVERRIDE;
108 : };
109 :
110 : class SwCaptionOptPage : public SfxTabPage
111 : {
112 : private:
113 : VclPtr<SvxCheckListBox> m_pCheckLB;
114 : VclPtr<ListBox> m_pLbCaptionOrder;
115 : VclPtr<SwCaptionPreview> m_pPreview;
116 :
117 : VclPtr<VclContainer> m_pSettingsGroup;
118 : VclPtr<CaptionComboBox> m_pCategoryBox;
119 : VclPtr<FixedText> m_pFormatText;
120 : VclPtr<ListBox> m_pFormatBox;
121 : //#i61007# order of captions
122 : VclPtr<FixedText> m_pNumberingSeparatorFT;
123 : VclPtr<Edit> m_pNumberingSeparatorED;
124 : VclPtr<FixedText> m_pTextText;
125 : VclPtr<Edit> m_pTextEdit;
126 : VclPtr<ListBox> m_pPosBox;
127 :
128 : VclPtr<VclContainer> m_pNumCapt;
129 : VclPtr<ListBox> m_pLbLevel;
130 : VclPtr<Edit> m_pEdDelim;
131 :
132 : VclPtr<VclContainer> m_pCategory;
133 : VclPtr<ListBox> m_pCharStyleLB;
134 : VclPtr<CheckBox> m_pApplyBorderCB;
135 :
136 : OUString m_sSWTable;
137 : OUString m_sSWFrame;
138 : OUString m_sSWGraphic;
139 : OUString m_sOLE;
140 :
141 : OUString m_sIllustration;
142 : OUString m_sTable;
143 : OUString m_sText;
144 : OUString m_sDrawing;
145 :
146 : OUString m_sBegin;
147 : OUString m_sEnd;
148 : OUString m_sAbove;
149 : OUString m_sBelow;
150 :
151 : OUString m_sNone;
152 :
153 : SwFieldMgr* pMgr;
154 : bool bHTMLMode;
155 :
156 : DECL_LINK(SelectHdl, void *);
157 : DECL_LINK(ModifyHdl, void * = 0);
158 : DECL_LINK( OrderHdl, ListBox* );
159 : DECL_LINK(ShowEntryHdl, void *);
160 : DECL_LINK(SaveEntryHdl, void *);
161 :
162 : void DelUserData();
163 : void SetOptions(const sal_uLong nPos, const SwCapObjType eType, const SvGlobalName *pOleId = 0);
164 : void SaveEntry(SvTreeListEntry* pEntry);
165 : void InvalidatePreview();
166 :
167 : public:
168 : SwCaptionOptPage( vcl::Window* pParent,
169 : const SfxItemSet& rSet );
170 : virtual ~SwCaptionOptPage();
171 : virtual void dispose() SAL_OVERRIDE;
172 :
173 : static VclPtr<SfxTabPage> Create( vcl::Window* pParent,
174 : const SfxItemSet* rAttrSet);
175 :
176 : virtual bool FillItemSet( SfxItemSet* rSet ) SAL_OVERRIDE;
177 : virtual void Reset( const SfxItemSet* rSet ) SAL_OVERRIDE;
178 : };
179 :
180 : #endif
181 :
182 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|