add menu buttons

This commit is contained in:
rlx 2019-01-24 17:32:33 +05:30
parent 42dcd6f95c
commit d7c59f5794
1 changed files with 34 additions and 13 deletions

View File

@ -2,11 +2,32 @@
oml.ui.annotationPanel = function() { oml.ui.annotationPanel = function() {
var ui = oml.user.ui, var $bar = Ox.Bar({size: 16});
that = Ox.SplitPanel({
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: [ elements: [
{ {
element: Ox.Bar({size: 16}), element: $bar,
size: 16 size: 16
}, },
{ {
@ -14,7 +35,7 @@ oml.ui.annotationPanel = function() {
} }
], ],
orientation: 'vertical' orientation: 'vertical'
}) });
return that; return that;