-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScreenshot.h
36 lines (28 loc) · 1.12 KB
/
Screenshot.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef SCREENSHOT_H
#define SCREENSHOT_H
#include <string>
#include <memory>
class BufferSaver;
class Screenshot
{
public:
Screenshot(std::string savePath = "");
virtual ~Screenshot();
//генерирует имя для скриншота
std::string getScreenshotNameFromDate();
/*вызывает создание скриншота и возвращает false в случае неудачи
(если скриншот не был сделан из-за преждевременного выхода пользователем)*/
virtual bool takeScreenshot() = 0;
virtual bool takeAndSaveScreenshot(std::string name = "");
virtual void saveScreenshot(std::string name = "");
std::string getPath() const;
void setPath(const std::string &value);
std::shared_ptr<BufferSaver> getSaver() const;
void setSaver(const std::shared_ptr<BufferSaver> &value);
private:
//путь сохранения скриншотов
std::string path;
//отвечает за сохранение буфера в файле
std::shared_ptr<BufferSaver> saver;
};
#endif // SCREENSHOT_H