mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Added GIFAnimComponent skeleton.
This commit is contained in:
parent
32349dc9a6
commit
abb48e45e7
|
@ -43,6 +43,7 @@ set(CORE_HEADERS
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeEditComponent.h
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeEditComponent.h
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/FlexboxComponent.h
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/FlexboxComponent.h
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GameSelectorComponent.h
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GameSelectorComponent.h
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GIFAnimComponent.h
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GridTileComponent.h
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GridTileComponent.h
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/HelpComponent.h
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/HelpComponent.h
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/IList.h
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/IList.h
|
||||||
|
@ -122,6 +123,7 @@ set(CORE_SOURCES
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeComponent.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeComponent.cpp
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeEditComponent.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/DateTimeEditComponent.cpp
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/FlexboxComponent.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/FlexboxComponent.cpp
|
||||||
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GIFAnimComponent.cpp
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GridTileComponent.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/GridTileComponent.cpp
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/HelpComponent.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/HelpComponent.cpp
|
||||||
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ImageComponent.cpp
|
${CMAKE_CURRENT_SOURCE_DIR}/src/components/ImageComponent.cpp
|
||||||
|
|
19
es-core/src/components/GIFAnimComponent.cpp
Normal file
19
es-core/src/components/GIFAnimComponent.cpp
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
//
|
||||||
|
// EmulationStation Desktop Edition
|
||||||
|
// GIFAnimComponent.cpp
|
||||||
|
//
|
||||||
|
// Component to play GIF animations.
|
||||||
|
//
|
||||||
|
|
||||||
|
#include "components/GIFAnimComponent.h"
|
||||||
|
|
||||||
|
GIFAnimComponent::GIFAnimComponent()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
GIFAnimComponent::~GIFAnimComponent()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
23
es-core/src/components/GIFAnimComponent.h
Normal file
23
es-core/src/components/GIFAnimComponent.h
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
// SPDX-License-Identifier: MIT
|
||||||
|
//
|
||||||
|
// EmulationStation Desktop Edition
|
||||||
|
// GIFAnimComponent.h
|
||||||
|
//
|
||||||
|
// Component to play GIF animations.
|
||||||
|
//
|
||||||
|
|
||||||
|
#ifndef ES_CORE_COMPONENTS_GIF_ANIM_COMPONENT_H
|
||||||
|
#define ES_CORE_COMPONENTS_GIF_ANIM_COMPONENT_H
|
||||||
|
|
||||||
|
#include "GuiComponent.h"
|
||||||
|
|
||||||
|
class GIFAnimComponent : public GuiComponent
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
GIFAnimComponent();
|
||||||
|
~GIFAnimComponent();
|
||||||
|
|
||||||
|
private:
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // ES_CORE_COMPONENTS_GIF_ANIM_COMPONENT_H
|
Loading…
Reference in a new issue