~ubuntu-branches/ubuntu/karmic/muse/karmic-proposed

« back to all changes in this revision

Viewing changes to mixer/panknob.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-04-23 17:28:23 UTC
  • Revision ID: james.westby@ubuntu.com-20020423172823-w8yplzr81a759xa3
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//=========================================================
 
2
//  MusE
 
3
//  Linux Music Editor
 
4
//  $Id: panknob.h,v 1.2 2001/11/20 15:19:33 muse Exp $
 
5
//
 
6
//  (C) Copyright 2000 Werner Schweer (ws@seh.de)
 
7
//=========================================================
 
8
 
 
9
#ifndef __PANKNOB_H__
 
10
#define __PANKNOB_H__
 
11
 
 
12
#include "knob.h"
 
13
 
 
14
class AudioNode;
 
15
class AudioThread;
 
16
 
 
17
//---------------------------------------------------------
 
18
//   PanKnob
 
19
//---------------------------------------------------------
 
20
 
 
21
class PanKnob : public Knob {
 
22
      Q_OBJECT
 
23
      AudioNode* src;
 
24
 
 
25
   private slots:
 
26
      void valueChanged(double);
 
27
 
 
28
   public:
 
29
      PanKnob(QWidget* parent, AudioNode*);
 
30
      };
 
31
 
 
32
#endif
 
33