Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / cui / source / inc / scriptdlg.hxx
blobb1b014771dae4451d8234845d65e91fd061e272b
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 #pragma once
22 #include <memory>
23 #include <sfx2/basedlgs.hxx>
24 #include <vcl/weld.hxx>
26 #include <com/sun/star/beans/XPropertySet.hpp>
27 #include <com/sun/star/script/browse/XBrowseNode.hpp>
28 #include <com/sun/star/frame/XModel.hpp>
29 #include <com/sun/star/uno/XComponentContext.hpp>
31 #include <unordered_map>
33 #define OBJTYPE_METHOD 2L
34 #define OBJTYPE_SCRIPTCONTAINER 3L
35 #define OBJTYPE_SFROOT 4L
37 typedef std::unordered_map < OUString, OUString > Selection_hash;
39 class SFEntry;
41 enum class InputDialogMode {
42 NEWLIB = 1,
43 NEWMACRO = 2,
44 RENAME = 3,
47 class CuiInputDialog : public weld::GenericDialogController
49 private:
50 std::unique_ptr<weld::Entry> m_xEdit;
51 public:
52 CuiInputDialog(weld::Window * pParent, InputDialogMode nMode);
53 OUString GetObjectName() const { return m_xEdit->get_text(); }
54 void SetObjectName(const OUString& rName)
56 m_xEdit->set_text(rName);
57 m_xEdit->select_region(0, -1);
61 class SFEntry final
63 private:
64 bool loaded;
65 css::uno::Reference< css::script::browse::XBrowseNode > nodes;
66 css::uno::Reference< css::frame::XModel > model;
67 public:
68 SFEntry( const css::uno::Reference< css::script::browse::XBrowseNode >& entryNodes ,
69 const css::uno::Reference< css::frame::XModel >& entryModel) { nodes = entryNodes; loaded=false; model = entryModel; }
70 SFEntry( const SFEntry& r ) { nodes = r.nodes; loaded = r.loaded; }
71 const css::uno::Reference< css::script::browse::XBrowseNode >& GetNode() const { return nodes ;}
72 const css::uno::Reference< css::frame::XModel >& GetModel() const { return model ;};
73 bool isLoaded() const { return loaded; }
74 void setLoaded() { loaded=true; }
77 class SvxScriptOrgDialog : public SfxDialogController
79 weld::Window* m_pParent;
80 OUString m_sLanguage;
81 static Selection_hash m_lastSelection;
82 const OUString m_delErrStr;
83 const OUString m_delErrTitleStr;
84 const OUString m_delQueryStr;
85 const OUString m_delQueryTitleStr;
86 const OUString m_createErrStr;
87 const OUString m_createDupStr;
88 const OUString m_createErrTitleStr;
89 const OUString m_renameErrStr;
90 const OUString m_renameErrTitleStr;
91 const OUString m_sMyMacros;
92 const OUString m_sProdMacros;
94 std::unique_ptr<weld::TreeView> m_xScriptsBox;
95 std::unique_ptr<weld::TreeIter> m_xScratchIter;
96 std::unique_ptr<weld::Button> m_xRunButton;
97 std::unique_ptr<weld::Button> m_xCloseButton;
98 std::unique_ptr<weld::Button> m_xCreateButton;
99 std::unique_ptr<weld::Button> m_xEditButton;
100 std::unique_ptr<weld::Button> m_xRenameButton;
101 std::unique_ptr<weld::Button> m_xDelButton;
103 DECL_LINK( ScriptSelectHdl, weld::TreeView&, void );
104 DECL_LINK( ExpandingHdl, const weld::TreeIter&, bool );
105 DECL_LINK( ButtonHdl, weld::Button&, void );
106 static bool getBoolProperty( css::uno::Reference< css::beans::XPropertySet > const & xProps, OUString const & propName );
107 void CheckButtons( css::uno::Reference< css::script::browse::XBrowseNode > const & node );
109 void createEntry(const weld::TreeIter& rEntry);
110 void renameEntry(const weld::TreeIter& rEntry);
111 void deleteEntry(const weld::TreeIter& rEntry);
112 css::uno::Reference<css::script::browse::XBrowseNode> getBrowseNode(const weld::TreeIter& rEntry);
113 css::uno::Reference<css::frame::XModel> getModel(const weld::TreeIter& rEntry);
114 OUString getListOfChildren( const css::uno::Reference< css::script::browse::XBrowseNode >& node, int depth );
115 void StoreCurrentSelection();
116 void RestorePreviousSelection();
118 void Init(std::u16string_view language);
119 void delUserData(const weld::TreeIter& rIter);
120 void deleteTree(const weld::TreeIter& rIter);
121 void deleteAllTree();
122 void insertEntry(OUString const & rText, OUString const & rBitmap,
123 const weld::TreeIter* pParent,
124 bool bChildrenOnDemand,
125 std::unique_ptr< SFEntry > && aUserData,
126 std::u16string_view factoryURL, bool bSelect);
127 void insertEntry(OUString const & rText, OUString const & rBitmap,
128 const weld::TreeIter* pParent,
129 bool bChildrenOnDemand,
130 std::unique_ptr< SFEntry > && aUserData,
131 bool bSelect);
133 void RequestSubEntries(const weld::TreeIter& rRootEntry,
134 css::uno::Reference< css::script::browse::XBrowseNode > const & node,
135 css::uno::Reference< css::frame::XModel>& model);
137 static css::uno::Reference< css::script::browse::XBrowseNode >
138 getLangNodeFromRootNode( css::uno::Reference< css::script::browse::XBrowseNode > const & root, std::u16string_view language );
140 static css::uno::Reference< css::uno::XInterface > getDocumentModel( css::uno::Reference< css::uno::XComponentContext > const & xCtx, std::u16string_view docName );
142 public:
143 // prob need another arg in the ctor
144 // to specify the language or provider
145 SvxScriptOrgDialog(weld::Window* pParent, OUString language);
146 virtual ~SvxScriptOrgDialog() override;
148 virtual short run() override;
151 class SvxScriptErrorDialog
153 private:
154 struct DialogData {
155 weld::Window* pParent;
156 OUString sMessage;
159 DECL_STATIC_LINK( SvxScriptErrorDialog, ShowDialog, void*, void );
161 public:
163 static void ShowAsyncErrorDialog( weld::Window* pParent, css::uno::Any const & aException );
166 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */