blob: 06615d8d53777843b68afa44f03dbb8eaef7bf3f (
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
|
/***************************************************************************
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 KREC_GLOBAL_H
#define KREC_GLOBAL_H
#include <tqobject.h>
#include <tqstring.h>
#include <tqstringlist.h>
#include <tqdict.h>
class TDEConfig;
class TQWidget;
class KStatusBar;
class KRecExportItem;
class KRecGlobal : public TQObject {
Q_OBJECT
private:
KRecGlobal( TQObject* =0, const char* =0 );
~KRecGlobal();
public:
/**
* @return Returns a pointer to the global KRecGlobal.
*/
static KRecGlobal* the();
/**
* Sets the MainWidget.
*/
void setMainWidget( TQWidget* );
/**
* Returns a pointer to the mainwidget.
* Usefull to display Messageboxes, etc correctly without beeing a
* TQWidget or knowing about a parent TQWidget.
*/
TQWidget* mainWidget();
/// @return kapp->config()
static TDEConfig* kconfig();
/// Sets the Statusbar.
void setStatusBar( KStatusBar* );
/**
* Puts a message into the statusbar.
* Usefull for showing messages without knowing about the Statusbar.
*/
void message( const TQString & );
/// Registers a KRecExportItem
static bool registerExport( KRecExportItem* );
/**
* Returns a new KRecExportItem for the specified exportFormat.
* If now Item can be found the return value is 0.
*/
KRecExportItem* getExportItem( const TQString &exportFormat );
///
KRecExportItem* getExportItemForEnding( const TQString & );
/// Returns a list of exportFormats.
TQStringList exportFormats() const;
/// Returns a list of fileendings.
TQString exportFormatEndings() const;
/**
* Gets/Sets the actual mode for formating time values.
*
* For description see krecfileview.h
*/
int timeFormatMode();
void setTimeFormatMode( int );
/// The framebase (how many frames per second) (25/30 for movies, 75 for CDs)
int frameBase();
void setFrameBase( int );
private:
TQWidget *_qwidget;
KStatusBar *_statusbar;
TQDict <KRecExportItem> *_exports;
TQStringList _exportformats;
int _timeformatcache, _framebasecache;
};
#endif
// vim:sw=4:ts=4
|