Scaffold Qt6 Widgets app for Milestone 0
This commit is contained in:
22
src/session_window.h
Normal file
22
src/session_window.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#ifndef ORBITHUB_SESSION_WINDOW_H
|
||||
#define ORBITHUB_SESSION_WINDOW_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#include <QString>
|
||||
|
||||
class QTabWidget;
|
||||
|
||||
class SessionWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit SessionWindow(const QString& profileName, QWidget* parent = nullptr);
|
||||
|
||||
private:
|
||||
QTabWidget* m_tabs;
|
||||
|
||||
void addPlaceholderTab(const QString& profileName);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user