blob: 8d279aa0ae96fb64577b8f4a487de9ca9fd6fa71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
#ifndef CUESHEETEDITOR_H
#define CUESHEETEDITOR_H
#include <kdialog.h>
#include <ktextedit.h>
//class KTextEdit;
class KPushButton;
/**
* @short The editor tool for cuesheet files
* @author Daniel Faust <hessijames@gmail.com>
* @version 0.3
*/
class CuesheetEditor : public KDialog
{
Q_OBJECT
public:
/**
* Default Constructor
*/
CuesheetEditor( TQWidget* parent=0, const char* name=0, bool modal=true, WFlags f=0 );
/**
* Default Destructor
*/
virtual ~CuesheetEditor();
void setContent( const TQString& text ) { tTextEdit->setText( text ); }
private slots:
void help();
void convert();
void generate();
void shift();
private:
KTextEdit* tTextEdit;
KPushButton* pHelp;
KPushButton* pGenerate;
KPushButton* pConvert;
KPushButton* pShift;
KPushButton* pOk;
};
#endif // CUESHEETEDITOR_H
|