LibreVNA/Software/PC_Application/LibreVNA-GUI/modewindow.h
2022-10-01 17:10:44 +02:00

26 lines
462 B
C++

#ifndef MODEWINDOW_H
#define MODEWINDOW_H
#include "modehandler.h"
class ModeWindow: public QWidget
{
Q_OBJECT
public:
explicit ModeWindow(ModeHandler* handler, AppWindow* aw);
~ModeWindow();
private:
ModeHandler* handler;
void SetupUi();
AppWindow* aw;
QTabBar* tabBar;
private slots:
void ModeCreated(int modeIndex);
void ModeClosed(int modeIndex);
void CurrentModeChanged(int modeIndex);
};
#endif // MODEWINDOW_H