CExtendedInput: Add saveScreen & restoreScreen() functions

This commit is contained in:
M. Liebmann
2016-10-26 09:20:12 +02:00
parent 56e668ae95
commit f396037078
2 changed files with 44 additions and 1 deletions

View File

@@ -70,6 +70,11 @@ class CExtendedInput : public CMenuTarget
CChangeObserver* observ;
bool* cancel;
fb_pixel_t *background;
bool savescreen;
void saveScreen();
void restoreScreen();
virtual void paint();
virtual void onBeforeExec(){};
virtual void onAfterExec(){};
@@ -85,6 +90,8 @@ class CExtendedInput : public CMenuTarget
void calculateDialog();
void addInputField( CExtendedInput_Item* );
void enableSaveScreen(bool enable);
};