nss: upgrade to release 3.73
[LibreOffice.git] / sw / source / core / inc / DropDownFormFieldButton.hxx
blobffaa2af2d2b87a521295f26c11548d2c652edced
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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 */
10 #ifndef INCLUDED_SW_SOURCE_CORE_TEXT_DROPDOWNFORMEFIELDBUTTO_HXX
11 #define INCLUDED_SW_SOURCE_CORE_TEXT_DROPDOWNFORMEFIELDBUTTO_HXX
13 #include "FormFieldButton.hxx"
15 class SwEditWin;
16 class FloatingWindow;
17 namespace sw::mark
19 class DropDownFieldmark;
22 /**
23 * This button is shown when the cursor is on a drop-down form field.
24 * The user can select an item of the field using this button while filling in a form.
26 class DropDownFormFieldButton : public FormFieldButton
28 public:
29 DropDownFormFieldButton(SwEditWin* pEditWin, sw::mark::DropDownFieldmark& rFieldMark);
30 virtual ~DropDownFormFieldButton() override;
32 virtual void InitPopup() override;
35 #endif
37 /* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */