MuseScore/mscore/textcursor.h
Joachim Schmitz 7043cdaac5 convert "enum class" to "enum class : char"
or "enum class : signed char" or even "enum class: short", whatever/whenever feasible on all exsting "enum class" that don't have it yet, also fixing some signed vs. unadorned char. This
should reduce the memory footprint.
2014-05-23 10:35:15 +02:00

66 lines
1.8 KiB
C++

//=============================================================================
// MuseScore
// Music Composition & Notation
//
// Copyright (C) 2013 Werner Schweer
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2
// as published by the Free Software Foundation and appearing in
// the file LICENCE.GPL
//=============================================================================
#ifndef __TEXTCURSOR_H__
#define __TEXTCURSOR_H__
namespace Ms {
class ScoreView;
//---------------------------------------------------------
// CursorType
//---------------------------------------------------------
enum class CursorType : char {
LOOP_IN,
LOOP_OUT,
POS
};
//---------------------------------------------------------
// PositionCursor
//---------------------------------------------------------
class PositionCursor {
ScoreView* _sv;
QRectF _rect;
bool _visible { false };
QColor _color;
int _tick { 0 };
CursorType _type { CursorType::POS };
public:
PositionCursor(ScoreView* sv) : _sv(sv) {}
void setType(CursorType t);
QRectF rect() const { return _rect; }
void setRect(const QRectF& r) { _rect = r; }
bool visible() const { return _visible; }
void setVisible(bool val) { _visible = val; }
QColor color() const { return _color; }
void setColor(const QColor& c) { _color = c; }
int tick() const { return _tick; }
void setTick(int val) { _tick = val; }
void update(QWidget*);
void move(int tick);
void paint(QPainter*);
QRectF bbox() const;
};
}
#endif