This commit is contained in:
j 2011-01-04 16:09:14 +05:30
commit 0c6574f5bd

View file

@ -451,6 +451,14 @@ var pandora = new Ox.App({
annotations: function() { annotations: function() {
var that = new Ox.Element({ var that = new Ox.Element({
id: 'annotations' id: 'annotations'
})
.bindEvent({
resize: function(event, data) {
app.user.ui.annotationsSize = data;
},
toggle: function(event, data) {
app.user.ui.showAnnotations = !data.collapsed;
}
}), }),
$bins = []; $bins = [];
$.each(app.config.layers, function(i, layer) { $.each(app.config.layers, function(i, layer) {
@ -590,6 +598,7 @@ var pandora = new Ox.App({
URL.set(data.ids[0]); URL.set(data.ids[0]);
}, },
toggle: function(event, data) { toggle: function(event, data) {
app.user.ui.showMovies = !data.collapsed;
if (data.collapsed) { if (data.collapsed) {
if (app.user.ui.itemView == 'timeline') { if (app.user.ui.itemView == 'timeline') {
app.$ui.editor.gainFocus(); app.$ui.editor.gainFocus();
@ -607,10 +616,10 @@ var pandora = new Ox.App({
var that = new Ox.SplitPanel({ var that = new Ox.SplitPanel({
elements: app.user.ui.item == '' ? [ elements: app.user.ui.item == '' ? [
{ {
collapsed: !app.user.ui.showGroups,
collapsible: true, collapsible: true,
element: app.$ui.browser = ui.browser() element: app.$ui.browser = ui.browser()
.bindEvent('resize', function(event, data) { .bindEvent('resize', function(event, data) {
Ox.print('resizing groups...')
$.each(app.$ui.groups, function(i, list) { $.each(app.$ui.groups, function(i, list) {
list.size(); list.size();
}); });
@ -624,6 +633,7 @@ var pandora = new Ox.App({
} }
] : [ ] : [
{ {
collapsed: !app.user.ui.showMovies,
collapsible: true, collapsible: true,
element: app.$ui.browser = ui.browser(), element: app.$ui.browser = ui.browser(),
size: 112 + ($.browser.mozilla ? 16 : 12) // fixme: should be app.ui.scrollbarSize size: 112 + ($.browser.mozilla ? 16 : 12) // fixme: should be app.ui.scrollbarSize
@ -953,8 +963,26 @@ var pandora = new Ox.App({
return that; return that;
}, },
item: function() { item: function() {
var that = new Ox.Element('div'); var that;
elements = []; if (app.user.ui.itemView == 'info') {
that = new Ox.Element('div');
} else if (app.user.ui.itemView == 'timeline') {
that = new Ox.SplitPanel({
elements: [
{
element: new Ox.Element('div'),
},
{
collapsed: !app.user.ui.showAnnotations,
collapsible: true,
element: new Ox.Element('div'),
resizable: true,
resize: [256, 384],
size: app.user.ui.annotationsSize
}
]
})
}
getItem(); getItem();
function getItem() { function getItem() {
pandora.api.getItem(app.user.ui.item, function(result) { pandora.api.getItem(app.user.ui.item, function(result) {
@ -978,54 +1006,42 @@ var pandora = new Ox.App({
video.height = 96; video.height = 96;
video.width = parseInt(video.height * video.aspectRatio / 2) * 2; video.width = parseInt(video.height * video.aspectRatio / 2) * 2;
video.url = video.baseUrl + '/' + video.height + 'p.' + ($.support.video.webm ? 'webm' : 'mp4'); video.url = video.baseUrl + '/' + video.height + 'p.' + ($.support.video.webm ? 'webm' : 'mp4');
app.$ui.contentPanel.replace(1, app.$ui.item = new Ox.SplitPanel({ that.replace(0, app.$ui.editor = new Ox.VideoEditor({
elements: [ cuts: cuts,
{ duration: video.duration,
element: app.$ui.editor = new Ox.VideoEditor({ find: '',
cuts: cuts, frameURL: function(position) {
duration: video.duration, return '/' + app.user.ui.item + '/frame/' + video.width.toString() + '/' + position.toString() + '.jpg'
find: '', },
frameURL: function(position) { height: app.$ui.contentPanel.size(1),
return '/' + app.user.ui.item + '/frame/' + video.width.toString() + '/' + position.toString() + '.jpg' id: 'editor',
}, largeTimeline: true,
height: app.$ui.contentPanel.size(1), matches: [],
id: 'editor', points: [0, 0],
largeTimeline: true, position: 0,
matches: [], posterFrame: parseInt(video.duration / 2),
points: [0, 0], subtitles: subtitles,
position: 0, videoHeight: video.height,
posterFrame: parseInt(video.duration / 2), videoId: app.user.ui.item,
subtitles: subtitles, videoWidth: video.width,
videoHeight: video.height, videoSize: 'small',
videoId: app.user.ui.item, videoURL: video.url,
videoWidth: video.width, width: app.$ui.document.width() - app.$ui.mainPanel.size(0) - 1 -
videoSize: 'small', (app.user.ui.showAnnotations * app.user.ui.annotationsSize) - 1
videoURL: video.url, }).bindEvent('resize', function(event, data) {
width: app.$ui.document.width() - app.$ui.mainPanel.size(0) - 1 - 256 - 1 Ox.print('resize editor', data)
}).bindEvent('resize', function(event, data) { app.$ui.editor.options({
Ox.print('resize editor', data) width: data
app.$ui.editor.options({ });
width: data Ox.print('resize done')
}); }));
Ox.print('resize done') that.replace(1, app.$ui.annotations = ui.annotations());
}), that.bindEvent('resize', function(event, data) {
},
{
collapsible: true,
element: app.$ui.annotations = ui.annotations(),
//.bindEvent('resize', function(event, data) { Ox.print('resize annotations', data); }),
resizable: true,
resize: [256, 384],
size: 256
}
],
orientation: 'horizontal'
}).bindEvent('resize', function(event, data) {
Ox.print('resize item', data) Ox.print('resize item', data)
app.$ui.editor.options({ app.$ui.editor.options({
height: data height: data
}); });
})); });
/* /*
app.$ui.rightPanel.bindEvent('resize', function(event, data) { app.$ui.rightPanel.bindEvent('resize', function(event, data) {
Ox.print('... rightPanel resize', data, app.$ui.timelinePanel.size(1)) Ox.print('... rightPanel resize', data, app.$ui.timelinePanel.size(1))
@ -2039,7 +2055,7 @@ var pandora = new Ox.App({
} else { } else {
app.$ui.browser.scrollToSelection(); app.$ui.browser.scrollToSelection();
app.user.ui.itemView == 'timeline' && app.$ui.editor.options({ app.user.ui.itemView == 'timeline' && app.$ui.editor.options({
width: data - app.$ui.item.size(1) - 1 width: data - (app.user.ui.showAnnotations * app.user.ui.annotationsSize) - 1
}); });
} }
}); });