nss: upgrade to release 3.73
[LibreOffice.git] / sw / source / ui / envelp / swuilabimp.hxx
blobb4229e0c22c8c61bddd63aa0ff82830dfc79c795
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_SW_SOURCE_UI_ENVELP_SWUILABIMP_HXX
20 #define INCLUDED_SW_SOURCE_UI_ENVELP_SWUILABIMP_HXX
22 #include <label.hxx>
23 #include <labimg.hxx>
24 #include <labrec.hxx>
25 #include <sfx2/tabdlg.hxx>
27 class SwLabPage : public SfxTabPage
29 SwDBManager* pDBManager;
30 OUString sActDBName;
31 SwLabItem aItem;
33 std::unique_ptr<weld::Widget> m_xAddressFrame;
34 std::unique_ptr<weld::CheckButton> m_xAddrBox;
35 std::unique_ptr<weld::TextView> m_xWritingEdit;
36 std::unique_ptr<weld::ComboBox> m_xDatabaseLB;
37 std::unique_ptr<weld::ComboBox> m_xTableLB;
38 std::unique_ptr<weld::Button> m_xInsertBT;
39 std::unique_ptr<weld::ComboBox> m_xDBFieldLB;
40 std::unique_ptr<weld::RadioButton> m_xContButton;
41 std::unique_ptr<weld::RadioButton> m_xSheetButton;
42 std::unique_ptr<weld::ComboBox> m_xMakeBox;
43 std::unique_ptr<weld::ComboBox> m_xTypeBox;
44 std::unique_ptr<weld::ComboBox> m_xHiddenSortTypeBox;
45 std::unique_ptr<weld::Label> m_xFormatInfo;
47 DECL_LINK(AddrHdl, weld::ToggleButton&, void);
48 DECL_LINK(DatabaseHdl, weld::ComboBox&, void);
49 DECL_LINK(FieldHdl, weld::Button&, void);
50 DECL_LINK(PageHdl, weld::ToggleButton&, void);
51 DECL_LINK(MakeHdl, weld::ComboBox&, void);
52 DECL_LINK(TypeHdl, weld::ComboBox&, void);
54 void DisplayFormat();
55 SwLabRec* GetSelectedEntryPos();
57 public:
58 SwLabPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& rSet);
60 virtual ~SwLabPage() override;
62 static std::unique_ptr<SfxTabPage>
63 Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rSet);
65 virtual void ActivatePage(const SfxItemSet& rSet) override;
66 virtual DeactivateRC DeactivatePage(SfxItemSet* pSet) override;
67 void FillItem(SwLabItem& rItem);
68 virtual bool FillItemSet(SfxItemSet* rSet) override;
69 virtual void Reset(const SfxItemSet* rSet) override;
71 SwLabDlg* GetParentSwLabDlg() { return static_cast<SwLabDlg*>(GetDialogController()); }
73 void SetToBusinessCard();
75 void InitDatabaseBox();
76 void SetDBManager(SwDBManager* pDBManager_) { pDBManager = pDBManager_; }
77 SwDBManager* GetDBManager() const { return pDBManager; }
80 class SwPrivateDataPage : public SfxTabPage
82 std::unique_ptr<weld::Entry> m_xFirstNameED;
83 std::unique_ptr<weld::Entry> m_xNameED;
84 std::unique_ptr<weld::Entry> m_xShortCutED;
85 std::unique_ptr<weld::Entry> m_xFirstName2ED;
86 std::unique_ptr<weld::Entry> m_xName2ED;
87 std::unique_ptr<weld::Entry> m_xShortCut2ED;
88 std::unique_ptr<weld::Entry> m_xStreetED;
89 std::unique_ptr<weld::Entry> m_xZipED;
90 std::unique_ptr<weld::Entry> m_xCityED;
91 std::unique_ptr<weld::Entry> m_xCountryED;
92 std::unique_ptr<weld::Entry> m_xStateED;
93 std::unique_ptr<weld::Entry> m_xTitleED;
94 std::unique_ptr<weld::Entry> m_xProfessionED;
95 std::unique_ptr<weld::Entry> m_xPhoneED;
96 std::unique_ptr<weld::Entry> m_xMobilePhoneED;
97 std::unique_ptr<weld::Entry> m_xFaxED;
98 std::unique_ptr<weld::Entry> m_xHomePageED;
99 std::unique_ptr<weld::Entry> m_xMailED;
101 public:
102 SwPrivateDataPage(weld::Container* pPage, weld::DialogController* pController,
103 const SfxItemSet& rSet);
104 virtual ~SwPrivateDataPage() override;
106 static std::unique_ptr<SfxTabPage>
107 Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rSet);
109 virtual void ActivatePage(const SfxItemSet& rSet) override;
110 virtual DeactivateRC DeactivatePage(SfxItemSet* pSet) override;
111 virtual bool FillItemSet(SfxItemSet* rSet) override;
112 virtual void Reset(const SfxItemSet* rSet) override;
115 class SwBusinessDataPage : public SfxTabPage
117 std::unique_ptr<weld::Entry> m_xCompanyED;
118 std::unique_ptr<weld::Entry> m_xCompanyExtED;
119 std::unique_ptr<weld::Entry> m_xSloganED;
120 std::unique_ptr<weld::Entry> m_xStreetED;
121 std::unique_ptr<weld::Entry> m_xZipED;
122 std::unique_ptr<weld::Entry> m_xCityED;
123 std::unique_ptr<weld::Entry> m_xCountryED;
124 std::unique_ptr<weld::Entry> m_xStateED;
125 std::unique_ptr<weld::Entry> m_xPositionED;
126 std::unique_ptr<weld::Entry> m_xPhoneED;
127 std::unique_ptr<weld::Entry> m_xMobilePhoneED;
128 std::unique_ptr<weld::Entry> m_xFaxED;
129 std::unique_ptr<weld::Entry> m_xHomePageED;
130 std::unique_ptr<weld::Entry> m_xMailED;
132 public:
133 SwBusinessDataPage(weld::Container* pPage, weld::DialogController* pController,
134 const SfxItemSet& rSet);
135 virtual ~SwBusinessDataPage() override;
137 static std::unique_ptr<SfxTabPage>
138 Create(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet* rSet);
140 virtual void ActivatePage(const SfxItemSet& rSet) override;
141 virtual DeactivateRC DeactivatePage(SfxItemSet* pSet) override;
142 virtual bool FillItemSet(SfxItemSet* rSet) override;
143 virtual void Reset(const SfxItemSet* rSet) override;
146 #endif
148 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */