~untrusted-ci-dev-bot/unity-api/unity-api-ubuntu-xenial-landing-002

« back to all changes in this revision

Viewing changes to test/qmltest/mocks/plugins/Unity/Scopes/TestScopesPlugin.cpp

  • Committer: CI Train Bot
  • Author(s): Daniel d'Andrada, Pawel Stolowski, CI Train Bot, Nick Dedekind, Michał Sawicz, Lukáš Tinkl
  • Date: 2016-03-22 22:34:26 UTC
  • mfrom: (213.1.9 surfaceListModel-silo-013)
  • Revision ID: untrusted-ci-dev-bot@canonical.com-20160322223426-x6g9w59jjygtq5eo
Surface-based WM

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include "PreviewModelInterface.h"
26
26
#include "PreviewWidgetModelInterface.h"
27
27
#include "SettingsModelInterface.h"
 
28
#include "FiltersInterface.h"
 
29
#include "FilterBaseInterface.h"
 
30
#include "OptionSelectorOptionsInterface.h"
 
31
#include "OptionSelectorFilterInterface.h"
 
32
#include "RangeInputFilterInterface.h"
28
33
#include "Mocks/MockScopes.h"
29
34
#include "Mocks/MockScope.h"
30
35
 
38
43
    qmlRegisterUncreatableType<unity::shell::scopes::PreviewModelInterface>(uri, 0, 2, "PreviewModel", "Can't create new PreviewModel in QML. Get them from Scope instance.");
39
44
    qmlRegisterUncreatableType<unity::shell::scopes::PreviewWidgetModelInterface>(uri, 0, 2, "PreviewWidgetModel", "Can't create new PreviewWidgetModel in QML. Get them from PreviewModel instance.");
40
45
    qmlRegisterUncreatableType<unity::shell::scopes::SettingsModelInterface>(uri, 0, 2, "Settings", "Can't create new Settings in QML. Get them from Scope instance.");
 
46
    qmlRegisterUncreatableType<unity::shell::scopes::FilterBaseInterface>(uri, 0, 2, "FilterBase", "Can't create new Filter in QML. Get them from Filters instance.");
 
47
    qmlRegisterUncreatableType<unity::shell::scopes::FiltersInterface>(uri, 0, 2, "Filters", "Can't create new Filters in QML. Get them from Scope instance.");
 
48
    qmlRegisterUncreatableType<unity::shell::scopes::OptionSelectorOptionsInterface>(uri, 0, 2, "OptionSelectorOptions", "Can't create new OptionSelectorOptions in QML. Get them from OptionSelectorFilter instance.");
 
49
    qmlRegisterUncreatableType<unity::shell::scopes::OptionSelectorFilterInterface>(uri, 0, 2, "OptionSelectorFilter", "Can't create new OptionSelectorFilter in QML. Get them from Filters instance.");
 
50
    qmlRegisterUncreatableType<unity::shell::scopes::RangeInputFilterInterface>(uri, 0, 2, "RangeInputFilter", "Can't create new RangeInputFilter in QML. Get them from Filters instance.");
41
51
}