mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-03-06 06:17:42 +00:00
74 lines
1.9 KiB
C++
74 lines
1.9 KiB
C++
// SPDX-License-Identifier: MIT
|
|
//
|
|
// EmulationStation Desktop Edition
|
|
// VideoGameListView.h
|
|
//
|
|
// Interface that defines a GameListView of the type 'video'.
|
|
//
|
|
|
|
#ifndef ES_APP_VIEWS_GAME_LIST_VIDEO_GAME_LIST_VIEW_H
|
|
#define ES_APP_VIEWS_GAME_LIST_VIDEO_GAME_LIST_VIEW_H
|
|
|
|
#include "components/DateTimeComponent.h"
|
|
#include "components/RatingComponent.h"
|
|
#include "components/ScrollableContainer.h"
|
|
#include "views/gamelist/BasicGameListView.h"
|
|
|
|
class VideoComponent;
|
|
|
|
class VideoGameListView : public BasicGameListView
|
|
{
|
|
public:
|
|
VideoGameListView(Window* window, FileData* root);
|
|
virtual ~VideoGameListView();
|
|
|
|
virtual void onShow() override;
|
|
virtual void onThemeChanged(const std::shared_ptr<ThemeData>& theme) override;
|
|
virtual const char* getName() const override { return "video"; }
|
|
virtual void launch(FileData* game) override;
|
|
|
|
protected:
|
|
virtual void update(int deltaTime) override;
|
|
|
|
private:
|
|
void updateInfoPanel();
|
|
|
|
void initMDLabels();
|
|
void initMDValues();
|
|
|
|
ImageComponent mThumbnail;
|
|
ImageComponent mMarquee;
|
|
VideoComponent* mVideo;
|
|
ImageComponent mImage;
|
|
|
|
TextComponent mLblRating;
|
|
TextComponent mLblReleaseDate;
|
|
TextComponent mLblDeveloper;
|
|
TextComponent mLblPublisher;
|
|
TextComponent mLblGenre;
|
|
TextComponent mLblPlayers;
|
|
TextComponent mLblLastPlayed;
|
|
TextComponent mLblPlayCount;
|
|
|
|
RatingComponent mRating;
|
|
DateTimeComponent mReleaseDate;
|
|
TextComponent mDeveloper;
|
|
TextComponent mPublisher;
|
|
TextComponent mGenre;
|
|
TextComponent mPlayers;
|
|
DateTimeComponent mLastPlayed;
|
|
TextComponent mPlayCount;
|
|
TextComponent mName;
|
|
|
|
std::vector<TextComponent*> getMDLabels();
|
|
std::vector<GuiComponent*> getMDValues();
|
|
|
|
ScrollableContainer mDescContainer;
|
|
TextComponent mDescription;
|
|
|
|
bool mVideoPlaying;
|
|
FileData* mLastUpdated;
|
|
};
|
|
|
|
#endif // ES_APP_VIEWS_GAME_LIST_VIDEO_GAME_LIST_VIEW_H
|