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 _SW_JAVAEDIT_HXX
20 : #define _SW_JAVAEDIT_HXX
21 :
22 : #include <svx/stddlg.hxx>
23 :
24 : #include <vcl/fixed.hxx>
25 :
26 : #include <svtools/svmedit.hxx>
27 :
28 : #include <vcl/button.hxx>
29 :
30 : #include <vcl/button.hxx>
31 :
32 : class SwWrtShell;
33 : class SwFldMgr;
34 : class SwScriptField;
35 :
36 : namespace sfx2 { class FileDialogHelper; }
37 :
38 : // class SwJavaEditDialog -------------------------------------------------
39 :
40 : class SwJavaEditDialog : public SvxStandardDialog
41 : {
42 : private:
43 : Edit* m_pTypeED;
44 : RadioButton* m_pUrlRB;
45 : RadioButton* m_pEditRB;
46 : PushButton* m_pUrlPB;
47 : Edit* m_pUrlED;
48 : VclMultiLineEdit* m_pEditED;
49 :
50 : OKButton* m_pOKBtn;
51 : PushButton* m_pPrevBtn;
52 : PushButton* m_pNextBtn;
53 :
54 : rtl::OUString aText;
55 : rtl::OUString aType;
56 :
57 : sal_Bool bNew;
58 : sal_Bool bIsUrl;
59 :
60 : SwScriptField* pFld;
61 : SwFldMgr* pMgr;
62 : SwWrtShell* pSh;
63 : sfx2::FileDialogHelper* pFileDlg;
64 : Window* pOldDefDlgParent;
65 :
66 : DECL_LINK(OKHdl, void *);
67 : DECL_LINK(PrevHdl, void *);
68 : DECL_LINK(NextHdl, void *);
69 : DECL_LINK(RadioButtonHdl, void *);
70 : DECL_LINK(InsertFileHdl, PushButton *);
71 : DECL_LINK(DlgClosedHdl, void *);
72 :
73 : virtual void Apply();
74 :
75 : void CheckTravel();
76 : void SetFld();
77 :
78 : using Window::GetText;
79 : using Window::GetType;
80 :
81 : public:
82 : SwJavaEditDialog(Window* pParent, SwWrtShell* pWrtSh);
83 : ~SwJavaEditDialog();
84 :
85 0 : rtl::OUString GetText() { return aText; }
86 :
87 0 : rtl::OUString GetType() { return aType; }
88 :
89 0 : sal_Bool IsUrl() { return bIsUrl; }
90 0 : sal_Bool IsNew() { return bNew; }
91 : sal_Bool IsUpdate();
92 : };
93 :
94 :
95 : #endif
96 :
97 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|