summaryrefslogtreecommitdiffstats
path: root/krec/krecfileviewhelpers.h
blob: 695b91058f707cee2231611c4877aa50ab2b6562 (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
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
111
112
113
/***************************************************************************
    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 <tqframe.h>
#include <tqlabel.h>
#include <tqstring.h>
#include <tqpoint.h>
#include <tdeglobalsettings.h>

class TQBoxLayout;
class AKLabel;
class TQPopupMenu;
class TDEPopupMenu;

class KRecTimeBar : public TQFrame {
   Q_OBJECT
  
public:
	KRecTimeBar( TQWidget*, const char* =0 );
	~KRecTimeBar();

	void drawContents( TQPainter* );

	void mouseReleaseEvent( TQMouseEvent* );

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 TQFrame {
   Q_OBJECT
  
public:
	KRecTimeDisplay( TQWidget*, const char* =0 );
	~KRecTimeDisplay();

	/// Resets the display to its defaultvalues
	void reset();
public slots:
	void newPos( int );
	void newSize( int );
	void newFilename( const TQString & );
	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( TQPopupMenu* );
	void timeContextMenu( const TQPoint &);
	void sizeContextMenu( TQPopupMenu* );
	void sizeContextMenu( const TQPoint &);
	void jumpToTime();
private:
	TQString positionText( int, int );
	TQString sizeText( int, int );
	TQString formatTime( const int mode, const int samples ) const;
	TQString _filename;
	TQBoxLayout *_layout;
	AKLabel *_position, *_size;
	TDEPopupMenu *_posmenu, *_sizemenu;
	int _sizevalue, _posvalue;
	int _samplingRate, _bits, _channels;
};


class AKLabel : public TQLabel {
  Q_OBJECT
  
public:
	AKLabel( TQWidget* p, const char* n=0, WFlags f=0 ) : TQLabel( p, n, f ) { init(); }
	AKLabel( const TQString& s, TQWidget* p, const char* n=0, WFlags f=0 ) : TQLabel( s, p, n, f ) { init(); }
	AKLabel( TQWidget* w, const TQString& s, TQWidget* p, const char* n=0, WFlags f=0 ) : TQLabel( w,s,p,n,f ) { init(); }

	void mousePressEvent( TQMouseEvent* );
signals:
	void showContextMenu( const TQPoint & );
private:
	void init() {
		setFont( TDEGlobalSettings::fixedFont() );
	}
};
#endif

// vim:sw=4:ts=4