Zachary Hall
ae74999276
Some checks failed
Build / build-gentoo (push) Failing after 1m25s
Build / download-system-deps (push) Successful in 3m44s
Build / get-source-code (push) Successful in 6m52s
Build / build-appimage (push) Successful in 3m29s
Build / build-android (push) Failing after 2m52s
Build / build-windows (push) Failing after 6m42s
49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
#pragma once
|
|
#include "playback.h"
|
|
#include "util.hpp"
|
|
#include <QMainWindow>
|
|
#include <QSlider>
|
|
#include <QWidget>
|
|
#include <QPushButton>
|
|
#include <QTextEdit>
|
|
#include <QBoxLayout>
|
|
#include <QMenu>
|
|
#include <QTimer>
|
|
#include <QFileDialog>
|
|
#include <QApplication>
|
|
#include <util.hpp>
|
|
#include "preferences.h"
|
|
#include "aboutwindow.h"
|
|
#include "slider.hpp"
|
|
class LooperWindow : public QMainWindow {
|
|
Q_OBJECT;
|
|
bool labels_visible;
|
|
bool icons_visible;
|
|
LooperSlider *volume_slider;
|
|
LooperSlider *speed_slider;
|
|
LooperSlider *tempo_slider;
|
|
LooperSlider *pitch_slider;
|
|
std::thread *update_thread = nullptr;
|
|
bool done = false;
|
|
void Pulse();
|
|
void ThreadFunc();
|
|
const char *file_to_play = nullptr;
|
|
QPushButton *restart_btn;
|
|
QPushButton *stop_btn;
|
|
QPushButton *pause_resume_btn;
|
|
Playback *playback;
|
|
LooperSlider *slider;
|
|
QMenu *file_menu;
|
|
QAction *open_item;
|
|
QAction *prefs_item;
|
|
QAction *quit_item;
|
|
QMenu *help_menu;
|
|
QAction *about_item;
|
|
QFileDialog *file_dialog;
|
|
QBoxLayout *root_layout;
|
|
void update_label_setting(bool labels_visible, bool icons_visible);
|
|
public:
|
|
AboutWindow *about_window;
|
|
PrefsWindow *prefs_window;
|
|
explicit LooperWindow(Playback *playback);
|
|
};
|