LibreOffice Module sw (master) 1
uitool.hxx
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#ifndef INCLUDED_SW_SOURCE_UIBASE_INC_UITOOL_HXX
20#define INCLUDED_SW_SOURCE_UIBASE_INC_UITOOL_HXX
21
22#include <vcl/weld.hxx>
23#include <swtypes.hxx>
24#include <swdllapi.h>
25
26class SfxItemSet;
27class SwPageDesc;
28class SvxTabStopItem;
29class SwWrtShell;
30namespace com::sun::star::awt { class XPopupMenu; }
31namespace weld { class ComboBox; }
32namespace model { class ComplexColor; }
33class SwDocShell;
34class SwFrameFormat;
35class SwTabCols;
36class DateTime;
37class SfxViewFrame;
38class SwEditShell;
39
40// fill BoxInfo attribute
41SW_DLLPUBLIC void PrepareBoxInfo(SfxItemSet& rSet, const SwWrtShell& rSh);
42
49SW_DLLPUBLIC void ConvertAttrCharToGen(SfxItemSet& rSet, bool bPara = false);
50
59SW_DLLPUBLIC void ConvertAttrGenToChar(SfxItemSet& rSet, const SfxItemSet& rOrigSet, bool bPara = false);
60
61
70void ApplyCharBackground(Color const& rBackgroundColor, model::ComplexColor const& rComplexColor, SwWrtShell& rShell);
71
72// SfxItemSets <-> PageDesc
73void ItemSetToPageDesc( const SfxItemSet& rSet, SwPageDesc& rPageDesc );
74void PageDescToItemSet( const SwPageDesc& rPageDesc, SfxItemSet& rSet);
75
76// fill tabs with default tabs
77SW_DLLPUBLIC void MakeDefTabs(SwTwips nDefDist, SvxTabStopItem& rTabs);
78
79// erase DefaultTabs from TabStopArray
80//void EraseDefTabs(SvxTabStopItem& rTabs);
81
82// determine space between 1st and 2nd element
84
85// determine whether a Sfx-PageDesc combination exists in the set
86// and set this in the set and delete the transport items
87// (PageBreak & PageModel) from the set
89void SfxToSwPageDescAttr( const SwWrtShell& rShell, SfxItemSet& rSet );
90
92void SetDfltMetric(FieldUnit eMetric, bool bWeb);
93
94bool HasCharUnit( bool bWeb );
95void SetApplyCharUnit(bool bApplyChar, bool bWeb);
96
97// fill ListBox with all char style templates, except the standard ones
98SW_DLLPUBLIC void FillCharStyleListBox(weld::ComboBox& rToFill, SwDocShell* pDocSh, bool bSorted = false, bool bWithDefault = false);
99
100//inserts a string sorted into a ListBox,
101SW_DLLPUBLIC void InsertStringSorted(const OUString& rId, const OUString& rEntry, weld::ComboBox& rToFill, int nOffset);
102
103// Get table width and alignment
104SwTwips GetTableWidth( SwFrameFormat const * pFormat, SwTabCols const & rCols, sal_uInt16 *pPercent,
105 SwWrtShell* pSh );
106
107OUString GetAppLangDateTimeString( const DateTime& );
108
109// search for a command string within the menu structure and execute it
110// at the dispatcher if there is one, if executed return true
111bool ExecuteMenuCommand(const css::uno::Reference<css::awt::XPopupMenu>& rMenu, const SfxViewFrame& rViewFrame, sal_uInt16 nId);
112
113#endif // INCLUDED_SW_SOURCE_UIBASE_INC_UITOOL_HXX
114
115/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Style of a layout element.
Definition: frmfmt.hxx:72
Used by the UI to modify the document model.
Definition: wrtsh.hxx:97
FieldUnit
#define SW_DLLPUBLIC
Definition: swdllapi.h:28
tools::Long SwTwips
Definition: swtypes.hxx:51
void SwToSfxPageDescAttr(SfxItemSet &rSet)
Definition: uitool.cxx:717
OUString GetAppLangDateTimeString(const DateTime &)
Definition: uitool.cxx:863
void PageDescToItemSet(const SwPageDesc &rPageDesc, SfxItemSet &rSet)
Definition: uitool.cxx:458
bool ExecuteMenuCommand(const css::uno::Reference< css::awt::XPopupMenu > &rMenu, const SfxViewFrame &rViewFrame, sal_uInt16 nId)
Definition: uitool.cxx:883
void ItemSetToPageDesc(const SfxItemSet &rSet, SwPageDesc &rPageDesc)
Definition: uitool.cxx:278
void SetDfltMetric(FieldUnit eMetric, bool bWeb)
Definition: uitool.cxx:763
SW_DLLPUBLIC SwTwips GetTabDist(const SvxTabStopItem &rTabs)
Definition: uitool.cxx:650
SW_DLLPUBLIC void ConvertAttrGenToChar(SfxItemSet &rSet, const SfxItemSet &rOrigSet, bool bPara=false)
Convert general attributes to the corresponding character attributes.
Definition: uitool.cxx:145
SW_DLLPUBLIC void ConvertAttrCharToGen(SfxItemSet &rSet, bool bPara=false)
Convert character specific attributes to general ones used by tab pages.
Definition: uitool.cxx:106
void SetApplyCharUnit(bool bApplyChar, bool bWeb)
Definition: uitool.cxx:878
void ApplyCharBackground(Color const &rBackgroundColor, model::ComplexColor const &rComplexColor, SwWrtShell &rShell)
Apply character background on the shell.
Definition: uitool.cxx:197
SW_DLLPUBLIC void FillCharStyleListBox(weld::ComboBox &rToFill, SwDocShell *pDocSh, bool bSorted=false, bool bWithDefault=false)
Definition: uitool.cxx:781
bool HasCharUnit(bool bWeb)
Definition: uitool.cxx:873
SW_DLLPUBLIC void InsertStringSorted(const OUString &rId, const OUString &rEntry, weld::ComboBox &rToFill, int nOffset)
Definition: uitool.cxx:768
SW_DLLPUBLIC FieldUnit GetDfltMetric(bool bWeb)
Definition: uitool.cxx:756
SW_DLLPUBLIC void PrepareBoxInfo(SfxItemSet &rSet, const SwWrtShell &rSh)
Definition: uitool.cxx:82
SwTwips GetTableWidth(SwFrameFormat const *pFormat, SwTabCols const &rCols, sal_uInt16 *pPercent, SwWrtShell *pSh)
Definition: uitool.cxx:822
void SfxToSwPageDescAttr(const SwWrtShell &rShell, SfxItemSet &rSet)
Definition: uitool.cxx:656
SW_DLLPUBLIC void MakeDefTabs(SwTwips nDefDist, SvxTabStopItem &rTabs)
Definition: uitool.cxx:638