forked from toby20130333/QtQuickExample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DDTopBar.qml
45 lines (44 loc) · 1.16 KB
/
DDTopBar.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import QtQuick 2.0
import QtQuick.Controls 1.2
import QtQuick.Controls.Styles 1.2
Rectangle {
width: 72
height: 72
Row{
anchors.fill: parent
DDHomeButton{
id:homeBtn
height: parent.height
}
DDHomeButton{
id:homeBtn2
height: parent.height
btnUrl: "http://download.easyicon.net/png/1194547/72/"
btnTxt: "Blogger"
}
DDHomeButton{
id:homeBtn3
height: parent.height
btnUrl: "http://download.easyicon.net/png/1194540/72/"
btnTxt: "Apple"
}
DDHomeButton{
id:homeBtn4
height: parent.height
btnUrl: "http://download.easyicon.net/png/1194545/72/"
btnTxt: "Beats"
}
DDHomeButton{
id:homeBtn5
height: parent.height
btnUrl: "http://download.easyicon.net/png/1194543/72/"
btnTxt: "Bank Of"
}
DDHomeButton{
id:homeBtn6
height: parent.height
btnUrl: "http://download.easyicon.net/png/1194534/72/"
btnTxt: "8Track"
}
}
}