mirror of https://github.com/PurpleI2P/i2pd-qt.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
649 B
27 lines
649 B
4 years ago
|
#ifndef DELAYEDSAVEMANAGER_H
|
||
|
#define DELAYEDSAVEMANAGER_H
|
||
|
|
||
|
#include "Saver.h"
|
||
|
#include "I2pdQtTypes.h"
|
||
|
|
||
|
class DelayedSaveManager
|
||
|
{
|
||
|
public:
|
||
|
DelayedSaveManager();
|
||
|
|
||
|
virtual void setSaver(Saver* saver)=0;
|
||
|
|
||
|
typedef unsigned int DATA_SERIAL_TYPE;
|
||
|
|
||
|
virtual void delayedSave(bool reloadAfterSave, DATA_SERIAL_TYPE dataSerial, FocusEnum focusOn, std::string tunnelNameToFocus, QWidget* widgetToFocus)=0;
|
||
|
|
||
|
//returns false iff save failed
|
||
|
virtual bool appExiting()=0;
|
||
|
|
||
|
virtual FocusEnum getFocusOn()=0;
|
||
|
virtual std::string& getTunnelNameToFocus()=0;
|
||
|
virtual QWidget* getWidgetToFocus()=0;
|
||
|
};
|
||
|
|
||
|
#endif // DELAYEDSAVEMANAGER_H
|