/src/libreoffice/chart2/source/controller/dialogs/dlg_ShapeParagraph.cxx
Line | Count | Source |
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 | | |
20 | | #include <dlg_ShapeParagraph.hxx> |
21 | | |
22 | | #include <svl/cjkoptions.hxx> |
23 | | #include <svl/intitem.hxx> |
24 | | #include <svx/dialogs.hrc> |
25 | | #include <svx/svxids.hrc> |
26 | | #include <svx/flagsdef.hxx> |
27 | | |
28 | | #include <vcl/tabs.hrc> |
29 | | |
30 | | using namespace ::com::sun::star; |
31 | | |
32 | | namespace chart |
33 | | { |
34 | | |
35 | | ShapeParagraphDialog::ShapeParagraphDialog(weld::Window* pParent, |
36 | | const SfxItemSet* pAttr) |
37 | 0 | : SfxTabDialogController(pParent, u"modules/schart/ui/paradialog.ui"_ustr, u"ParagraphDialog"_ustr, pAttr) |
38 | 0 | { |
39 | 0 | AddTabPage(u"indents"_ustr, TabResId(RID_TAB_INDENTS.aLabel), RID_SVXPAGE_STD_PARAGRAPH, |
40 | 0 | RID_L + RID_TAB_INDENTS.sIconName ); |
41 | 0 | AddTabPage(u"alignment"_ustr, TabResId(RID_TAB_ALIGNMENT.aLabel), RID_SVXPAGE_ALIGN_PARAGRAPH, |
42 | 0 | RID_L + RID_TAB_ALIGNMENT.sIconName ); |
43 | 0 | if (SvtCJKOptions::IsAsianTypographyEnabled()) |
44 | 0 | AddTabPage(u"asian"_ustr, TabResId(RID_TAB_ASIANTYPO.aLabel), RID_SVXPAGE_PARA_ASIAN, |
45 | 0 | RID_L + RID_TAB_ASIANTYPO.sIconName); |
46 | 0 | AddTabPage(u"tabs"_ustr, TabResId(RID_TAB_TABS.aLabel), RID_SVXPAGE_TABULATOR, |
47 | 0 | RID_L + RID_TAB_TABS.sIconName); |
48 | 0 | } |
49 | | |
50 | | void ShapeParagraphDialog::PageCreated(const OUString& rId, SfxTabPage& rPage) |
51 | 0 | { |
52 | 0 | if (rId == "tabs") |
53 | 0 | { |
54 | 0 | SfxAllItemSet aSet( *( GetInputSetImpl()->GetPool() ) ); |
55 | 0 | TabulatorDisableFlags const nFlags(( TabulatorDisableFlags::TypeMask &~TabulatorDisableFlags::TypeLeft ) | |
56 | 0 | ( TabulatorDisableFlags::FillMask &~TabulatorDisableFlags::FillNone )); |
57 | 0 | aSet.Put( SfxUInt16Item( SID_SVXTABULATORTABPAGE_DISABLEFLAGS, static_cast<sal_uInt16>(nFlags)) ); |
58 | 0 | rPage.PageCreated( aSet ); |
59 | 0 | } |
60 | 0 | } |
61 | | |
62 | | } //namespace chart |
63 | | |
64 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |