aboutsummaryrefslogtreecommitdiffstats
path: root/parameter/SelectionCriterion.h
diff options
context:
space:
mode:
authorFrédéric Boisnard <fredericx.boisnard@intel.com>2012-08-27 15:48:15 +0200
committerDavid Wagner <david.wagner@intel.com>2014-02-12 17:03:14 +0100
commitdaaa63ce33fa4795403f9339bc872694c9ab6113 (patch)
treeb34506f80e67f4b2396dd89be365f687d2c18926 /parameter/SelectionCriterion.h
parent951ecce4fbf195694b14ef8504c59732354abcdb (diff)
downloadexternal_parameter-framework-daaa63ce33fa4795403f9339bc872694c9ab6113.zip
external_parameter-framework-daaa63ce33fa4795403f9339bc872694c9ab6113.tar.gz
external_parameter-framework-daaa63ce33fa4795403f9339bc872694c9ab6113.tar.bz2
PFW: Display warning messages to help user
BZ: 54512 Display a warning message when a configuration cannot be applied because the TuningMode is on, in order to help user to identify potential issues. Display a warning message when a criterion change doesn't lead to a configuration application (a check is performed each time a criterion is changed). Change-Id: Id872655c92770d1f6f1b01b20db2fde3db826ceb Signed-off-by: Frédéric Boisnard <fredericx.boisnard@intel.com> Reviewed-on: http://android.intel.com:8080/63845 Reviewed-by: Rocard, KevinX <kevinx.rocard@intel.com> Reviewed-by: De Chivre, Renaud <renaud.de.chivre@intel.com> Reviewed-by: Denneulin, Guillaume <guillaume.denneulin@intel.com> Tested-by: Barthes, FabienX <fabienx.barthes@intel.com> Reviewed-by: buildbot <buildbot@intel.com> Tested-by: buildbot <buildbot@intel.com>
Diffstat (limited to 'parameter/SelectionCriterion.h')
-rw-r--r--parameter/SelectionCriterion.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/parameter/SelectionCriterion.h b/parameter/SelectionCriterion.h
index be6eac2..cf66c45 100644
--- a/parameter/SelectionCriterion.h
+++ b/parameter/SelectionCriterion.h
@@ -45,6 +45,9 @@ public:
virtual string getCriterionName() const;
// Type
virtual const ISelectionCriterionTypeInterface* getCriterionType() const;
+ // Modified status
+ bool hasBeenModified() const;
+ void resetModifiedStatus();
/// Match methods
bool is(int iState) const;
@@ -62,5 +65,7 @@ private:
int _iState;
// Type
const CSelectionCriterionType* _pType;
+ // Counter to know how many modifications have been applied to this criterion
+ uint8_t _uiNbModifications;
};