You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.5 KiB
56 lines
1.5 KiB
/***************************************************************************
|
|
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
|
|
|
|
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
|