~ubuntu-branches/ubuntu/raring/muse/raring

« back to all changes in this revision

Viewing changes to muse/transpose.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2011-08-12 11:16:41 UTC
  • mfrom: (1.1.9) (10.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20110812111641-sjz0e93fr0ozfv0b
Tags: 2.0~beta2-1
* New maintainer (see bug 637185#12), thanks Daniel!
* New upstream release (Closes: #627371):
  - New interface Qt4-based (Closes: #604584)
* Refresh packaging:
  - Move to DH7 and source format 3.0 (quilt).
  - Refresh patchset.
  - Fix a bunch lintian warnings.
  - debian/postinst:
    + Use set -e in the body rather than pass -e on the #! line to make it
      have actually effect if it is run by hand with "sh /path/to/script".
  - Update instructions on how-to increase RTC clock frequency.
    Thanks to Torquil Macdonald Sørensen for the report (Closes: #570833).
  - Bump Standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#ifndef __TRANSPOSE_H__
3
3
#define __TRANSPOSE_H__
4
4
 
5
 
#include "transposebase.h"
 
5
#include "ui_transposebase.h"
 
6
 
 
7
class QButtonGroup;
6
8
 
7
9
//---------------------------------------------------------
8
10
//   transpose widget
9
11
//---------------------------------------------------------
10
12
 
11
 
class Transpose : public TransposeDialogBase {
 
13
class Transpose : public QDialog, public Ui::TransposeDialogBase {
12
14
      Q_OBJECT
13
15
 
 
16
     QButtonGroup* buttonGroup1;
 
17
     QButtonGroup* buttonGroup2;
 
18
 
14
19
   private slots:
15
20
      virtual void accept();
16
21
 
17
22
   public:
18
 
      Transpose(QWidget* parent=0, const char* name=0);
 
23
      Transpose(QWidget* parent=0);
19
24
      };
20
25
 
21
26
#endif