Part of a larger restructure, added MusicPlayer which is the main controller and a structure for the song queue
This commit is contained in:
20
src/View/Modules/PageNavModule/PageNavModule.h
Executable file
20
src/View/Modules/PageNavModule/PageNavModule.h
Executable file
@@ -0,0 +1,20 @@
|
||||
#pragma once
|
||||
|
||||
#include <QWidget>
|
||||
#include <QVector>
|
||||
#include <QFrame>
|
||||
#include "../../Widgets/PageNavigator/PageNavigator.h"
|
||||
#include "../../Tools/SvgToPixmap.hpp"
|
||||
|
||||
class PageNavModule : public QFrame {
|
||||
Q_OBJECT
|
||||
private:
|
||||
QVector<PageNavigator> pages;
|
||||
|
||||
public:
|
||||
PageNavModule(QWidget* parent = nullptr);
|
||||
~PageNavModule( );
|
||||
|
||||
signals:
|
||||
void SelectChanged(PageNavigator* pn);
|
||||
};
|
||||
Reference in New Issue
Block a user