lena_pi/LenaPi/models/UiStateModel.cpp
2018-10-23 21:26:29 +02:00

21 lines
387 B
C++

#include "UiStateModel.h"
UiStateModel::UiStateModel(QObject *parent) : QObject(parent)
{
showNavigation();
}
QUrl UiStateModel::getSource() const
{
return mSource;
}
void UiStateModel::showMusicPlayer(){
mSource = QUrl("MusicPlayer.qml");
emit sourceChanged();
}
void UiStateModel::showNavigation(){
mSource = QUrl("Navigation.qml");
emit sourceChanged();
}