Support landscape mode
This commit is contained in:
parent
4efa44bcdd
commit
60a910539e
5 changed files with 16 additions and 11 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
Copyright (C) 2014 Andrea Scarpino <me@andreascarpino.it>
|
||||
Copyright (C) 2014-2015 Andrea Scarpino <me@andreascarpino.it>
|
||||
All rights reserved.
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
|
@ -26,25 +26,25 @@ Page {
|
|||
readonly property color defaultStrokeColor: Qt.rgba(0, 0, 0, 1)
|
||||
readonly property color defaultFillColor: Qt.rgba(1, 1, 1, 1)
|
||||
|
||||
allowedOrientations: Orientation.All
|
||||
|
||||
Column {
|
||||
anchors.fill: parent
|
||||
|
||||
Row {
|
||||
id: menu
|
||||
spacing: 10
|
||||
spacing: Theme.paddingSmall
|
||||
width: parent.width
|
||||
// Workaround: we don't want the Slider animation to resize this!
|
||||
height: Theme.itemSizeMedium
|
||||
|
||||
IconTextSwitch {
|
||||
id: edit
|
||||
checked: true
|
||||
icon.source: "image://theme/icon-s-edit"
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
width: 120
|
||||
|
||||
// Don't waste space
|
||||
rightMargin: 0
|
||||
|
||||
// default value for the rubber
|
||||
property real prevLineWidth: defaultRubberSize;
|
||||
|
||||
|
@ -71,7 +71,7 @@ Page {
|
|||
stepSize: 1
|
||||
value: defaultStrokeSize
|
||||
valueText: value
|
||||
width: 240
|
||||
width: parent.width - edit.width - save.width - clearBtn.width
|
||||
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
|
||||
|
@ -85,6 +85,7 @@ Page {
|
|||
}
|
||||
|
||||
IconButton {
|
||||
id: save
|
||||
icon.source: "image://theme/icon-m-image"
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
|
||||
|
@ -105,6 +106,7 @@ Page {
|
|||
}
|
||||
|
||||
IconButton {
|
||||
id: clearBtn
|
||||
icon.source: "image://theme/icon-m-clear"
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
* Fri Jul 03 2015 Andrea Scarpino <me@andreascarpino.it> 1.2-1
|
||||
- Landscape support.
|
||||
|
||||
* Sat Nov 29 2014 Andrea Scarpino <me@andreascarpino.it> 1.1-1
|
||||
- Implemented 'Save' function.
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ Name: harbour-papocchio
|
|||
%{!?qtc_make:%define qtc_make make}
|
||||
%{?qtc_builddir:%define _builddir %qtc_builddir}
|
||||
Summary: Paint using your finger
|
||||
Version: 1.1
|
||||
Version: 1.2
|
||||
Release: 1
|
||||
Group: Qt/Qt
|
||||
License: GPLv3
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Name: harbour-papocchio
|
||||
Summary: Paint using your finger
|
||||
Version: 1.1
|
||||
Version: 1.2
|
||||
Release: 1
|
||||
# The contents of the Group field should be one of the groups listed here:
|
||||
# http://gitorious.org/meego-developer-tools/spectacle/blobs/master/data/GROUPS
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<context>
|
||||
<name>CoverPage</name>
|
||||
<message>
|
||||
<location filename="../qml/cover/CoverPage.qml" line="26"/>
|
||||
<location filename="../qml/cover/CoverPage.qml" line="25"/>
|
||||
<source>Draw!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
@ -12,12 +12,12 @@
|
|||
<context>
|
||||
<name>MainPage</name>
|
||||
<message>
|
||||
<location filename="../qml/pages/MainPage.qml" line="97"/>
|
||||
<location filename="../qml/pages/MainPage.qml" line="98"/>
|
||||
<source>Saving the canvas...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../qml/pages/MainPage.qml" line="112"/>
|
||||
<location filename="../qml/pages/MainPage.qml" line="114"/>
|
||||
<source>Clearing the canvas...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
|
|
Loading…
Reference in a new issue