blob: cceea61de48eac6771c50a40855238232b078899 (
plain)
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
|
//=========================================================
// MusE
// Linux Music Editor
// $Id: metronomgui.h,v 1.3 2005/10/05 17:02:03 lunar_shuttle Exp $
//
// (C) Copyright 2005 Werner Schweer (ws@seh.de)
//=========================================================
#ifndef __METRONOMGUI_H__
#define __METRONOMGUI_H__
#include "ui_metronomgui.h"
class Metronom;
//---------------------------------------------------------
// MetronomGui
//---------------------------------------------------------
class MetronomGui : public QDialog, public Ui::MetronomBase {
Q_OBJECT
Metronom* metronom;
private slots:
void beatNoteChanged(int);
void measureVelocityChanged(int);
void measureNoteChanged(int);
void beatVelocityChanged(int);
public:
MetronomGui(Metronom*, QWidget* parent=0);
void init();
};
#endif
|