1. // File: Photo.qml
  2. import Qt 4.7
  3.  
  4. Rectangle {
  5.     property alias imageFile: photo.source
  6.     property alias imageTitle: title.text
  7.  
  8.     width: frameSize; height: frameSize
  9.     color: frameColor
  10.  
  11.     Image {
  12.         id: photo
  13.         x: leftMargin; y: topMargin
  14.     }
  15.  
  16.     Text {
  17.         id: title
  18.         x: 0; y: frameSize - bottomMargin
  19.         font.pixelSize: fontSize
  20.         width: frameSize; horizontalAlignment: Text.AlignHCenter
  21.         height: bottomMargin; verticalAlignment: Text.AlignVCenter
  22.     }
  23. }

Categories: