File: wnumberrate.h

package info (click to toggle)
mixxx 1.4.2-1.1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 10,676 kB
  • ctags: 4,130
  • sloc: ansic: 35,627; cpp: 27,118; xml: 3,691; sh: 417; makefile: 54
file content (35 lines) | stat: -rw-r--r-- 662 bytes parent folder | download | duplicates (2)
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
//
// C++ Interface: wnumberpos
//
// Description: 
//
//
// Author: Tue Haste Andersen <haste@diku.dk>, (C) 2003
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef WNUMBERRATE_H
#define WNUMBERRATE_H

#include "wnumber.h"
class ControlObjectThreadMain;

/**
@author Tue Haste Andersen
*/

class WNumberRate : public WNumber
{
    Q_OBJECT
public:
    WNumberRate(const char *group, QWidget *parent=0, const char *name=0);
    ~WNumberRate();
    void setValue(double dValue);

private:
    /** Pointer to control object for rate */
    ControlObjectThreadMain *m_pRateControl, *m_pRateRangeControl, *m_pRateDirControl;
};

#endif