~ubuntu-branches/ubuntu/breezy/kdemultimedia/breezy

« back to all changes in this revision

Viewing changes to krec/krecexport_wave.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2005-03-24 04:48:58 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050324044858-8ff88o9jxej6ii3d
Tags: 4:3.4.0-0ubuntu3
Add kubuntu_02_hide_arts_menu_entries.diff to hide artsbuilder and artscontrol k-menu entries

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
    copyright            : (C) 2003 by Arnold Krille
 
3
    email                : arnold@arnoldarts.de
 
4
 ***************************************************************************/
 
5
 
 
6
/***************************************************************************
 
7
 *                                                                         *
 
8
 *   This program is free software; you can redistribute it and/or modify  *
 
9
 *   it under the terms of the GNU General Public License as published by  *
 
10
 *   the Free Software Foundation; version 2 of the License.               *
 
11
 *                                                                         *
 
12
 ***************************************************************************/
 
13
 
 
14
#ifndef KREC_EXPORT_WAVE_H
 
15
#define KREC_EXPORT_WAVE_H
 
16
 
 
17
#include "krecexport_template.h"
 
18
 
 
19
class KTempFile;
 
20
class QFile;
 
21
 
 
22
class KRecExport_Wave : public KRecExportItem {
 
23
   Q_OBJECT
 
24
public:
 
25
        KRecExport_Wave( QObject*, const char* =0, const QStringList& =0 );
 
26
        ~KRecExport_Wave();
 
27
 
 
28
        KRecExport_Wave* newItem();
 
29
 
 
30
        QStringList extensions();
 
31
        QString exportFormat() { return QString( "Wave" ); }
 
32
public slots:
 
33
        bool initialize( const QString & );
 
34
        bool process();
 
35
        bool finalize();
 
36
 
 
37
private:
 
38
        QFile* _file;
 
39
};
 
40
 
 
41
#endif
 
42
 
 
43
// vim:sw=4:ts=4