~ubuntu-branches/ubuntu/wily/muse/wily-proposed

« back to all changes in this revision

Viewing changes to muse/widgets/mixdowndialog.h

  • Committer: Package Import Robot
  • Author(s): Alessio Treglia
  • Date: 2011-12-03 17:12:54 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20111203171254-28b1j4lpb46r5jtl
Tags: 2.0~rc1-1
* New upstream RC release.
* Refresh patches, remove those patches not needed anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
//  Linux Music Editor
4
4
//    $Id: mixdowndialog.h,v 1.1.1.1 2003/10/27 18:54:28 wschweer Exp $
5
5
//  (C) Copyright 2001 Werner Schweer (ws@seh.de)
 
6
//
 
7
//  This program is free software; you can redistribute it and/or
 
8
//  modify it under the terms of the GNU General Public License
 
9
//  as published by the Free Software Foundation; version 2 of
 
10
//  the License, or (at your option) any later version.
 
11
//
 
12
//  This program is distributed in the hope that it will be useful,
 
13
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
//  GNU General Public License for more details.
 
16
//
 
17
//  You should have received a copy of the GNU General Public License
 
18
//  along with this program; if not, write to the Free Software
 
19
//  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
20
//
6
21
//=========================================================
7
22
 
8
23
#ifndef __MIXDOWNDIALOG_H__
12
27
 
13
28
class QWidget;
14
29
 
 
30
namespace MusECore {
15
31
class SndFile;
16
 
 
17
32
extern SndFile* getSndFile(const SndFile* sf, QWidget* parent);
 
33
}
 
34
 
 
35
namespace MusEGui {
18
36
 
19
37
//---------------------------------------------------------
20
38
//   MixdownFileDialog
22
40
 
23
41
class MixdownFileDialog : public QDialog, public Ui::MixdownFileDialogBase {
24
42
    Q_OBJECT
25
 
      SndFile* sf;
 
43
      MusECore::SndFile* sf;
26
44
 
27
45
   private slots:
28
46
      void fdialog();
29
47
      virtual void accept();
30
48
 
31
49
   public:
32
 
      MixdownFileDialog(const SndFile* f, QWidget* parent = 0,
 
50
      MixdownFileDialog(const MusECore::SndFile* f, QWidget* parent = 0,
33
51
         Qt::WFlags fl = 0);
34
 
      SndFile* sndFile() { return sf; }
 
52
      MusECore::SndFile* sndFile() { return sf; }
35
53
      };
36
54
 
 
55
}
 
56
 
37
57
#endif
38
58