nss: upgrade to release 3.73
[LibreOffice.git] / sw / source / uibase / inc / javaedit.hxx
blobece6743377acbdafbe89d5c0e348867477348238
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 #pragma once
21 #include <vcl/weld.hxx>
23 class SwWrtShell;
24 class SwFieldMgr;
25 class SwScriptField;
27 namespace sfx2 { class FileDialogHelper; }
29 class SwJavaEditDialog : public weld::GenericDialogController
31 private:
32 OUString m_aText;
33 OUString m_aType;
35 bool m_bNew;
36 bool m_bIsUrl;
38 SwScriptField* m_pField;
39 std::unique_ptr<SwFieldMgr> m_pMgr;
40 SwWrtShell* m_pSh;
41 std::unique_ptr<sfx2::FileDialogHelper> m_pFileDlg;
43 std::unique_ptr<weld::Entry> m_xTypeED;
44 std::unique_ptr<weld::RadioButton> m_xUrlRB;
45 std::unique_ptr<weld::RadioButton> m_xEditRB;
46 std::unique_ptr<weld::Button> m_xUrlPB;
47 std::unique_ptr<weld::Entry> m_xUrlED;
48 std::unique_ptr<weld::TextView> m_xEditED;
49 std::unique_ptr<weld::Button> m_xOKBtn;
50 std::unique_ptr<weld::Button> m_xPrevBtn;
51 std::unique_ptr<weld::Button> m_xNextBtn;
53 DECL_LINK(OKHdl, weld::Button&, void);
54 DECL_LINK(PrevHdl, weld::Button&, void);
55 DECL_LINK(NextHdl, weld::Button&, void);
56 DECL_LINK(RadioButtonHdl, weld::Button&, void);
57 DECL_LINK(InsertFileHdl, weld::Button&, void);
58 DECL_LINK(DlgClosedHdl, sfx2::FileDialogHelper *, void);
60 void CheckTravel();
61 void SetField();
63 public:
64 SwJavaEditDialog(weld::Window* pParent, SwWrtShell* pWrtSh);
65 virtual ~SwJavaEditDialog() override;
67 const OUString& GetScriptText() const { return m_aText; }
69 const OUString& GetScriptType() const { return m_aType; }
71 bool IsUrl() const { return m_bIsUrl; }
72 bool IsNew() const { return m_bNew; }
73 bool IsUpdate() const;
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */