1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: http://www.qt.io/licensing/
**
** This file is part of the Qt QML Android module of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL3$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see http://www.qt.io/terms-conditions. For further
** information use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 3 as published by the Free Software
** Foundation and appearing in the file LICENSE.LGPLv3 included in the
** packaging of this file. Please review the following information to
** ensure the GNU Lesser General Public License version 3 requirements
** will be met: https://www.gnu.org/licenses/lgpl.html.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 2.0 or later as published by the Free
** Software Foundation and appearing in the file LICENSE.GPL included in
** the packaging of this file. Please review the following information to
** ensure the GNU General Public License version 2.0 requirements will be
** met: http://www.gnu.org/licenses/gpl-2.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "qtqmlandroidwidgetmodule_p.h"
#include "qqmlandroidarrayadapter_p.h"
#include "qqmlandroidbutton_p.h"
#include "qqmlandroidcalendarview_p.h"
#include "qqmlandroidcheckbox_p.h"
#include "qqmlandroiddatepicker_p.h"
#include "qqmlandroidedittext_p.h"
#include "qqmlandroidframelayout_p.h"
#include "qqmlandroidframelayoutparams_p.h"
#include "qqmlandroidimageview_p.h"
#include "qqmlandroidlinearlayout_p.h"
#include "qqmlandroidlinearlayoutparams_p.h"
#include "qqmlandroidlistview_p.h"
#include "qqmlandroidnumberpicker_p.h"
#include "qqmlandroidpopupmenu_p.h"
#include "qqmlandroidprogressbar_p.h"
#include "qqmlandroidradiobutton_p.h"
#include "qqmlandroidradiogroup_p.h"
#include "qqmlandroidratingbar_p.h"
#include "qqmlandroidrelativelayout_p.h"
#include "qqmlandroidrelativelayoutparams_p.h"
#include "qqmlandroidscrollview_p.h"
#include "qqmlandroidsearchview_p.h"
#include "qqmlandroidseekbar_p.h"
#include "qqmlandroidspace_p.h"
#include "qqmlandroidspinner_p.h"
#include "qqmlandroidswitch_p.h"
#include "qqmlandroidtabhost_p.h"
#include "qqmlandroidtabspec_p.h"
#include "qqmlandroidtabwidget_p.h"
#include "qqmlandroidtextview_p.h"
#include "qqmlandroidtimepicker_p.h"
#include "qqmlandroidtoast_p.h"
#include "qqmlandroidtogglebutton_p.h"
#include "qqmlandroidviewanimator_p.h"
#include "qqmlandroidviewflipper_p.h"
#include "qqmlandroidviewswitcher_p.h"
#include <QtQml/qqml.h>
QT_BEGIN_NAMESPACE
namespace QtQmlAndroid {
void registerWidgetModule(const char *uri)
{
qmlRegisterType<QQmlAndroidArrayAdapter>(uri, 0, 21, "ArrayAdapter");
qmlRegisterType<QQmlAndroidBaseAdapter>();
qmlRegisterType<QQmlAndroidButton>(uri, 0, 21, "Button");
qmlRegisterType<QQmlAndroidCalendarView>(uri, 0, 21, "CalendarView");
qmlRegisterType<QQmlAndroidCheckBox>(uri, 0, 21, "CheckBox");
qmlRegisterType<QQmlAndroidDatePicker>(uri, 0, 21, "DatePicker");
qmlRegisterType<QQmlAndroidEditText>(uri, 0, 21, "EditText");
qmlRegisterType<QQmlAndroidFrameLayout>(uri, 0, 21, "FrameLayout");
qmlRegisterType<QQmlAndroidFrameLayoutParams>();
qmlRegisterType<QQmlAndroidImageView>(uri, 0, 21, "ImageView");
qmlRegisterType<QQmlAndroidLinearLayout>(uri, 0, 21, "LinearLayout");
qmlRegisterType<QQmlAndroidLinearLayoutParams>();
qmlRegisterType<QQmlAndroidListView>(uri, 0, 21, "ListView");
qmlRegisterType<QQmlAndroidNumberPicker>(uri, 0, 21, "NumberPicker");
qmlRegisterType<QQmlAndroidPopupMenu>(uri, 0, 21, "PopupMenu");
qmlRegisterType<QQmlAndroidProgressBar>(uri, 0, 21, "ProgressBar");
qmlRegisterType<QQmlAndroidRadioButton>(uri, 0, 21, "RadioButton");
qmlRegisterType<QQmlAndroidRadioGroup>(uri, 0, 21, "RadioGroup");
qmlRegisterType<QQmlAndroidRatingBar>(uri, 0, 21, "RatingBar");
qmlRegisterType<QQmlAndroidRelativeLayout>(uri, 0, 21, "RelativeLayout");
qmlRegisterType<QQmlAndroidRelativeLayoutParams>();
qmlRegisterType<QQmlAndroidScrollView>(uri, 0, 21, "ScrollView");
qmlRegisterType<QQmlAndroidSearchView>(uri, 0, 21, "SearchView");
qmlRegisterType<QQmlAndroidSeekBar>(uri, 0, 21, "SeekBar");
qmlRegisterType<QQmlAndroidSpace>(uri, 0, 21, "Space");
qmlRegisterType<QQmlAndroidSpinner>(uri, 0, 21, "Spinner");
qmlRegisterType<QQmlAndroidSwitch>(uri, 0, 21, "Switch");
qmlRegisterType<QQmlAndroidTabHost>(uri, 0, 21, "TabHost");
qmlRegisterUncreatableType<QQmlAndroidTabSpec>(uri, 0, 21, "TabSpec", QStringLiteral("TabSpec is an attached property"));
qmlRegisterType<QQmlAndroidTabWidget>(uri, 0, 21, "TabWidget");
qmlRegisterType<QQmlAndroidTextView>(uri, 0, 21, "TextView");
qmlRegisterType<QQmlAndroidTimePicker>(uri, 0, 21, "TimePicker");
qmlRegisterType<QQmlAndroidToast>(uri, 0, 21, "Toast");
qmlRegisterType<QQmlAndroidToggleButton>(uri, 0, 21, "ToggleButton");
qmlRegisterType<QQmlAndroidViewAnimator>(uri, 0, 21, "ViewAnimator");
qmlRegisterType<QQmlAndroidViewFlipper>(uri, 0, 21, "ViewFlipper");
qmlRegisterType<QQmlAndroidViewSwitcher>(uri, 0, 21, "ViewSwitcher");
}
}
QT_END_NAMESPACE
|