LibreOffice Module sw (master) 1
gotodlg.hxx
Go to the documentation of this file.
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
20#ifndef INCLUDED_SW_SOURCE_UIBASE_INC_GOTODLG_HXX
21#define INCLUDED_SW_SOURCE_UIBASE_INC_GOTODLG_HXX
22
23#include <sfx2/bindings.hxx>
24#include <vcl/weld.hxx>
25
26class SwView;
27
29{
30public:
31 SwGotoPageDlg(weld::Window *parent, SfxBindings& rBindings);
32
33 sal_uInt16 GetPageSelection() const
34 {
35 return mxMtrPageCtrl->get_text().toUInt32();
36 }
37
38private:
41 sal_uInt16 mnMaxPageCnt;
42
43 std::unique_ptr<weld::SpinButton> mxMtrPageCtrl;
44 std::unique_ptr<weld::Label> mxPageNumberLbl;
45
46 SwView* GetCreateView() const;
47 sal_uInt16 GetPageInfo();
48
49 DECL_LINK( PageModifiedHdl, weld::Entry&, void );
50};
51
52#endif
53
54/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
DECL_LINK(PageModifiedHdl, weld::Entry &, void)
SfxBindings & m_rBindings
Definition: gotodlg.hxx:40
sal_uInt16 mnMaxPageCnt
Definition: gotodlg.hxx:41
SwView * m_pCreateView
Definition: gotodlg.hxx:39
SwGotoPageDlg(weld::Window *parent, SfxBindings &rBindings)
Definition: gotodlg.cxx:29
SwView * GetCreateView() const
Definition: gotodlg.cxx:67
std::unique_ptr< weld::SpinButton > mxMtrPageCtrl
Definition: gotodlg.hxx:43
sal_uInt16 GetPageSelection() const
Definition: gotodlg.hxx:33
sal_uInt16 GetPageInfo()
Definition: gotodlg.cxx:88
std::unique_ptr< weld::Label > mxPageNumberLbl
Definition: gotodlg.hxx:44
Definition: view.hxx:146