60 lines
No EOL
1.8 KiB
C++
60 lines
No EOL
1.8 KiB
C++
#pragma once
|
|
#include <gtkmm.h>
|
|
#include "my_slider.hpp"
|
|
#include "options_window.hpp"
|
|
#include "theme.hpp"
|
|
#include "about_window.hpp"
|
|
#include <playback.h>
|
|
class MainWindow : public Gtk::ApplicationWindow {
|
|
Gtk::Button openBtn;
|
|
Gtk::MenuButton menuBtn;
|
|
Gtk::PopoverMenu menuPopover;
|
|
Glib::RefPtr<Gio::Menu> main_menu;
|
|
Glib::RefPtr<Gio::Menu> options_menu;
|
|
OptionsWindow optionsWindow;
|
|
AboutWindow aboutWindow;
|
|
Gtk::HeaderBar headerBar;
|
|
Gtk::ScrolledWindow dropSpace;
|
|
Gtk::Box titleBox;
|
|
Gtk::Label titleLabel;
|
|
Gtk::Label subTitleLabel;
|
|
void set_subtitle(std::optional<Glib::ustring> subtitle = {});
|
|
Glib::RefPtr<Gtk::DropTarget> dropTarget;
|
|
Gtk::Label dropSpaceLabel;
|
|
Gtk::Button pause_btn;
|
|
Gtk::Button restart_btn;
|
|
Gtk::Label time_label;
|
|
Gtk::Scale seek_bar;
|
|
Gtk::Label seek_indeterminate;
|
|
Gtk::Label length_label;
|
|
Gtk::Button stop_btn;
|
|
Gtk::FileChooserDialog open_dialog;
|
|
Gtk::ListBox stream_selection_box;
|
|
MySlider volume_slider;
|
|
MySlider speed_slider;
|
|
MySlider tempo_slider;
|
|
MySlider pitch_slider;
|
|
void update_dark_mode();
|
|
Gtk::Box top_box;
|
|
Gtk::Box bottom_box;
|
|
Gtk::Box controls_box;
|
|
Gtk::Box main_box;
|
|
bool paused;
|
|
std::optional<std::string> playback_file;
|
|
double length;
|
|
uint8_t length_component_count;
|
|
std::string song_name;
|
|
void update_file(optional<std::string> new_file);
|
|
bool update();
|
|
void set_song_loaded(bool loaded);
|
|
uint16_t expected_signals = PlaybackSignalNone;
|
|
void expect_signal(uint16_t signal);
|
|
public:
|
|
Playback *playback;
|
|
bool running;
|
|
bool timer_stopped;
|
|
GCond *timer_stopped_condition;
|
|
GMutex *timer_mutex;
|
|
MainWindow(Playback *playback, Glib::RefPtr<Gtk::Application> app);
|
|
~MainWindow();
|
|
}; |