Index: sources/gui/qml/components/HeaderBar.qml =================================================================== diff -u -r3ef1a4ff361ba1774ad1a6f6170dbb174cadbdd5 -rcf4466dfa9b676d38cf535e2c1a23b14a83ea8b5 --- sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision 3ef1a4ff361ba1774ad1a6f6170dbb174cadbdd5) +++ sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision cf4466dfa9b676d38cf535e2c1a23b14a83ea8b5) @@ -27,10 +27,10 @@ bottom : parent.bottom margins : 10 } - Column { + Column { id: _dateTimeColumn spacing : 0 anchors.fill: parent - Text { + Text { id: _timeText color : Colors.textMain width : parent.width height : parent.height * 3/5 @@ -39,7 +39,7 @@ text : vDateTime.time font.pixelSize: 40 } - Text { + Text { id: _dateText color : Colors.textMain width : parent.width height : parent.height * 2/5 @@ -123,7 +123,7 @@ bottom : parent.bottom } height : parent.height - width : parent.width + width : parent.width / 2 position : MainMenu.Position.Top hidden : true visible : ! hidden @@ -165,5 +165,37 @@ onPressed: print("Wifi button pressed!") } + + IconButton { id : _bluetoothButton + iconSize : Variables.headerIconDiameter + iconImageSource : "qrc:/images/iBluetooth" + extraSpace : Variables.defaultMargin * 2 + + onPressed: print("Bluetooth button pressed!") + } + + IconButton { id : _cloudSyncButton + iconSize : Variables.headerIconDiameter + iconImageSource : "qrc:/images/iCloudSync" + extraSpace : Variables.defaultMargin * 2 + + onPressed: print("CloudSync button pressed!") + } + + IconButton { id : _storageButton + iconSize : Variables.headerIconDiameter + iconImageSource : "qrc:/images/iStorage" + extraSpace : Variables.defaultMargin * 2 + + onPressed: print("Storage button pressed!") + } + + IconButton { id : _informationButton + iconSize : Variables.headerIconDiameter + iconImageSource : "qrc:/images/iInformation" + extraSpace : Variables.defaultMargin * 2 + + onPressed: print("Information button pressed!") + } } }