About.qml 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * Copyright (c) 2012 Nokia Corporation.
  3. */
  4. import QtQuick 1.1
  5. Flickable {
  6. id: root
  7. contentWidth: width
  8. contentHeight: text.height
  9. clip: true
  10. property int fontSize: 25
  11. Text {
  12. id: text
  13. anchors.centerIn: parent
  14. width: root.width - 20
  15. font.pixelSize: root.fontSize
  16. color: "white"
  17. wrapMode: Text.WordWrap
  18. onLinkActivated: {
  19. Qt.openUrlExternally(link);
  20. }
  21. text: "<h3>Connectivity Plug-in Example</h3>" +
  22. "<p>This application is an example demonstrating " +
  23. "the use of <a href=\"http://projects.developer.nokia.com/connectivityplugin\">Connectivity Plug-in</a>. " +
  24. "The application includes a chat to send and receive messages once a connection has been established.</p>" +
  25. "<p>This example application is hosted in " +
  26. "<a href=\"http://projects.developer.nokia.com/connectivityplugin\">" +
  27. "Nokia Developer Projects</a>.</p>"
  28. }
  29. }