From 41361bffa781eb5d3299995ceddad4c2dcf2ad30 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Tue, 14 Aug 2012 18:08:45 +0400 Subject: [PATCH] updated and prioritized todo + some thought on further ations... Signed-off-by: Alex A. Naanou --- ui/TODO.otl | 10 ++++++---- ui/gallery-prototype.js | 15 ++++++++++++--- 2 files changed, 18 insertions(+), 7 deletions(-) diff --git a/ui/TODO.otl b/ui/TODO.otl index 3cc74323..581e7f62 100755 --- a/ui/TODO.otl +++ b/ui/TODO.otl @@ -1,5 +1,5 @@ Priority work - [_] 86% Preview II + [_] 83% Preview II [X] 100% sorted images in ribbons [X] 100% stage I: position the promoted/demoted image correctly | and correct positioning on promote/demote @@ -58,7 +58,11 @@ Priority work [X] one (with zooming) [X] single image mode with zooming | ribbons are hidden - [_] 85% UI + [_] 66% UI + [_] "hide other ribbons" mode + [_] "show all promoted/demoted images" mode + [_] 0% settings/help screen + [_] keyboard config/help [X] fix single image mode | need to center the image correctly... [X] 100% add screen buttons for all actions... @@ -91,8 +95,6 @@ Priority work [X] web | is this is the same as the above two? (with auto-select) [X] add screen-width images next/prev navigation... - [_] 0% settings/help screen - [_] keyboard config/help [X] 100% debug mode [X] toggle cross-hair [X] 100% fix layout and animations diff --git a/ui/gallery-prototype.js b/ui/gallery-prototype.js index e8aa474c..d05fe664 100755 --- a/ui/gallery-prototype.js +++ b/ui/gallery-prototype.js @@ -1,4 +1,3 @@ -// XXX need a uniform way to address images (filename?) /******************************************* Setup Data and Globals **/ var DEBUG = true @@ -36,8 +35,6 @@ var MOVE_DELTA = 50 - - /********************************************************** Helpers **/ @@ -61,6 +58,8 @@ function getImageOrder(img){ // ...figure a way out of this!!! return parseInt($(img).attr('id')) } + + function setImageOrder(img, order){ return $(img).attr({'id': order}) } @@ -1141,6 +1140,16 @@ function reverseImageOrder(){ } +// XXX group images in ribbon and merge down/up +// +// grouping will make the images in a ribbon adjacent to each +// other... +// +// the group's position will be the same as current images i.e. +// between the below/above two images... + +// XXX shift group/image right/left... + /*********************************************************************/