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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399
|
/*
* Copyright 2014 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.12
import QtQuick.Window 2.2
import QtMultimedia 5.0
import Lomiri.Components 1.3
import Lomiri.Action 1.1 as LomiriActions
import UserMetrics 0.1
import Lomiri.Content 1.3
import CameraApp 0.1
import Qt.labs.settings 1.0
Window {
id: main
objectName: "main"
width: Math.min(Screen.width, height * viewFinderView.aspectRatio)
height: Math.min(Screen.height, units.gu(80))
color: "black"
title: "Camera"
// special flag only supported by Unity8/MIR so far that hides the shell's
// top panel in Staged mode
flags: Qt.Window | 0x00800000
Settings {
id: appSettings
property bool blurEffects:true
property bool blurEffectsPreviewOnly: true
}
function toggleFullScreen() {
if (main.visibility !== Window.FullScreen) {
main.visibility = Window.FullScreen;
setFullscreen(true);
} else {
main.visibility = Window.Windowed;
}
}
function exitFullScreen() {
main.visibility = Window.Windowed;
}
LomiriActions.ActionManager {
actions: [
LomiriActions.Action {
text: i18n.tr("Flash")
keywords: i18n.tr("Light;Dark")
},
LomiriActions.Action {
text: i18n.tr("Flip Camera")
keywords: i18n.tr("Front Facing;Back Facing")
},
LomiriActions.Action {
text: i18n.tr("Shutter")
keywords: i18n.tr("Take a Photo;Snap;Record")
},
LomiriActions.Action {
text: i18n.tr("Mode")
keywords: i18n.tr("Stills;Video")
enabled: false
},
LomiriActions.Action {
text: i18n.tr("White Balance")
keywords: i18n.tr("Lighting Condition;Day;Cloudy;Inside")
}
]
onQuit: {
Qt.quit()
}
}
Component.onCompleted: {
i18n.domain = "lomiri-camera-app";
main.show();
}
Flickable {
id: viewSwitcher
objectName: "viewSwitcher"
anchors.fill: parent
flickableDirection: state == "PORTRAIT" || state == "INVERTED_PORTRAIT" ? Flickable.HorizontalFlick : Flickable.VerticalFlick
boundsBehavior: Flickable.StopAtBounds
Keys.onPressed: {
if (event.key == Qt.Key_F11) {
main.toggleFullScreen();
event.accepted = true;
}
}
Keys.onEscapePressed: main.exitFullScreen()
property real panesMargin: units.gu(1)
property real ratio
property int orientationAngle: Screen.angleBetween(Screen.primaryOrientation, Screen.orientation)
property var angleToOrientation: {0: "PORTRAIT",
90: "LANDSCAPE",
180: "INVERTED_PORTRAIT",
270: "INVERTED_LANDSCAPE"}
state: angleToOrientation[orientationAngle]
states: [
State {
name: "PORTRAIT"
StateChangeScript {
script: {
viewSwitcher.ratio = viewSwitcher.ratio;
viewSwitcher.contentWidth = Qt.binding(function() { return viewSwitcher.width * 2 + viewSwitcher.panesMargin });
viewSwitcher.contentHeight = Qt.binding(function() { return viewSwitcher.height });
galleryView.x = Qt.binding(function() { return viewFinderView.width + viewSwitcher.panesMargin });
galleryView.y = 0;
viewFinderView.x = 0;
viewFinderView.y = 0;
viewSwitcher.positionContentAtRatio(viewSwitcher.ratio)
viewSwitcher.ratio = Qt.binding(function() { return viewSwitcher.contentX / viewSwitcher.contentWidth });
}
}
},
State {
name: "INVERTED_PORTRAIT"
StateChangeScript {
script: {
viewSwitcher.ratio = viewSwitcher.ratio;
viewSwitcher.contentWidth = Qt.binding(function() { return viewSwitcher.width * 2 + viewSwitcher.panesMargin });
viewSwitcher.contentHeight = Qt.binding(function() { return viewSwitcher.height });
galleryView.x = 0;
galleryView.y = 0;
viewFinderView.x = Qt.binding(function() { return viewFinderView.width + viewSwitcher.panesMargin });
viewFinderView.y = 0;
viewSwitcher.positionContentAtRatio(viewSwitcher.ratio)
viewSwitcher.ratio = Qt.binding(function() { return 0.5 - viewSwitcher.contentX / viewSwitcher.contentWidth });
}
}
},
State {
name: "LANDSCAPE"
StateChangeScript {
script: {
viewSwitcher.ratio = viewSwitcher.ratio;
viewSwitcher.contentWidth = Qt.binding(function() { return viewSwitcher.width });
viewSwitcher.contentHeight = Qt.binding(function() { return viewSwitcher.height * 2 + viewSwitcher.panesMargin });
galleryView.x = 0;
galleryView.y = Qt.binding(function() { return viewFinderView.height + viewSwitcher.panesMargin });
viewFinderView.x = 0;
viewFinderView.y = 0;
viewSwitcher.positionContentAtRatio(viewSwitcher.ratio)
viewSwitcher.ratio = Qt.binding(function() { return viewSwitcher.contentY / viewSwitcher.contentHeight });
}
}
},
State {
name: "INVERTED_LANDSCAPE"
StateChangeScript {
script: {
viewSwitcher.ratio = viewSwitcher.ratio;
viewSwitcher.contentWidth = Qt.binding(function() { return viewSwitcher.width });
viewSwitcher.contentHeight = Qt.binding(function() { return viewSwitcher.height * 2 + viewSwitcher.panesMargin });
galleryView.x = 0;
galleryView.y = 0;
viewFinderView.x = 0;
viewFinderView.y = Qt.binding(function() { return galleryView.height + viewSwitcher.panesMargin });
viewSwitcher.positionContentAtRatio(viewSwitcher.ratio)
viewSwitcher.ratio = Qt.binding(function() { return 0.5 - viewSwitcher.contentY / viewSwitcher.contentHeight });
}
}
}
]
interactive: !viewFinderView.touchAcquired && !galleryView.touchAcquired
&& !viewFinderView.camera.photoCaptureInProgress
&& !viewFinderView.camera.timedCaptureInProgress
Component.onCompleted: {
// FIXME: workaround for qtubuntu not returning values depending on the grid unit definition
// for Flickable.maximumFlickVelocity and Flickable.flickDeceleration
var scaleFactor = units.gridUnit / 8;
maximumFlickVelocity = maximumFlickVelocity * scaleFactor;
flickDeceleration = flickDeceleration * scaleFactor;
}
property bool settling: false
property bool switching: false
property real settleVelocity: units.dp(5000)
function settle() {
settling = true;
var velocity;
if (flickableDirection == Flickable.HorizontalFlick) {
if (horizontalVelocity < 0 || visibleArea.xPosition <= 0.05 || (horizontalVelocity == 0 && visibleArea.xPosition <= 0.25)) {
// FIXME: compute velocity better to ensure it reaches rest position (maybe in a constant time)
velocity = settleVelocity;
} else {
velocity = -settleVelocity;
}
flick(velocity, 0);
} else {
if (verticalVelocity < 0 || visibleArea.yPosition <= 0.05 || (verticalVelocity == 0 && visibleArea.yPosition <= 0.25)) {
// FIXME: compute velocity better to ensure it reaches rest position (maybe in a constant time)
velocity = settleVelocity;
} else {
velocity = -settleVelocity;
}
flick(0, velocity);
}
}
function switchToViewFinder() {
cancelFlick();
switching = true;
if (state == "PORTRAIT") {
flick(settleVelocity, 0);
} else if (state == "INVERTED_PORTRAIT") {
flick(-settleVelocity, 0);
} else if (state == "LANDSCAPE") {
flick(0, settleVelocity);
} else if (state == "INVERTED_LANDSCAPE") {
flick(0, -settleVelocity);
}
}
function positionContentAtRatio(ratio) {
if (state == "PORTRAIT") {
viewSwitcher.contentX = ratio * viewSwitcher.contentWidth;
} else if (state == "INVERTED_PORTRAIT") {
viewSwitcher.contentX = (0.5 - ratio) * viewSwitcher.contentWidth;
} else if (state == "LANDSCAPE") {
viewSwitcher.contentY = ratio * viewSwitcher.contentHeight;
} else if (state == "INVERTED_LANDSCAPE") {
viewSwitcher.contentY = (0.5 - ratio) * viewSwitcher.contentHeight;
}
}
onContentWidthChanged: positionContentAtRatio(viewSwitcher.ratio)
onContentHeightChanged: positionContentAtRatio(viewSwitcher.ratio)
onMovementEnded: {
// go to a rest position as soon as user stops interacting with the Flickable
settle();
}
onFlickStarted: {
// cancel user triggered flicks
if (!settling && !switching) {
cancelFlick();
}
}
onFlickingHorizontallyChanged: {
// use flickingHorizontallyChanged instead of flickEnded because flickEnded
// is not called when a flick is interrupted by the user
if (!flickingHorizontally) {
if (settling) {
settling = false;
}
if (switching) {
switching = true;
}
}
}
onHorizontalVelocityChanged: {
// FIXME: this is a workaround for the lack of notification when
// the user manually interrupts a flick by pressing and releasing
if (horizontalVelocity == 0 && !atXBeginning && !atXEnd && !settling && !moving) {
settle();
}
}
onFlickingVerticallyChanged: {
// use flickingHorizontallyChanged instead of flickEnded because flickEnded
// is not called when a flick is interrupted by the user
if (!flickingVertically) {
if (settling) {
settling = false;
}
if (switching) {
switching = true;
}
}
}
onVerticalVelocityChanged: {
// FIXME: this is a workaround for the lack of notification when
// the user manually interrupts a flick by pressing and releasing
if (verticalVelocity == 0 && !atYBeginning && !atYEnd && !settling && !moving) {
settle();
}
}
ViewFinderView {
id: viewFinderView
width: viewSwitcher.width
height: viewSwitcher.height
overlayVisible: !viewSwitcher.moving && !viewSwitcher.flicking
inView: viewSwitcher.ratio < 0.5
focus: !galleryView.focus
opacity: inView ? 1.0 : 0.0
onPhotoTaken: {
galleryView.prependMediaToModel(filePath);
galleryView.showLastPhotoTaken();
}
onVideoShot: {
galleryView.prependMediaToModel(filePath);
galleryView.showLastPhotoTaken();
galleryView.precacheThumbnail(filePath);
}
}
GalleryViewLoader {
id: galleryView
width: viewSwitcher.width
height: viewSwitcher.height
inView: viewSwitcher.ratio > 0.0
focus: inView
onExit: viewSwitcher.switchToViewFinder()
opacity: inView ? 1.0 : 0.0
}
}
property bool contentExportMode: transfer !== null
property var transfer: null
property var transferContentType: transfer ? transfer.contentType : "image"
function exportContent(urls) {
if (!main.transfer) return;
var item;
var items = [];
for (var i=0; i<urls.length; i++) {
item = contentItemComponent.createObject(main.transfer, {"url": urls[i]});
items.push(item);
}
main.transfer.items = items;
main.transfer.state = ContentTransfer.Charged;
main.transfer = null;
}
function cancelExport() {
main.transfer.state = ContentTransfer.Aborted;
main.transfer = null;
}
Component {
id: contentItemComponent
ContentItem {
}
}
Connections {
target: ContentHub
onExportRequested: {
viewSwitcher.switchToViewFinder();
if (transfer.contentType === ContentType.Videos) {
viewFinderView.captureMode = Camera.CaptureVideo;
} else {
viewFinderView.captureMode = Camera.CaptureStillImage;
}
main.transfer = transfer;
}
}
Metric {
id: metricPhotos
name: "camera-photos"
// Mark text for translation at a later point.
// It will be translated by dtr (or dgettext) to allows plural forms
format: i18n.tag("<b>%1</b> photos taken today")
emptyFormat: i18n.tag("No photos taken today")
domain: "lomiri-camera-app"
minimum: 0.0
}
Metric {
id: metricVideos
name: "camera-videos"
// Mark text for translation at a later point.
// It will be translated by dtr (or dgettext) to allows plural forms
format: i18n.tag("<b>%1</b> videos recorded today")
emptyFormat: i18n.tag("No videos recorded today")
domain: "lomiri-camera-app"
minimum: 0.0
}
}
|