annotate libgui/src/release-notes.h @ 31649:deb553ac2c54

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Tue, 06 Dec 2022 15:45:27 -0500
parents 431f80aba37a 29d734430e5f
children 5f11de0e7440
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
29836
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
1 ////////////////////////////////////////////////////////////////////////
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
2 //
30564
796f54d4ddbf update Octave Project Developers copyright for the new year
John W. Eaton <jwe@octave.org>
parents: 29836
diff changeset
3 // Copyright (C) 2011-2022 The Octave Project Developers
29836
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
4 //
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
5 // See the file COPYRIGHT.md in the top-level directory of this
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
6 // distribution or <https://octave.org/copyright/>.
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
7 //
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
8 // This file is part of Octave.
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
9 //
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
10 // Octave is free software: you can redistribute it and/or modify it
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
11 // under the terms of the GNU General Public License as published by
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
12 // the Free Software Foundation, either version 3 of the License, or
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
13 // (at your option) any later version.
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
14 //
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
15 // Octave is distributed in the hope that it will be useful, but
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
16 // WITHOUT ANY WARRANTY; without even the implied warranty of
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
18 // GNU General Public License for more details.
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
19 //
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
20 // You should have received a copy of the GNU General Public License
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
21 // along with Octave; see the file COPYING. If not, see
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
22 // <https://www.gnu.org/licenses/>.
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
23 //
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
24 ////////////////////////////////////////////////////////////////////////
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
25
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
26 #if ! defined (octave_release_notes_h)
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
27 #define octave_release_notes_h 1
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
28
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
29 #include <QString>
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
30 #include <QWidget>
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
31
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
32 class QTextBrowser;
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
33
31646
c6d54dd31a7e maint: Use macros to begin/end C++ namespaces.
John W. Eaton <jwe@octave.org>
parents: 30964
diff changeset
34 OCTAVE_BEGIN_NAMESPACE(octave)
c6d54dd31a7e maint: Use macros to begin/end C++ namespaces.
John W. Eaton <jwe@octave.org>
parents: 30964
diff changeset
35
29836
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
36 class release_notes : public QWidget
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
37 {
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
38 Q_OBJECT
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
39
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
40 public:
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
41
31625
b26b768f23a4 eliminate base_qobject argument from release_notes constructor
John W. Eaton <jwe@octave.org>
parents: 30964
diff changeset
42 release_notes (void);
29836
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
43
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
44 ~release_notes (void) = default;
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
45
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
46 public slots:
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
47
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
48 void display (void);
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
49
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
50 private:
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
51
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
52 QTextBrowser *m_browser;
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
53 QString m_release_notes_icon;
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
54 };
31646
c6d54dd31a7e maint: Use macros to begin/end C++ namespaces.
John W. Eaton <jwe@octave.org>
parents: 30964
diff changeset
55
c6d54dd31a7e maint: Use macros to begin/end C++ namespaces.
John W. Eaton <jwe@octave.org>
parents: 30964
diff changeset
56 OCTAVE_END_NAMESPACE(octave)
29836
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
57
56465c0739fa allow release notes window to be opened from command line
John W. Eaton <jwe@octave.org>
parents:
diff changeset
58 #endif