diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-12-15 22:22:21 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-12-15 23:10:57 +0300 |
commit | e45350d5e4505cd9ef20bd9efd80fa5fa86e3d62 (patch) | |
tree | 3d291a77d9b1b06333200ed17670662a461d3b85 /src | |
parent | d90995fb5b7c208e8387def44e740391c74b7e7f (diff) | |
download | plus-e45350d5e4505cd9ef20bd9efd80fa5fa86e3d62.tar.gz plus-e45350d5e4505cd9ef20bd9efd80fa5fa86e3d62.tar.bz2 plus-e45350d5e4505cd9ef20bd9efd80fa5fa86e3d62.tar.xz plus-e45350d5e4505cd9ef20bd9efd80fa5fa86e3d62.zip |
Add base class for screenshot helpers.
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 1 | ||||
-rw-r--r-- | src/Makefile.am | 1 | ||||
-rw-r--r-- | src/resources/screenshothelper.h | 48 |
3 files changed, 50 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 27ed1dbef..2e1a7cc4b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -705,6 +705,7 @@ SET(SRCS resources/resourcemanager.h resources/safeopenglimagehelper.cpp resources/safeopenglimagehelper.h + resources/screenshothelper.h resources/sdl2imagehelper.cpp resources/sdl2imagehelper.h resources/sdl2softwareimagehelper.cpp diff --git a/src/Makefile.am b/src/Makefile.am index 67269db97..c408d8084 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -359,6 +359,7 @@ SRC += events/actionevent.h \ resources/resourcemanager.h \ resources/safeopenglimagehelper.cpp \ resources/safeopenglimagehelper.h \ + resources/screenshothelper.h \ resources/sdl2imagehelper.cpp \ resources/sdl2imagehelper.h \ resources/sdl2softwareimagehelper.cpp \ diff --git a/src/resources/screenshothelper.h b/src/resources/screenshothelper.h new file mode 100644 index 000000000..bde76c15a --- /dev/null +++ b/src/resources/screenshothelper.h @@ -0,0 +1,48 @@ +/* + * The ManaPlus Client + * Copyright (C) 2004-2009 The Mana World Development Team + * Copyright (C) 2009-2010 The Mana Developers + * Copyright (C) 2011-2015 The ManaPlus Developers + * + * This file is part of The ManaPlus Client. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#ifndef RESOURCES_SCREENSHOTHELPER_H +#define RESOURCES_SCREENSHOTHELPER_H + +#include <SDL_video.h> + +#include "localconsts.h" + +class ScreenshotHelper notfinal +{ + public: + ScreenshotHelper() + { } + + A_DELETE_COPY(ScreenshotHelper) + + virtual ~ScreenshotHelper() + { } + + virtual void prepare(const int width, + const int height) = 0; + + virtual SDL_Surface *getScreenshot(const int width, + const int height) = 0; +}; + +#endif // RESOURCES_SCREENSHOTHELPER_H |