Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_JAVAEDIT_HXX
20 : #define INCLUDED_SW_SOURCE_UIBASE_INC_JAVAEDIT_HXX
21 :
22 : #include <svx/stddlg.hxx>
23 : #include <vcl/fixed.hxx>
24 : #include <svtools/svmedit.hxx>
25 : #include <vcl/button.hxx>
26 :
27 : class SwWrtShell;
28 : class SwFieldMgr;
29 : class SwScriptField;
30 :
31 : namespace sfx2 { class FileDialogHelper; }
32 :
33 : class SwJavaEditDialog : public SvxStandardDialog
34 : {
35 : private:
36 : VclPtr<Edit> m_pTypeED;
37 : VclPtr<RadioButton> m_pUrlRB;
38 : VclPtr<RadioButton> m_pEditRB;
39 : VclPtr<PushButton> m_pUrlPB;
40 : VclPtr<Edit> m_pUrlED;
41 : VclPtr<VclMultiLineEdit> m_pEditED;
42 :
43 : VclPtr<OKButton> m_pOKBtn;
44 : VclPtr<PushButton> m_pPrevBtn;
45 : VclPtr<PushButton> m_pNextBtn;
46 :
47 : OUString aText;
48 : OUString aType;
49 :
50 : bool bNew;
51 : bool bIsUrl;
52 :
53 : SwScriptField* pField;
54 : SwFieldMgr* pMgr;
55 : SwWrtShell* pSh;
56 : sfx2::FileDialogHelper* pFileDlg;
57 : VclPtr<vcl::Window> pOldDefDlgParent;
58 :
59 : DECL_LINK(OKHdl, void *);
60 : DECL_LINK(PrevHdl, void *);
61 : DECL_LINK(NextHdl, void *);
62 : DECL_LINK(RadioButtonHdl, void *);
63 : DECL_LINK(InsertFileHdl, PushButton *);
64 : DECL_LINK(DlgClosedHdl, void *);
65 :
66 : virtual void Apply() SAL_OVERRIDE;
67 :
68 : void CheckTravel();
69 : void SetField();
70 :
71 : public:
72 : SwJavaEditDialog(vcl::Window* pParent, SwWrtShell* pWrtSh);
73 : virtual ~SwJavaEditDialog();
74 : virtual void dispose() SAL_OVERRIDE;
75 :
76 0 : OUString GetScriptText() const { return aText; }
77 :
78 0 : OUString GetScriptType() const { return aType; }
79 :
80 0 : bool IsUrl() const { return bIsUrl; }
81 0 : bool IsNew() const { return bNew; }
82 : bool IsUpdate() const;
83 : };
84 :
85 : #endif
86 :
87 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|