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(vcl::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 0 : pNumberInfoItem = new SvxNumberInfoItem( pFormatter, 0 );
43 :
44 0 : if (bRow)
45 0 : SetText(get<FixedText>("alttitle")->GetText());
46 0 : if (bHasFormat)
47 0 : m_nNumberFormatId = AddTabPage("format", RID_SVXPAGE_NUMBERFORMAT);
48 : else
49 0 : RemoveTabPage("format");
50 0 : AddTabPage("alignment", RID_SVXPAGE_ALIGNMENT);
51 0 : }
52 :
53 0 : SbaSbAttrDlg::~SbaSbAttrDlg()
54 : {
55 0 : disposeOnce();
56 0 : }
57 :
58 0 : void SbaSbAttrDlg::dispose()
59 : {
60 0 : delete pNumberInfoItem;
61 0 : SfxTabDialog::dispose();
62 0 : }
63 :
64 0 : void SbaSbAttrDlg::PageCreated( sal_uInt16 nPageId, SfxTabPage& rTabPage )
65 : {
66 0 : SfxAllItemSet aSet(*(GetInputSetImpl()->GetPool()));
67 0 : if (nPageId == m_nNumberFormatId)
68 : {
69 0 : aSet.Put (SvxNumberInfoItem( pNumberInfoItem->GetNumberFormatter(), (const sal_uInt16)SID_ATTR_NUMBERFORMAT_INFO));
70 0 : rTabPage.PageCreated(aSet);
71 0 : }
72 36 : }
73 :
74 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|