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_UI_INC_INSFNOTE_HXX
20 : #define INCLUDED_SW_SOURCE_UI_INC_INSFNOTE_HXX
21 :
22 : #include <svx/stddlg.hxx>
23 :
24 : #include <vcl/button.hxx>
25 :
26 : #include <vcl/edit.hxx>
27 : #include <vcl/fixed.hxx>
28 :
29 : class SwWrtShell;
30 :
31 : class VclFrame;
32 :
33 : class SwInsFootNoteDlg: public SvxStandardDialog
34 : {
35 : SwWrtShell &rSh;
36 :
37 : // everything for the character(s)
38 : OUString m_aFontName;
39 : rtl_TextEncoding eCharSet;
40 : sal_Bool bExtCharAvailable;
41 : sal_Bool bEdit;
42 :
43 : VclFrame* m_pNumberFrame;
44 : RadioButton* m_pNumberAutoBtn;
45 : RadioButton* m_pNumberCharBtn;
46 : Edit* m_pNumberCharEdit;
47 : PushButton* m_pNumberExtChar;
48 :
49 : // everything for the selection footnote/endnote
50 : RadioButton* m_pFtnBtn;
51 : RadioButton* m_pEndNoteBtn;
52 :
53 : PushButton* m_pOkBtn;
54 : PushButton* m_pPrevBT;
55 : PushButton* m_pNextBT;
56 :
57 : DECL_LINK(NumberCharHdl, void *);
58 : DECL_LINK(NumberEditHdl, void *);
59 : DECL_LINK(NumberAutoBtnHdl, void *);
60 : DECL_LINK(NumberExtCharHdl, void *);
61 : DECL_LINK(NextPrevHdl, Button *);
62 :
63 : virtual void Apply() SAL_OVERRIDE;
64 :
65 : void Init();
66 :
67 : public:
68 : SwInsFootNoteDlg(Window * pParent, SwWrtShell &rSh, sal_Bool bEd = sal_False);
69 : virtual ~SwInsFootNoteDlg();
70 :
71 : rtl_TextEncoding GetCharSet() { return eCharSet; }
72 : sal_Bool IsExtCharAvailable() { return bExtCharAvailable; }
73 0 : OUString GetFontName() { return m_aFontName; }
74 0 : sal_Bool IsEndNote() { return m_pEndNoteBtn->IsChecked(); }
75 0 : OUString GetStr()
76 : {
77 0 : if ( m_pNumberCharBtn->IsChecked() )
78 0 : return m_pNumberCharEdit->GetText();
79 0 : return OUString();
80 : }
81 : };
82 :
83 : #endif
84 :
85 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|