MuseScore/mscore/magbox.h

89 lines
2.4 KiB
C
Raw Normal View History

2012-05-26 14:49:10 +02:00
//=============================================================================
// MusE Score
// Linux Music Score Editor
// $Id: magbox.h 2460 2009-12-15 18:01:39Z wschweer $
//
// 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 __MAGBOX_H__
#define __MAGBOX_H__
2013-05-13 18:49:17 +02:00
namespace Ms {
2012-05-26 14:49:10 +02:00
class ScoreView;
//---------------------------------------------------------
// magTable
// list of strings shown in QComboBox "MagBox"
//---------------------------------------------------------
enum class MagIdx : char {
2012-05-26 14:49:10 +02:00
MAG_25, MAG_50, MAG_75, MAG_100, MAG_150, MAG_200, MAG_400, MAG_800, MAG_1600,
MAG_PAGE_WIDTH, MAG_PAGE, MAG_DBL_PAGE,
MAG_FREE
};
//---------------------------------------------------------
// MagValidator
//---------------------------------------------------------
class MagValidator : public QValidator {
Q_OBJECT
virtual State validate(QString&, int&) const;
public:
MagValidator(QObject* parent = 0);
};
//---------------------------------------------------------
// MagBox
//---------------------------------------------------------
2015-11-23 16:02:33 +01:00
class MagBox : protected QComboBox {
2012-05-26 14:49:10 +02:00
Q_OBJECT
double freeMag;
private slots:
void indexChanged(int);
2015-11-23 16:02:33 +01:00
void textChanged();
2012-05-26 14:49:10 +02:00
signals:
2015-11-23 16:02:33 +01:00
void magChanged(MagIdx);
2012-05-26 14:49:10 +02:00
public:
MagBox(QWidget* parent = 0);
void setMag(double);
void setMagIdx(MagIdx);
2015-11-23 16:02:33 +01:00
double getMag(ScoreView*) const;
double getLMag(ScoreView*) const;
void setEnabled(bool val) { QComboBox::setEnabled(val); }
QString currentText() const { return QComboBox::currentText(); }
int count() const { return QComboBox::count(); }
void removeItem(int i) { QComboBox::removeItem(i); }
2012-05-26 14:49:10 +02:00
};
2015-11-23 16:02:33 +01:00
} // namespace Ms
2012-05-26 14:49:10 +02:00
2015-11-23 16:02:33 +01:00
Q_DECLARE_METATYPE(Ms::MagIdx)
2013-05-13 18:49:17 +02:00
2012-05-26 14:49:10 +02:00
#endif