VideoInfoTextLabel.qml 363 B

12345678910111213141516
  1. /**
  2. * Copyright (c) 2012 Nokia Corporation.
  3. */
  4. import QtQuick 1.1
  5. // Just a conveniece element that defines the default font family,
  6. // font size and font color. Text etc. has to be set from outside.
  7. Text {
  8. font {
  9. family: visual.defaultFontFamily
  10. pixelSize: visual.generalFontSize
  11. }
  12. color: visual.defaultFontColor
  13. }