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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/***************************************************************************
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 KRECFILEVIEWHELPERS_H
#define KRECFILEVIEWHELPERS_H
#include <qframe.h>
#include <qlabel.h>
#include <qstring.h>
#include <qpoint.h>
#include <kglobalsettings.h>
class QBoxLayout;
class AKLabel;
class QPopupMenu;
class KPopupMenu;
class KRecTimeBar : public QFrame {
Q_OBJECT
public:
KRecTimeBar( QWidget*, const char* =0 );
~KRecTimeBar();
void drawContents( QPainter* );
void mouseReleaseEvent( QMouseEvent* );
public slots:
void newPos( int );
void newSize( int );
signals:
void sNewPos( int );
private:
int _pos, _size;
};
/**
* Modes are:
* 0 - Just samples
* 1 - [hours:]mins:secs:samples
* 2 - [hours:]mins:secs:frames ( framebase from global )
* 3 - [hours:]mins:secs:msecs
*
* +100 - verbose ( [XXhours:]XXmins:XXsecs:... )
*/
class KRecTimeDisplay : public QFrame {
Q_OBJECT
public:
KRecTimeDisplay( QWidget*, const char* =0 );
~KRecTimeDisplay();
/// Resets the display to its defaultvalues
void reset();
public slots:
void newPos( int );
void newSize( int );
void newFilename( const QString & );
void newSamplingRate( int n ) { _samplingRate = n; }
void newChannels( int n ) { _channels = n; }
void newBits( int n ) { _bits = n; }
signals:
void sNewPos( int );
private slots:
void timeContextMenu( QPopupMenu* );
void timeContextMenu( const QPoint &);
void sizeContextMenu( QPopupMenu* );
void sizeContextMenu( const QPoint &);
void jumpToTime();
private:
QString positionText( int, int );
QString sizeText( int, int );
QString formatTime( const int mode, const int samples ) const;
QString _filename;
QBoxLayout *_layout;
AKLabel *_position, *_size;
KPopupMenu *_posmenu, *_sizemenu;
int _sizevalue, _posvalue;
int _samplingRate, _bits, _channels;
};
class AKLabel : public QLabel {
Q_OBJECT
public:
AKLabel( QWidget* p, const char* n=0, WFlags f=0 ) : QLabel( p, n, f ) { init(); }
AKLabel( const QString& s, QWidget* p, const char* n=0, WFlags f=0 ) : QLabel( s, p, n, f ) { init(); }
AKLabel( QWidget* w, const QString& s, QWidget* p, const char* n=0, WFlags f=0 ) : QLabel( w,s,p,n,f ) { init(); }
void mousePressEvent( QMouseEvent* );
signals:
void showContextMenu( const QPoint & );
private:
void init() {
setFont( KGlobalSettings::fixedFont() );
}
};
#endif
// vim:sw=4:ts=4
|