X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=remote%2Fqml%2Fpages%2FChannelItem.qml;fp=remote%2Fqml%2Fpages%2FChannelItem.qml;h=0000000000000000000000000000000000000000;hb=afa557f5c0b0debaaaf6c4c777ccc2ba10965c50;hp=714e7079502818002591b9d3d04a32cd70766448;hpb=19f69a037e98b6b510fca0f270a5a0cf05de522d;p=xinema.git diff --git a/remote/qml/pages/ChannelItem.qml b/remote/qml/pages/ChannelItem.qml deleted file mode 100644 index 714e707..0000000 --- a/remote/qml/pages/ChannelItem.qml +++ /dev/null @@ -1,31 +0,0 @@ -import QtQuick 2.0 -import Sailfish.Silica 1.0 - -Label -{ - id: item - - anchors - { - left: parent.left - right: parent.right - margins: Theme.paddingLarge - } - - property int channelIndex: 0 - property string channelName: "" - property bool down: false - - signal clicked() - - text: channelIndex+": "+channelName - horizontalAlignment: Text.AlignHCenter - color: down ? Theme.primaryColor : Theme.highlightColor - - MouseArea - { - anchors.fill: parent - - onClicked: item.clicked() - } -}