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_INSFNOTE_HXX
20 : #define INCLUDED_SW_SOURCE_UIBASE_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 : bool bExtCharAvailable;
41 : bool bEdit;
42 :
43 : VclPtr<VclFrame> m_pNumberFrame;
44 : VclPtr<RadioButton> m_pNumberAutoBtn;
45 : VclPtr<RadioButton> m_pNumberCharBtn;
46 : VclPtr<Edit> m_pNumberCharEdit;
47 : VclPtr<PushButton> m_pNumberExtChar;
48 :
49 : // everything for the selection footnote/endnote
50 : VclPtr<RadioButton> m_pFootnoteBtn;
51 : VclPtr<RadioButton> m_pEndNoteBtn;
52 :
53 : VclPtr<PushButton> m_pOkBtn;
54 : VclPtr<PushButton> m_pPrevBT;
55 : VclPtr<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(vcl::Window * pParent, SwWrtShell &rSh, bool bEd = false);
69 : virtual ~SwInsFootNoteDlg();
70 : virtual void dispose() SAL_OVERRIDE;
71 :
72 : rtl_TextEncoding GetCharSet() { return eCharSet; }
73 : bool IsExtCharAvailable() { return bExtCharAvailable; }
74 0 : OUString GetFontName() { return m_aFontName; }
75 0 : bool IsEndNote() { return m_pEndNoteBtn->IsChecked(); }
76 0 : OUString GetStr()
77 : {
78 0 : if ( m_pNumberCharBtn->IsChecked() )
79 0 : return m_pNumberCharEdit->GetText();
80 0 : return OUString();
81 : }
82 : };
83 :
84 : #endif
85 :
86 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|