File: newwizard.h

package info (click to toggle)
musescore3 3.2.3%2Bdfsg2-16
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 214,188 kB
  • sloc: cpp: 291,198; xml: 200,238; sh: 3,779; ansic: 1,447; python: 393; makefile: 244; perl: 82; pascal: 79
file content (221 lines) | stat: -rw-r--r-- 7,291 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
//=============================================================================
//  MusE Score
//  Linux Music Score Editor
//
//  Copyright (C) 2008-2009 Werner Schweer and others
//
//  This program is free software; you can redistribute it and/or modify
//  it under the terms of the GNU General Public License version 2.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program; if not, write to the Free Software
//  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//=============================================================================

#ifndef __NEWWIZARD_H__
#define __NEWWIZARD_H__

#include "ui_timesigwizard.h"
#include "ui_newwizard.h"

#include <QWizard>

#include "libmscore/timesig.h"
#include "libmscore/key.h"
#include "libmscore/fraction.h"

namespace Ms {

class Score;
class Palette;
class StaffListItem;
class InstrumentsWidget;
class TemplateBrowser;

//---------------------------------------------------------
//   TimesigWizard
//---------------------------------------------------------

class TimesigWizard : public QWidget, private Ui::TimesigWizard {
      Q_OBJECT

   private slots:
      void commonTimeToggled(bool);
      void cutTimeToggled(bool);
      void fractionToggled(bool);

   public:
      TimesigWizard(QWidget* parent = 0);
      int measures() const;
      Fraction timesig() const;
      bool pickup(int* z, int* n) const;
      TimeSigType type() const;
      };

//---------------------------------------------------------
//   TitleWizard
//---------------------------------------------------------

class TitleWizard : public QWidget, public Ui::NewWizard {
      Q_OBJECT

   public:
      TitleWizard(QWidget* parent = 0);
      };

//---------------------------------------------------------
//   NewWizardInfoPage
//    Enter score information such as title and composer
//---------------------------------------------------------

class NewWizardInfoPage : public QWizardPage {
      Q_OBJECT

      TitleWizard* w;

   public:
      NewWizardInfoPage(QWidget* parent = 0);
      QString title() const              { return w->title->text();      }
      QString subtitle() const           { return w->subtitle->text();   }
      QString composer() const           { return w->composer->text();   }
      QString poet() const               { return w->poet->text();       }
      QString copyright() const          { return w->copyright->text();  }
      virtual void initializePage() override;
      };

//---------------------------------------------------------
//   NewWizardInstrumentsPage
//    Choose instruments to appear in the score
//---------------------------------------------------------

class NewWizardInstrumentsPage : public QWizardPage {
      Q_OBJECT

      bool complete;
      InstrumentsWidget* instrumentsWidget;

   public slots:
      void setComplete(bool);

   public:
      NewWizardInstrumentsPage(QWidget* parent = 0);
      virtual bool isComplete() const override;
      void createInstruments(Score* s);
      virtual void initializePage() override;
      };

//---------------------------------------------------------
//   NewWizardTimesigPage
//    Choose time signature for the score
//---------------------------------------------------------

class NewWizardTimesigPage : public QWizardPage {
      Q_OBJECT

      TimesigWizard* w;

   public:
      NewWizardTimesigPage(QWidget* parent = 0);
      int measures() const                     { return w->measures();   }
      Fraction timesig() const                 { return w->timesig();    }
      bool pickupMeasure(int* z, int* n) const { return w->pickup(z, n); }
      TimeSigType timesigType() const          { return w->type();       }
      };

//---------------------------------------------------------
//   NewWizardTemplatePage
//    Choose a template on which to base the score
//---------------------------------------------------------

class NewWizardTemplatePage : public QWizardPage {
      Q_OBJECT

      TemplateBrowser* templateFileBrowser;
      QString path;

   private slots:
      void templateChanged(const QString&);
      void fileAccepted(const QString&);

   public:
      NewWizardTemplatePage(QWidget* parent = 0);
      virtual bool isComplete() const override;
      QString templatePath() const;
      virtual void initializePage();
      void buildTemplatesList();
      };

//---------------------------------------------------------
//   NewWizardKeysigPage
//    Choose key signature for the score
//---------------------------------------------------------

class NewWizardKeysigPage : public QWizardPage {
      Q_OBJECT

      Palette* sp;
      QDoubleSpinBox* _tempo;
      QGroupBox* tempoGroup;

   public:
      NewWizardKeysigPage(QWidget* parent = 0);
      virtual bool isComplete() const override { return true; }
      KeySigEvent keysig() const;
      double tempo() const            { return _tempo->value(); }
      bool createTempo() const        { return tempoGroup->isChecked(); }
      void init();
      };

//---------------------------------------------------------
//   NewWizard
//    New Score Wizard - create a new score
//---------------------------------------------------------

class NewWizard : public QWizard {
      Q_OBJECT

      NewWizardInfoPage* infoPage;
      NewWizardInstrumentsPage* instrumentsPage;
      NewWizardTimesigPage* timesigPage;
      NewWizardTemplatePage* templatePage;
      NewWizardKeysigPage* keysigPage;

      virtual void hideEvent(QHideEvent*);

   private slots:
      void idChanged(int);

   public:
      NewWizard(QWidget* parent = 0);
      friend class QWizardPage;
      virtual int nextId() const;

      enum Page { Invalid = -1, Type, Instruments, Template, Keysig, Timesig};

      QString templatePath() const       { return templatePage->templatePath(); }
      int measures() const               { return timesigPage->measures();    }
      Fraction timesig() const           { return timesigPage->timesig();     }
      void createInstruments(Score* s)   { instrumentsPage->createInstruments(s); }
      QString title() const              { return infoPage->title();       }
      QString subtitle() const           { return infoPage->subtitle();    }
      QString composer() const           { return infoPage->composer();    }
      QString poet() const               { return infoPage->poet();        }
      QString copyright() const          { return infoPage->copyright();   }
      KeySigEvent keysig() const         { return keysigPage->keysig();      }
      bool pickupMeasure(int* z, int* n) const { return timesigPage->pickupMeasure(z, n); }
      TimeSigType timesigType() const     { return timesigPage->timesigType();       }
      double tempo() const                { return keysigPage->tempo();       }
      bool createTempo() const            { return keysigPage->createTempo(); }
      bool emptyScore() const;
      void updateValues() const;
      };


} // namespace Ms
#endif