nss: upgrade to release 3.73
[LibreOffice.git] / sc / source / ui / inc / mvtabdlg.hxx
blob9836cc544639400cd312d727e5988e416df7245d
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 .
20 #ifndef INCLUDED_SC_SOURCE_UI_INC_MVTABDLG_HXX
21 #define INCLUDED_SC_SOURCE_UI_INC_MVTABDLG_HXX
23 #include <types.hxx>
24 #include <vcl/weld.hxx>
26 class ScDocument;
28 class ScMoveTableDlg : public weld::GenericDialogController
30 public:
31 ScMoveTableDlg(weld::Window* pParent, const OUString& rDefault);
32 virtual ~ScMoveTableDlg() override;
34 sal_uInt16 GetSelectedDocument () const { return nDocument; }
35 SCTAB GetSelectedTable () const { return nTable; }
36 bool GetCopyTable () const { return bCopyTable; }
37 bool GetRenameTable () const { return bRenameTable; }
38 void GetTabNameString( OUString& rString ) const;
39 void SetForceCopyTable ();
40 void EnableRenameTable (bool bFlag);
42 private:
43 void ResetRenameInput();
44 void CheckNewTabName();
45 ScDocument* GetSelectedDoc();
47 private:
48 OUString msCurrentDoc;
49 OUString msNewDoc;
51 OUString msStrTabNameUsed;
52 OUString msStrTabNameEmpty;
53 OUString msStrTabNameInvalid;
55 const OUString maDefaultName;
57 sal_uInt16 mnCurrentDocPos;
58 sal_uInt16 nDocument;
59 SCTAB nTable;
60 bool bCopyTable:1;
61 bool bRenameTable:1;
62 bool mbEverEdited:1;
64 std::unique_ptr<weld::RadioButton> m_xBtnMove;
65 std::unique_ptr<weld::RadioButton> m_xBtnCopy;
66 std::unique_ptr<weld::ComboBox> m_xLbDoc;
67 std::unique_ptr<weld::TreeView> m_xLbTable;
68 std::unique_ptr<weld::Entry> m_xEdTabName;
69 std::unique_ptr<weld::Label> m_xFtWarn;
70 std::unique_ptr<weld::Button> m_xBtnOk;
71 std::unique_ptr<weld::Label> m_xUnusedLabel;
72 std::unique_ptr<weld::Label> m_xEmptyLabel;
73 std::unique_ptr<weld::Label> m_xInvalidLabel;
75 void Init ();
76 void InitDocListBox ();
77 DECL_LINK(OkHdl, weld::Button&, void);
78 DECL_LINK(SelHdl, weld::ComboBox&, void);
79 DECL_LINK(CheckBtnHdl, weld::ToggleButton&, void);
80 DECL_LINK(CheckNameHdl, weld::Entry&, void);
83 #endif // INCLUDED_SC_SOURCE_UI_INC_MVTABDLG_HXX
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */