aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/autotest/itestframework.h
diff options
context:
space:
mode:
authorChristian Stenger <christian.stenger@qt.io>2018-03-13 10:04:46 +0100
committerChristian Stenger <christian.stenger@qt.io>2018-04-12 08:27:25 +0000
commit86b78bde5d95ad9f4476d53c9ac6af26ca5f2504 (patch)
treebd0f3be49998c77bb8e4ad581eb4233b2c550e18 /src/plugins/autotest/itestframework.h
parentaee959ea1d749373ba34abf1eabc6eae6f36c747 (diff)
AutoTest: Allow framework specific tool tip on settings
The grouping checkbox enables grouping, but frameworks can have more grouping modes than the default implementation. Allow frameworks to provide its own tool tip for the checkbox on the general settings page. Change-Id: I0515e542284491a669ef33820104a32074ecf885 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: David Schulz <david.schulz@qt.io>
Diffstat (limited to 'src/plugins/autotest/itestframework.h')
-rw-r--r--src/plugins/autotest/itestframework.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/autotest/itestframework.h b/src/plugins/autotest/itestframework.h
index 67778f1375..ec24bfa3a0 100644
--- a/src/plugins/autotest/itestframework.h
+++ b/src/plugins/autotest/itestframework.h
@@ -71,7 +71,8 @@ public:
void setActive(bool active) { m_active = active; }
bool grouping() const { return m_grouping; }
void setGrouping(bool group) { m_grouping = group; }
-
+ // framework specific tool tip to be displayed on the general settings page
+ virtual QString groupingToolTip() const { return QString(); }
protected:
virtual ITestParser *createTestParser() const = 0;
virtual TestTreeItem *createRootNode() const = 0;