You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
403 B
C++
25 lines
403 B
C++
// 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 */
|