mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-03-02 02:03:53 +08:00
* change codebase * compile * add mapboxprovider * works with map_renderer in c * remove maplibre temp * maplibre works * cleanup build.sh * x86 stuff * add lib * update release files * don't need that * tici build * tici build * add tici lib * update refs --------- Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
22 lines
354 B
C++
22 lines
354 B
C++
#pragma once
|
|
|
|
#include <QFrame>
|
|
#include <QMapLibre/Settings>
|
|
#include <QStackedLayout>
|
|
|
|
class MapPanel : public QFrame {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MapPanel(const QMapLibre::Settings &settings, QWidget *parent = nullptr);
|
|
|
|
signals:
|
|
void mapPanelRequested();
|
|
|
|
public slots:
|
|
void toggleMapSettings();
|
|
|
|
private:
|
|
QStackedLayout *content_stack;
|
|
};
|