diff options
author | mio <[email protected]> | 2024-11-10 19:39:43 +1000 |
---|---|---|
committer | mio <[email protected]> | 2024-11-24 14:18:23 +1000 |
commit | ecf30bc762457e362dacd94d1bc11fadae2a61b1 (patch) | |
tree | dc3848ff2ee43c32fdfb937986569f23e00b4b39 /src/app/mainWindow.h | |
parent | cdea6d11c35d582be11361034cabef468c120a9a (diff) | |
download | codeine-ecf30bc762457e362dacd94d1bc11fadae2a61b1.tar.gz codeine-ecf30bc762457e362dacd94d1bc11fadae2a61b1.zip |
Create a AudioView widget for audio-only streams
Currently Codeine will show a blank area when playing an audio-only
file, such as music. This patch adds a new widget that contains an
instance of the Analyzer::Block class, so instead of a blank area it
contains a "visualizer" of sorts.
Signed-off-by: mio <[email protected]>
Diffstat (limited to 'src/app/mainWindow.h')
-rw-r--r-- | src/app/mainWindow.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/app/mainWindow.h b/src/app/mainWindow.h index 634d444..3dae1e8 100644 --- a/src/app/mainWindow.h +++ b/src/app/mainWindow.h @@ -11,11 +11,14 @@ class KURL; class TQLabel; class TQPopupMenu; class TQSlider; +class TQWidgetStack; class VolumeAction; namespace Codeine { + class AudioView; + class MainWindow : public TDEMainWindow { TQ_OBJECT @@ -66,6 +69,8 @@ namespace Codeine TQLabel *m_timeLabel; TQLabel *m_titleLabel; TQWidget *m_analyzer; + AudioView *m_audioView; + TQWidgetStack *m_widgetStack; VolumeAction *m_volumeAction; //undefined |