Source

Target

Showing with 36 additions and 3 deletions
examples/widgets/doc/images/icons_qt_extended_64x64.png

3.72 KB | W: 0px | H: 0px

examples/widgets/doc/images/icons_qt_extended_64x64.png

1.58 KB | W: 0px | H: 0px

examples/widgets/doc/images/icons_qt_extended_64x64.png
examples/widgets/doc/images/icons_qt_extended_64x64.png
examples/widgets/doc/images/icons_qt_extended_64x64.png
examples/widgets/doc/images/icons_qt_extended_64x64.png
  • 2-up
  • Swipe
  • Onion skin
examples/widgets/doc/images/icons_qt_extended_8x8.png

685 Bytes | W: 0px | H: 0px

examples/widgets/doc/images/icons_qt_extended_8x8.png

340 Bytes | W: 0px | H: 0px

examples/widgets/doc/images/icons_qt_extended_8x8.png
examples/widgets/doc/images/icons_qt_extended_8x8.png
examples/widgets/doc/images/icons_qt_extended_8x8.png
examples/widgets/doc/images/icons_qt_extended_8x8.png
  • 2-up
  • Swipe
  • Onion skin
examples/widgets/draganddrop/puzzle/example.jpg

41.7 KB | W: 0px | H: 0px

examples/widgets/draganddrop/puzzle/example.jpg

41.7 KB | W: 0px | H: 0px

examples/widgets/draganddrop/puzzle/example.jpg
examples/widgets/draganddrop/puzzle/example.jpg
examples/widgets/draganddrop/puzzle/example.jpg
examples/widgets/draganddrop/puzzle/example.jpg
  • 2-up
  • Swipe
  • Onion skin
examples/widgets/graphicsview/boxes/qt-logo.jpg

39.9 KB | W: 0px | H: 0px

examples/widgets/graphicsview/boxes/qt-logo.jpg

19.8 KB | W: 0px | H: 0px

examples/widgets/graphicsview/boxes/qt-logo.jpg
examples/widgets/graphicsview/boxes/qt-logo.jpg
examples/widgets/graphicsview/boxes/qt-logo.jpg
examples/widgets/graphicsview/boxes/qt-logo.jpg
  • 2-up
  • Swipe
  • Onion skin
examples/widgets/graphicsview/boxes/qt-logo.png

13.6 KB | W: 0px | H: 0px

examples/widgets/graphicsview/boxes/qt-logo.png

11.9 KB | W: 0px | H: 0px

examples/widgets/graphicsview/boxes/qt-logo.png
examples/widgets/graphicsview/boxes/qt-logo.png
examples/widgets/graphicsview/boxes/qt-logo.png
examples/widgets/graphicsview/boxes/qt-logo.png
  • 2-up
  • Swipe
  • Onion skin
examples/widgets/itemviews/puzzle/example.jpg

41.7 KB | W: 0px | H: 0px

examples/widgets/itemviews/puzzle/example.jpg

41.7 KB | W: 0px | H: 0px

examples/widgets/itemviews/puzzle/example.jpg
examples/widgets/itemviews/puzzle/example.jpg
examples/widgets/itemviews/puzzle/example.jpg
examples/widgets/itemviews/puzzle/example.jpg
  • 2-up
  • Swipe
  • Onion skin
examples/widgets/painting/basicdrawing/images/qt-logo.png

3.61 KB | W: 0px | H: 0px

examples/widgets/painting/basicdrawing/images/qt-logo.png

1.79 KB | W: 0px | H: 0px

examples/widgets/painting/basicdrawing/images/qt-logo.png
examples/widgets/painting/basicdrawing/images/qt-logo.png
examples/widgets/painting/basicdrawing/images/qt-logo.png
examples/widgets/painting/basicdrawing/images/qt-logo.png
  • 2-up
  • Swipe
  • Onion skin
examples/widgets/widgets/icons/images/qt_extended_16x16.png

834 Bytes | W: 0px | H: 0px

examples/widgets/widgets/icons/images/qt_extended_16x16.png

524 Bytes | W: 0px | H: 0px

examples/widgets/widgets/icons/images/qt_extended_16x16.png
examples/widgets/widgets/icons/images/qt_extended_16x16.png
examples/widgets/widgets/icons/images/qt_extended_16x16.png
examples/widgets/widgets/icons/images/qt_extended_16x16.png
  • 2-up
  • Swipe
  • Onion skin
examples/widgets/widgets/icons/images/qt_extended_32x32.png

1.85 KB | W: 0px | H: 0px

examples/widgets/widgets/icons/images/qt_extended_32x32.png

892 Bytes | W: 0px | H: 0px

examples/widgets/widgets/icons/images/qt_extended_32x32.png
examples/widgets/widgets/icons/images/qt_extended_32x32.png
examples/widgets/widgets/icons/images/qt_extended_32x32.png
examples/widgets/widgets/icons/images/qt_extended_32x32.png
  • 2-up
  • Swipe
  • Onion skin
examples/widgets/widgets/icons/images/qt_extended_48x48.png

3.59 KB | W: 0px | H: 0px

examples/widgets/widgets/icons/images/qt_extended_48x48.png

1.26 KB | W: 0px | H: 0px

examples/widgets/widgets/icons/images/qt_extended_48x48.png
examples/widgets/widgets/icons/images/qt_extended_48x48.png
examples/widgets/widgets/icons/images/qt_extended_48x48.png
examples/widgets/widgets/icons/images/qt_extended_48x48.png
  • 2-up
  • Swipe
  • Onion skin
......@@ -7,6 +7,9 @@ QMAKE_COMPILER = gcc clang llvm # clang pretends to be gcc
QMAKE_CC = clang
QMAKE_CXX = clang++
QMAKE_LINK_C = $$QMAKE_CC
QMAKE_LINK_C_SHLIB = $$QMAKE_CC
QMAKE_LINK = $$QMAKE_CXX
QMAKE_LINK_SHLIB = $$QMAKE_CXX
......
......@@ -11,11 +11,15 @@
QMAKE_COMPILER = rim_qcc gcc # qcc is mostly gcc in disguise
QMAKE_CFLAGS_OPTIMIZE = -O2
QMAKE_CFLAGS_OPTIMIZE_FULL = -O3
QMAKE_CFLAGS += -Wno-psabi
QMAKE_CFLAGS_DEPS += -M
QMAKE_CFLAGS_WARN_ON += -Wall -W
QMAKE_CFLAGS_WARN_OFF += -w
QMAKE_CFLAGS_RELEASE += -O2
QMAKE_CFLAGS_RELEASE += $$QMAKE_CFLAGS_OPTIMIZE
QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += $$QMAKE_CFLAGS_OPTIMIZE -g
QMAKE_CFLAGS_DEBUG += -g
QMAKE_CFLAGS_SHLIB += -fPIC -shared
QMAKE_CFLAGS_STATIC_LIB += -fPIC
......@@ -36,6 +40,7 @@ QMAKE_CXXFLAGS_DEPS += $$QMAKE_CFLAGS_DEPS
QMAKE_CXXFLAGS_WARN_ON += $$QMAKE_CFLAGS_WARN_ON
QMAKE_CXXFLAGS_WARN_OFF += $$QMAKE_CFLAGS_WARN_OFF
QMAKE_CXXFLAGS_RELEASE += $$QMAKE_CFLAGS_RELEASE
QMAKE_CXXFLAGS_RELEASE_WITH_DEBUGINFO += $$QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO
QMAKE_CXXFLAGS_DEBUG += $$QMAKE_CFLAGS_DEBUG
QMAKE_CXXFLAGS_SHLIB += $$QMAKE_CFLAGS_SHLIB
QMAKE_CXXFLAGS_STATIC_LIB += $$QMAKE_CFLAGS_STATIC_LIB
......
......@@ -34,7 +34,7 @@
<m2:ShowOn Tile=\"square150x150Logo\" />
</m2:ShowNameOnTiles>
</m2:DefaultTile>
<m2:SplashScreen Image=\"$${WINRT_MANIFEST.logo_splash}\" />
<m2:SplashScreen Image=\"$${WINRT_MANIFEST.logo_splash}\" />$${WINRT_MANIFEST.rotation_preference}
</m2:VisualElements>
</Application>
</Applications>$${WINRT_MANIFEST.capabilities}$${WINRT_MANIFEST.dependencies}
......
......@@ -37,7 +37,7 @@
<m3:ShowOn Tile=\"square150x150Logo\" />
</m3:ShowNameOnTiles>
</m3:DefaultTile>
<m3:SplashScreen Image=\"$${WINRT_MANIFEST.logo_480x800}\" />
<m3:SplashScreen Image=\"$${WINRT_MANIFEST.logo_480x800}\" />$${WINRT_MANIFEST.rotation_preference}
</m3:VisualElements>
</Application>
</Applications>$${WINRT_MANIFEST.capabilities}$${WINRT_MANIFEST.dependencies}
......
......@@ -24,6 +24,7 @@
# WINRT_MANIFEST.logo_medium: Medium logo image file. Default provided by the mkspec.
# WINRT_MANIFEST.logo_large: Large logo image file. Default provided by the mkspec.
# WINRT_MANIFEST.splash_screen: Splash screen image file. Default provided by the mkspec.
# WINRT_MANIFEST.rotation_preference: Orientation specification. Default is empty. (portrait, landscape, landscapeFlipped)
# WINRT_MANIFEST.iconic_tile_icon: Image file for the "iconic" tile template icon. Default provided by the mkspec.
# WINRT_MANIFEST.iconic_tile_small: Image file for the small "iconic" tile template logo. Default provided by the mkspec.
# WINRT_MANIFEST.default_language: Specifies the default language of the application
......@@ -87,6 +88,20 @@
isEmpty(WINRT_MANIFEST.foreground): WINRT_MANIFEST.foreground = light
isEmpty(WINRT_MANIFEST.default_language): WINRT_MANIFEST.default_language = en
INDENT = "$$escape_expand(\\r\\n) "
VS_XML_NAMESPACE = "m2"
winphone: VS_XML_NAMESPACE = "m3"
WINRT_MANIFEST.rotation_preference = $$unique(WINRT_MANIFEST.rotation_preference)
!isEmpty(WINRT_MANIFEST.rotation_preference) {
MANIFEST_ROTATION += "<$${VS_XML_NAMESPACE}:InitialRotationPreference>"
for(ROTATION, WINRT_MANIFEST.rotation_preference): \
MANIFEST_ROTATION += " <$${VS_XML_NAMESPACE}:Rotation Preference=\"$$ROTATION\" />"
MANIFEST_ROTATION += "</$${VS_XML_NAMESPACE}:InitialRotationPreference>"
WINRT_MANIFEST.rotation_preference = $$join(MANIFEST_ROTATION, $$INDENT, $$INDENT)
}
INDENT = "$$escape_expand(\\r\\n) "
# Capabilities are given as a string list and may change with the configuration (network, sensors, etc.)
......
......@@ -14,6 +14,8 @@
<string>@TYPEINFO@</string>
<key>CFBundleExecutable</key>
<string>@LIBRARY@</string>
<key>CFBundleIdentifier</key>
<string>@BUNDLEIDENTIFIER@</string>
<key>NOTE</key>
<string>Please, do NOT change this file -- It was generated by Qt/QMake.</string>
</dict>
......
......@@ -14,6 +14,8 @@
<string>@TYPEINFO@</string>
<key>CFBundleExecutable</key>
<string>@LIBRARY@</string>
<key>CFBundleIdentifier</key>
<string>@BUNDLEIDENTIFIER@</string>
<key>NOTE</key>
<string>Please, do NOT change this file -- It was generated by Qt/QMake.</string>
</dict>
......
......@@ -14,6 +14,8 @@
<string>@TYPEINFO@</string>
<key>CFBundleExecutable</key>
<string>@LIBRARY@</string>
<key>CFBundleIdentifier</key>
<string>@BUNDLEIDENTIFIER@</string>
<key>NOTE</key>
<string>Please, do NOT change this file -- It was generated by Qt/QMake.</string>
</dict>
......
......@@ -14,6 +14,8 @@
<string>@TYPEINFO@</string>
<key>CFBundleExecutable</key>
<string>@LIBRARY@</string>
<key>CFBundleIdentifier</key>
<string>@BUNDLEIDENTIFIER@</string>
<key>NOTE</key>
<string>Please, do NOT change this file -- It was generated by Qt/QMake.</string>
</dict>
......
......@@ -14,6 +14,8 @@
<string>@TYPEINFO@</string>
<key>CFBundleExecutable</key>
<string>@LIBRARY@</string>
<key>CFBundleIdentifier</key>
<string>@BUNDLEIDENTIFIER@</string>
<key>NOTE</key>
<string>Please, do NOT change this file -- It was generated by Qt/QMake.</string>
</dict>
......