~feng-kylin/youker-assistant/youker-assistant

« back to all changes in this revision

Viewing changes to qml/func/common/TableColumn.qml

  • Committer: kobe
  • Date: 2015-02-13 07:37:10 UTC
  • Revision ID: xiangli@ubuntukylin.com-20150213073710-0jyp02ilyi5njj10
Qt Version

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import QtQuick 1.1
2
 
 
3
 
QtObject {
4
 
    property string title
5
 
    property string role
6
 
    property int width: 160
7
 
    property int x
8
 
    property bool visible: true
9
 
    property int elideMode: Text.ElideRight
10
 
    property int textAlignment: Text.AlignLeft
11
 
    property Component delegate
12
 
}