summaryrefslogtreecommitdiff
path: root/muse2/muse/midiedit/quantconfig.h
blob: 4466cdf0a3525e55ac85b0178bc48023bf4772c6 (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
//=========================================================
//  MusE
//  Linux Music Editor
//  $Id: quantconfig.h,v 1.1.1.1 2003/10/27 18:52:23 wschweer Exp $
//
//  (C) Copyright 1999/2000 Werner Schweer (ws@seh.de)
//=========================================================

#ifndef __QCONFIG_H__
#define __QCONFIG_H__

#include <QDialog>

//---------------------------------------------------------
//   QuantConfig
//---------------------------------------------------------

class QuantConfig : public QDialog {
      Q_OBJECT

   signals:
      void setQuantStrength(int);
      void setQuantLimit(int);
      void setQuantLen(bool);

   public:
      QuantConfig(int, int, bool);
      };


#endif