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 :
20 : #include "dlgattr.hxx"
21 :
22 : #include <sfx2/tabdlg.hxx>
23 :
24 : #include <svx/numinf.hxx>
25 :
26 : #include <svx/dialogs.hrc>
27 : #include "dbu_dlg.hrc"
28 : #include <svl/itemset.hxx>
29 : #include <svl/zforlist.hxx>
30 : #include <svx/svxids.hrc>
31 : #include <svx/flagsdef.hxx>
32 : #include <svl/intitem.hxx>
33 : #include "moduledbu.hxx"
34 : using namespace dbaui;
35 :
36 :
37 0 : SbaSbAttrDlg::SbaSbAttrDlg(Window* pParent, const SfxItemSet* pCellAttrs,
38 : SvNumberFormatter* pFormatter, bool bHasFormat, bool bRow)
39 : : SfxTabDialog(pParent, "FieldDialog", "dbaccess/ui/fielddialog.ui", pCellAttrs)
40 0 : , m_nNumberFormatId(0)
41 : {
42 :
43 0 : pNumberInfoItem = new SvxNumberInfoItem( pFormatter, 0 );
44 :
45 0 : if (bRow)
46 0 : SetText(get<FixedText>("alttitle")->GetText());
47 0 : if (bHasFormat)
48 0 : m_nNumberFormatId = AddTabPage("format", RID_SVXPAGE_NUMBERFORMAT);
49 0 : AddTabPage("alignment", RID_SVXPAGE_ALIGNMENT);
50 0 : }
51 :
52 0 : SbaSbAttrDlg::~SbaSbAttrDlg()
53 : {
54 0 : delete pNumberInfoItem;
55 :
56 0 : }
57 :
58 0 : void SbaSbAttrDlg::PageCreated( sal_uInt16 nPageId, SfxTabPage& rTabPage )
59 : {
60 0 : SfxAllItemSet aSet(*(GetInputSetImpl()->GetPool()));
61 0 : if (nPageId == m_nNumberFormatId)
62 : {
63 0 : aSet.Put (SvxNumberInfoItem( pNumberInfoItem->GetNumberFormatter(), (const sal_uInt16)SID_ATTR_NUMBERFORMAT_INFO));
64 0 : rTabPage.PageCreated(aSet);
65 0 : }
66 0 : }
67 :
68 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|