diff options
author | Thomas Hartmann <Thomas.Hartmann@nokia.com> | 2012-03-15 11:45:05 +0100 |
---|---|---|
committer | Thomas Hartmann <Thomas.Hartmann@nokia.com> | 2012-03-15 12:56:34 +0100 |
commit | 1b50cdce5ce91b6e00bd494746e24b6d5da9d7eb (patch) | |
tree | 09f153c73448b3738c000cc802f9fa0cc40e14d5 /share/qtcreator/welcomescreen | |
parent | 51de4ed21a74cfc1814d7e925ed8b33f942ccfef (diff) | |
download | qt-creator-1b50cdce5ce91b6e00bd494746e24b6d5da9d7eb.tar.gz |
WelcomePage: turning widgets into a proper plugin
Change-Id: Ifffaa8f848777f6961b49dff048672b194570fff
Reviewed-by: Alessandro Portale <alessandro.portale@nokia.com>
Diffstat (limited to 'share/qtcreator/welcomescreen')
-rw-r--r-- | share/qtcreator/welcomescreen/develop.qml | 2 | ||||
-rw-r--r-- | share/qtcreator/welcomescreen/examples.qml | 2 | ||||
-rw-r--r-- | share/qtcreator/welcomescreen/gettingstarted.qml | 2 | ||||
-rw-r--r-- | share/qtcreator/welcomescreen/tutorials.qml | 2 | ||||
-rw-r--r-- | share/qtcreator/welcomescreen/welcomescreen.qml | 2 | ||||
-rw-r--r-- | share/qtcreator/welcomescreen/welcomescreen.qmlproject | 4 | ||||
-rw-r--r-- | share/qtcreator/welcomescreen/widgets/qmldir | 19 |
7 files changed, 28 insertions, 5 deletions
diff --git a/share/qtcreator/welcomescreen/develop.qml b/share/qtcreator/welcomescreen/develop.qml index 0dac47a883..5136d08a50 100644 --- a/share/qtcreator/welcomescreen/develop.qml +++ b/share/qtcreator/welcomescreen/develop.qml @@ -31,7 +31,7 @@ **************************************************************************/ import QtQuick 1.1 -import "widgets" +import widgets 1.0 Rectangle { id: rectangle1 diff --git a/share/qtcreator/welcomescreen/examples.qml b/share/qtcreator/welcomescreen/examples.qml index 47a8f219fc..63bc597e18 100644 --- a/share/qtcreator/welcomescreen/examples.qml +++ b/share/qtcreator/welcomescreen/examples.qml @@ -31,7 +31,7 @@ **************************************************************************/ import QtQuick 1.0 -import "widgets" +import widgets 1.0 Rectangle { id: rectangle1 diff --git a/share/qtcreator/welcomescreen/gettingstarted.qml b/share/qtcreator/welcomescreen/gettingstarted.qml index 88d2e45e17..1249374213 100644 --- a/share/qtcreator/welcomescreen/gettingstarted.qml +++ b/share/qtcreator/welcomescreen/gettingstarted.qml @@ -31,7 +31,7 @@ **************************************************************************/ import QtQuick 1.1 -import "widgets" +import widgets 1.0 Rectangle { id: gettingStartedRoot diff --git a/share/qtcreator/welcomescreen/tutorials.qml b/share/qtcreator/welcomescreen/tutorials.qml index c04a1f5351..71f4346f82 100644 --- a/share/qtcreator/welcomescreen/tutorials.qml +++ b/share/qtcreator/welcomescreen/tutorials.qml @@ -31,7 +31,7 @@ **************************************************************************/ import QtQuick 1.0 -import "widgets" +import widgets 1.0 Rectangle { id: rectangle1 diff --git a/share/qtcreator/welcomescreen/welcomescreen.qml b/share/qtcreator/welcomescreen/welcomescreen.qml index 03271649b2..bfbb08df95 100644 --- a/share/qtcreator/welcomescreen/welcomescreen.qml +++ b/share/qtcreator/welcomescreen/welcomescreen.qml @@ -31,7 +31,7 @@ **************************************************************************/ import QtQuick 1.0 -import "widgets" +import widgets 1.0 Rectangle { width: 920 diff --git a/share/qtcreator/welcomescreen/welcomescreen.qmlproject b/share/qtcreator/welcomescreen/welcomescreen.qmlproject index 5f8a07bb70..4132c632bc 100644 --- a/share/qtcreator/welcomescreen/welcomescreen.qmlproject +++ b/share/qtcreator/welcomescreen/welcomescreen.qmlproject @@ -15,6 +15,10 @@ Project { ImageFiles { directory: "." } + importPaths: { + directory: "." + } + /* List of plugin directories passed to QML runtime */ // importPaths: [ "../exampleplugin" ] } diff --git a/share/qtcreator/welcomescreen/widgets/qmldir b/share/qtcreator/welcomescreen/widgets/qmldir new file mode 100644 index 0000000000..5a2c93ecb8 --- /dev/null +++ b/share/qtcreator/welcomescreen/widgets/qmldir @@ -0,0 +1,19 @@ +CustomColors 1.0 CustomColors.qml +GettingStartedItem 1.0 GettingStartedItem.qml +ProjectItem 1.0 ProjectItem.qml +CustomFonts 1.0 CustomFonts.qml +LinkedText 1.0 LinkedText.qml +RecentProjects 1.0 RecentProjects.qml +CustomizedGridView 1.0 CustomizedGridView.qml +LinksBar 1.0 LinksBar.qml +SearchBar 1.0 SearchBar.qml +CustomTab 1.0 CustomTab.qml +Logo 1.0 Logo.qml +SessionItem 1.0 SessionItem.qml +Delegate 1.0 Delegate.qml +PageCaption 1.0 PageCaption.qml +Sessions 1.0 Sessions.qml +Feedback 1.0 Feedback.qml +PageLoader 1.0 PageLoader.qml +ToolTip 1.0 ToolTip.qml + |