Version 6.1.0.2, tag libreoffice-6.1.0.2
[LibreOffice.git] / basctl / source / basicide / brkdlg.hxx
blob6b3b42035f4ea8a607c9a0f16dbe0fb09bbcade1
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #ifndef INCLUDED_BASCTL_SOURCE_BASICIDE_BRKDLG_HXX
21 #define INCLUDED_BASCTL_SOURCE_BASICIDE_BRKDLG_HXX
23 #include <vcl/dialog.hxx>
25 #include <vcl/button.hxx>
26 #include <vcl/field.hxx>
28 namespace basctl
31 class BreakPointDialog final : public ModalDialog
33 VclPtr<ComboBox> m_pComboBox;
34 VclPtr<OKButton> m_pOKButton;
35 VclPtr<PushButton> m_pNewButton;
36 VclPtr<PushButton> m_pDelButton;
37 VclPtr<CheckBox> m_pCheckBox;
38 VclPtr<NumericField> m_pNumericField;
40 BreakPointList & m_rOriginalBreakPointList;
41 BreakPointList m_aModifiedBreakPointList;
43 void CheckButtons();
44 DECL_LINK( CheckBoxHdl, Button*, void );
45 DECL_LINK( ComboBoxHighlightHdl, ComboBox&, void );
46 DECL_LINK( EditModifyHdl, Edit&, void );
47 DECL_LINK( ButtonHdl, Button*, void );
48 void UpdateFields( BreakPoint const * pBrk );
49 BreakPoint* GetSelectedBreakPoint();
52 public:
53 BreakPointDialog( vcl::Window* pParent, BreakPointList& rBrkList );
54 virtual ~BreakPointDialog() override;
55 virtual void dispose() override;
57 void SetCurrentBreakPoint( BreakPoint const * pBrk );
60 } // namespace basctl
62 #endif // INCLUDED_BASCTL_SOURCE_BASICIDE_BRKDLG_HXX
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */