~ubuntu-branches/ubuntu/hoary/muse/hoary

« back to all changes in this revision

Viewing changes to mplugins/mrconfig.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: mrconfig.h,v 1.1 2001/11/29 11:19:34 muse Exp $
 
5
//
 
6
//  (C) Copyright 2001 Werner Schweer (ws@seh.de)
 
7
//=========================================================
 
8
 
 
9
#ifndef __MRCONFIG_H__
 
10
#define __MRCONFIG_H__
 
11
 
 
12
#include "mrconfigbase.h"
 
13
 
 
14
//---------------------------------------------------------
 
15
//   MRConfig
 
16
//---------------------------------------------------------
 
17
 
 
18
class MRConfig : public MRConfigBase {
 
19
      Q_OBJECT
 
20
 
 
21
      virtual void closeEvent(QCloseEvent*);
 
22
 
 
23
   signals:
 
24
      void hideWindow();
 
25
 
 
26
   private slots:
 
27
      void setRcEnable(bool);
 
28
      void setRcStopNote(int);
 
29
      void setRcRecordNote(int);
 
30
      void setRcGotoLeftMarkNote(int);
 
31
      void setRcPlayNote(int);
 
32
 
 
33
   public:
 
34
      MRConfig(QWidget* parent=0, const char* name=0, WFlags fl = 0);
 
35
      };
 
36
 
 
37
#endif
 
38