blob: bd2c39dae2e4b78123bd79f8bd128ac656efb8d6 (
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
52
53
54
55
56
57
|
/***************************************************************************
copyright : (C) 2003 by Arnold Krille
email : arnold@arnoldarts.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; version 2 of the License. *
* *
***************************************************************************/
#ifndef KRECFILEVIEW_H
#define KRECFILEVIEW_H
#include <tqwidget.h>
class KRecFile;
class KRecBuffer;
class TQBoxLayout;
class TQLabel;
class TQLineEdit;
class KRecFileWidget;
class KRecBufferWidget;
class KRecTimeBar;
class KRecTimeDisplay;
class KRecFileView : virtual public TQWidget {
Q_OBJECT
TQ_OBJECT
public:
KRecFileView( TQWidget*, const char* =0 );
~KRecFileView();
void setFile( KRecFile* );
public slots:
/// Mainly calls resize() on the KRecFileWidget.
void updateGUI();
private slots:
void setPos( int );
void setSize( int );
void setFilename( const TQString & );
private:
TQBoxLayout *_layout_td, *_layout_lr;
TQLabel *_filename;
KRecFile *_file;
KRecFileWidget *_fileview;
KRecTimeBar *_timebar;
KRecTimeDisplay *_timedisplay;
};
#endif
// vim:sw=4:ts=4
|