MuseScore  3.4
Music composition and notation
offsetSelect.h
Go to the documentation of this file.
1 //=============================================================================
2 // MuseScore
3 // Music Composition & Notation
4 //
5 // Copyright (C) 2017 Werner Schweer and others
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 // as published by the Free Software Foundation and appearing in
10 // the file LICENSE.GPL
11 //=============================================================================
12 
13 #ifndef __OFFSET_SELECT_H__
14 #define __OFFSET_SELECT_H__
15 
16 #include "ui_offset_select.h"
17 
18 namespace Ms {
19 
20 //---------------------------------------------------------
21 // OffsetSelect
22 //---------------------------------------------------------
23 
24 class OffsetSelect : public QWidget, public Ui::OffsetSelect {
25  Q_OBJECT
26 
27  void blockOffset(bool val);
28 
29  private slots:
30  void _offsetChanged();
31 
32  signals:
33  void offsetChanged(const QPointF&);
34 
35  public:
36  OffsetSelect(QWidget* parent);
37  void setSuffix(const QString&);
38  QPointF offset() const;
39  void setOffset(const QPointF&);
40  void showRaster(bool);
41  };
42 
43 }
44 
45 
46 #endif
47 
48 
void offsetChanged(const QPointF &)
void setSuffix(const QString &)
Definition: offsetSelect.cpp:51
void showRaster(bool)
Definition: offsetSelect.cpp:61
Definition: offsetSelect.h:24
OffsetSelect(QWidget *parent)
Definition: offsetSelect.cpp:24
void setOffset(const QPointF &)
Definition: offsetSelect.cpp:99
Definition: aeolus.cpp:26
void _offsetChanged()
Definition: offsetSelect.cpp:71
void blockOffset(bool val)
Definition: offsetSelect.cpp:89
QPointF offset() const
Definition: offsetSelect.cpp:80