MuseScore  3.4
Music composition and notation
musescoredialogs.h
Go to the documentation of this file.
1 //=============================================================================
2 // MuseScore
3 // Music Composition & Notation
4 //
5 // Copyright (C) 2019 MuseScore BVBA
6 //
7 // This program is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License version 2.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 //=============================================================================
19 
20 #ifndef __MUSESCOREDIALOGS_H__
21 #define __MUSESCOREDIALOGS_H__
22 
23 #include "ui_measuresdialog.h"
24 #include "ui_insertmeasuresdialog.h"
25 #include "ui_aboutbox.h"
26 #include "ui_aboutmusicxmlbox.h"
27 
28 namespace Ms {
29 
30 //---------------------------------------------------------
31 // AboutBoxDialog
32 //---------------------------------------------------------
33 
34 class AboutBoxDialog : public QDialog, Ui::AboutBox {
35  Q_OBJECT
36 
37  public:
39 
40  private slots:
42  };
43 
44 //---------------------------------------------------------
45 // AboutMusicXMLBoxDialog
46 //---------------------------------------------------------
47 
48 class AboutMusicXMLBoxDialog : public QDialog, Ui::AboutMusicXMLBox {
49  Q_OBJECT
50 
51  public:
53  };
54 
55 //---------------------------------------------------------
56 // InsertMeasuresDialog
57 // Added by DK, 05.08.07
58 //---------------------------------------------------------
59 
60 class InsertMeasuresDialog : public QDialog, public Ui::InsertMeasuresDialogBase {
61  Q_OBJECT
62 
63  void hideEvent(QHideEvent*) override;
64 
65  private slots:
66  void accept() override;
67 
68  public:
69  InsertMeasuresDialog(QWidget* parent = 0);
70  };
71 
72 //---------------------------------------------------------
73 // MeasuresDialog
74 //---------------------------------------------------------
75 
76 class MeasuresDialog : public QDialog, public Ui::MeasuresDialogBase {
77  Q_OBJECT
78 
79  private slots:
80  void accept() override;
81 
82  public:
83  MeasuresDialog(QWidget* parent = 0);
84  };
85 
86 } // namespace Ms
87 
88 #endif
Definition: musescoredialogs.h:34
Definition: musescoredialogs.h:60
void copyRevisionToClipboard()
Definition: musescoredialogs.cpp:130
Definition: musescoredialogs.h:48
Definition: aeolus.cpp:26
Definition: musescoredialogs.h:76
AboutBoxDialog()
Definition: musescoredialogs.cpp:94