LibreOffice Module svx (master) 1
fmtextcontroldialogs.cxx
Go to the documentation of this file.
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
21#include <svx/dialogs.hrc>
22#include <svx/svxids.hrc>
23
24#include <svx/flagsdef.hxx>
25#include <svl/intitem.hxx>
26
27#include <svl/cjkoptions.hxx>
28#include <utility>
29
30
31namespace svx
32{
33
35 : SfxTabDialogController(pParent, "svx/ui/textcontrolchardialog.ui", "TextControlCharacterPropertiesDialog", &rCoreSet)
36 , m_aFontList(std::move(aFontList))
37 {
38 AddTabPage("font", RID_SVXPAGE_CHAR_NAME);
39 AddTabPage("fonteffects", RID_SVXPAGE_CHAR_EFFECTS);
40 AddTabPage("position", RID_SVXPAGE_CHAR_POSITION);
41 }
42
43 void TextControlCharAttribDialog::PageCreated(const OUString& rId, SfxTabPage& rPage)
44 {
45 SfxAllItemSet aSet(*(GetInputSetImpl()->GetPool()));
46
47 if (rId == "font")
48 {
49 aSet.Put (m_aFontList);
50 rPage.PageCreated(aSet);
51 }
52 else if (rId == "fonteffects")
53 {
54 aSet.Put (SfxUInt16Item(SID_DISABLE_CTL,DISABLE_CASEMAP));
55 rPage.PageCreated(aSet);
56 }
57 else if (rId == "position")
58 {
59 aSet.Put( SfxUInt32Item(SID_FLAG_TYPE, SVX_PREVIEW_CHARACTER) );
60 rPage.PageCreated(aSet);
61 }
62 }
63
65 : SfxTabDialogController(pParent, "svx/ui/textcontrolparadialog.ui", "TextControlParagraphPropertiesDialog", &rCoreSet)
66 {
67 AddTabPage("labelTP_PARA_STD", RID_SVXPAGE_STD_PARAGRAPH);
68 AddTabPage("labelTP_PARA_ALIGN", RID_SVXPAGE_ALIGN_PARAGRAPH);
69
71 AddTabPage("labelTP_PARA_ASIAN", RID_SVXPAGE_PARA_ASIAN);
72 else
73 RemoveTabPage("labelTP_PARA_ASIAN");
74
75 AddTabPage("labelTP_TABULATOR", RID_SVXPAGE_TABULATOR);
76 }
77}
78
79/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
const SfxPoolItem * Put(const SfxPoolItem &rItem, sal_uInt16 nWhich)
void AddTabPage(const OUString &rName, CreateTabPage pCreateFunc, GetTabPageRanges pRangesFunc)
void RemoveTabPage(const OUString &rName)
SfxItemSet * GetInputSetImpl()
virtual void PageCreated(const SfxAllItemSet &aSet)
TextControlCharAttribDialog(weld::Window *pParent, const SfxItemSet &rCoreSet, SvxFontListItem aFontList)
virtual void PageCreated(const OUString &rId, SfxTabPage &_rPage) override
TextControlParaAttribDialog(weld::Window *pParent, const SfxItemSet &rCoreSet)
#define DISABLE_CASEMAP
Definition: flagsdef.hxx:58
#define SVX_PREVIEW_CHARACTER
Definition: flagsdef.hxx:62
bool IsAsianTypographyEnabled()