mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-09-15 03:53:58 +08:00
b6e6f008f1
old-commit-hash: bc5a8990241311e347455ea8d69a064bd0693266
18 lines
292 B
C++
18 lines
292 B
C++
#pragma once
|
|
|
|
#include <QFrame>
|
|
#include <QMapboxGL>
|
|
#include <QStackedLayout>
|
|
|
|
class MapPanel : public QFrame {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MapPanel(const QMapboxGLSettings &settings, QWidget *parent = nullptr);
|
|
|
|
bool isShowingMap() const;
|
|
|
|
private:
|
|
QStackedLayout *content_stack;
|
|
};
|