diff options
author | mio <stigma@disroot.org> | 2024-11-10 19:39:43 +1000 |
---|---|---|
committer | mio <stigma@disroot.org> | 2025-01-20 20:05:58 +1000 |
commit | b8894a29b2a7ea036ea93d34007f4d0cef030d0b (patch) | |
tree | 583dfb22e60cd5079f318442dd26627cff406ae5 /src/app/audioView.h | |
parent | 3f8d1f80caf9a0616da232fc21a3ff29e23aa618 (diff) | |
download | codeine-b8894a29b2a7ea036ea93d34007f4d0cef030d0b.tar.gz codeine-b8894a29b2a7ea036ea93d34007f4d0cef030d0b.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 <stigma@disroot.org>
(cherry picked from commit 5cfecec40972f7d6f77879e1209bc10d6019625b)
Diffstat (limited to 'src/app/audioView.h')
-rw-r--r-- | src/app/audioView.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/app/audioView.h b/src/app/audioView.h new file mode 100644 index 0000000..592e38f --- /dev/null +++ b/src/app/audioView.h @@ -0,0 +1,24 @@ +// SPDX-FileCopyrightText: 2025 mio <stigma@disroot.org> +// +// SPDX-License-Identifier: GPL-2.0-or-later. + +#ifndef CODEINE_AUDIOVIEW_H +#define CODEINE_AUDIOVIEW_H + +#include <tqframe.h> + +namespace Codeine +{ + +class AudioView : public TQFrame +{ + public: + AudioView(TQWidget *parent, const char *name = nullptr); + + private: + TQWidget *m_analyzer; +}; + +} + +#endif /* CODEINE_AUDIOVIEW_H */ |