1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
21 #include <vcl/weld.hxx>
27 namespace sfx2
{ class FileDialogHelper
; }
29 class SwJavaEditDialog
: public weld::GenericDialogController
38 SwScriptField
* m_pField
;
39 std::unique_ptr
<SwFieldMgr
> m_pMgr
;
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);
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: */