LibreOffice Module sfx2 (master) 1
checkin.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
10#pragma once
11
12#include <vcl/weld.hxx>
13
15{
16private:
17 std::unique_ptr<weld::TextView> m_xCommentED;
18 std::unique_ptr<weld::CheckButton> m_xMajorCB;
19 std::unique_ptr<weld::Button> m_xOKBtn;
20
21 DECL_LINK(OKHdl, weld::Button&, void);
22
23public:
25 virtual ~SfxCheckinDialog() override;
26
27 OUString GetComment() const;
28 bool IsMajor() const;
29};
30
31/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
SfxCheckinDialog(weld::Window *pParent)
Definition: checkin.cxx:12
std::unique_ptr< weld::CheckButton > m_xMajorCB
Definition: checkin.hxx:18
bool IsMajor() const
Definition: checkin.cxx:30
virtual ~SfxCheckinDialog() override
Definition: checkin.cxx:21
OUString GetComment() const
Definition: checkin.cxx:25
DECL_LINK(OKHdl, weld::Button &, void)
std::unique_ptr< weld::TextView > m_xCommentED
Definition: checkin.hxx:17
std::unique_ptr< weld::Button > m_xOKBtn
Definition: checkin.hxx:19