CStringInput: Make saveScreen changeable with forceSaveScreen()

This commit is contained in:
M. Liebmann
2016-10-29 08:20:32 +02:00
parent 373ae57e42
commit 0e22860ac0
2 changed files with 25 additions and 8 deletions

View File

@@ -61,6 +61,8 @@ class CStringInput : public CMenuTarget
int size;
int selected;
CChangeObserver * observ;
bool force_saveScreen;
fb_pixel_t *pixBuf;
virtual void init();
@@ -91,6 +93,8 @@ class CStringInput : public CMenuTarget
int exec( CMenuTarget* parent, const std::string & actionKey );
void setMinMax(const int min_value, const int max_value);
virtual std::string &getValue(void);
void forceSaveScreen(bool enable);
};
class CStringInputSMS : public CStringInput