2019-01-23 15:14:59 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
oml.ui.annotationPanel = function() {
|
|
|
|
|
2019-01-24 12:02:33 +00:00
|
|
|
var $bar = Ox.Bar({size: 16});
|
|
|
|
|
|
|
|
var $button = Ox.Button({
|
|
|
|
disabled: true,
|
|
|
|
style: 'symbol',
|
|
|
|
title: 'add',
|
|
|
|
type: 'image'
|
|
|
|
}).appendTo($bar);
|
|
|
|
|
|
|
|
var $menuButton = Ox.MenuButton({
|
|
|
|
items: [
|
|
|
|
{id: 'sortAnnotations', title: 'Sort Annotations', disabled: true}
|
|
|
|
],
|
|
|
|
style: 'square',
|
|
|
|
title: 'set',
|
|
|
|
type: 'image',
|
|
|
|
width: 16
|
|
|
|
}).css({
|
|
|
|
float: 'right'
|
|
|
|
}).appendTo($bar);
|
|
|
|
|
|
|
|
var ui = oml.user.ui;
|
|
|
|
var that = Ox.SplitPanel({
|
|
|
|
elements: [
|
|
|
|
{
|
|
|
|
element: $bar,
|
|
|
|
size: 16
|
|
|
|
},
|
|
|
|
{
|
|
|
|
element: oml.$ui.annotationFolder = oml.ui.annotationFolder()
|
|
|
|
}
|
|
|
|
],
|
|
|
|
orientation: 'vertical'
|
|
|
|
});
|
2019-01-23 15:14:59 +00:00
|
|
|
|
|
|
|
return that;
|
2019-01-24 07:22:40 +00:00
|
|
|
|
2019-01-23 15:14:59 +00:00
|
|
|
};
|