bump product version to 5.0.4.1
[LibreOffice.git] / basctl / source / basicide / brkdlg.hxx
blob50d18543d84670fccd13d23d777e5659360f06ec
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 : public ModalDialog
33 private:
34 VclPtr<ComboBox> m_pComboBox;
35 VclPtr<OKButton> m_pOKButton;
36 VclPtr<PushButton> m_pNewButton;
37 VclPtr<PushButton> m_pDelButton;
38 VclPtr<CheckBox> m_pCheckBox;
39 VclPtr<NumericField> m_pNumericField;
41 BreakPointList & m_rOriginalBreakPointList;
42 BreakPointList m_aModifiedBreakPointList;
44 protected:
45 void CheckButtons();
46 DECL_LINK( CheckBoxHdl, ::CheckBox * );
47 DECL_LINK( ComboBoxHighlightHdl, ComboBox * );
48 DECL_LINK( EditModifyHdl, Edit * );
49 DECL_LINK( ButtonHdl, Button * );
50 void UpdateFields( BreakPoint* pBrk );
51 BreakPoint* GetSelectedBreakPoint();
54 public:
55 BreakPointDialog( vcl::Window* pParent, BreakPointList& rBrkList );
56 virtual ~BreakPointDialog();
57 virtual void dispose() SAL_OVERRIDE;
59 void SetCurrentBreakPoint( BreakPoint* pBrk );
62 } // namespace basctl
64 #endif // INCLUDED_BASCTL_SOURCE_BASICIDE_BRKDLG_HXX
66 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */