mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Added CarouselComponent skeleton.
This commit is contained in:
parent
79ef66397d
commit
afe249c5fc
|
@ -36,6 +36,7 @@ set(CORE_HEADERS
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/BadgeComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/BusyComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ButtonComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/CarouselComponent.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ComponentGrid.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ComponentList.h
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeComponent.h
|
||||
|
@ -114,6 +115,7 @@ set(CORE_SOURCES
|
|||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/BadgeComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/BusyComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ButtonComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/CarouselComponent.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ComponentGrid.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ComponentList.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeComponent.cpp
|
||||
|
|
14
es-core/src/components/CarouselComponent.cpp
Normal file
14
es-core/src/components/CarouselComponent.cpp
Normal file
|
@ -0,0 +1,14 @@
|
|||
// SPDX-License-Identifier: MIT
|
||||
//
|
||||
// EmulationStation Desktop Edition
|
||||
// CarouselComponent.cpp
|
||||
//
|
||||
// Carousel.
|
||||
//
|
||||
|
||||
#include "components/CarouselComponent.h"
|
||||
|
||||
CarouselComponent::CarouselComponent()
|
||||
{
|
||||
//
|
||||
}
|
22
es-core/src/components/CarouselComponent.h
Normal file
22
es-core/src/components/CarouselComponent.h
Normal file
|
@ -0,0 +1,22 @@
|
|||
// SPDX-License-Identifier: MIT
|
||||
//
|
||||
// EmulationStation Desktop Edition
|
||||
// CarouselComponent.h
|
||||
//
|
||||
// Carousel.
|
||||
//
|
||||
|
||||
#include "GuiComponent.h"
|
||||
|
||||
#ifndef ES_CORE_COMPONENTS_CAROUSEL_COMPONENT_H
|
||||
#define ES_CORE_COMPONENTS_CAROUSEL_COMPONENT_H
|
||||
|
||||
class CarouselComponent : public GuiComponent
|
||||
{
|
||||
public:
|
||||
CarouselComponent();
|
||||
|
||||
private:
|
||||
};
|
||||
|
||||
#endif // ES_CORE_COMPONENTS_CAROUSEL_COMPONENT_H
|
Loading…
Reference in a new issue