You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AFX_yTools/ScriptUI Panels/yToolBox.jsx

1 line
3.1 KiB

function yToolBox(thisObj){
yToolBox = new Object();
yToolBox.icon = new File('../yScripts/yNet.png');
yToolBox.header = new File('../yScripts/header.png');
yToolBox.info = 'yorchnet.com';
yToolBox.name ='yToolBox';
yToolBox.ver ='0.4.2.1 alpha';
yToolBox.desc='Working tools so far...';
yToolBox.buttonWidth=126;
yToolBox.buttonHeight=30;
yToolBox.tools = [];
#include "../yScripts/y_JSExtensions.jsx";
//INCLUDED TOOLS
#include "../yScripts/y_setStructure.jsx";
#include "../yScripts/y_puppetRig.jsx";
#include "../yScripts/y_colorProbe.jsx";
#include "../yScripts/y_yBindBetween2.jsx";
#include "../yScripts/y_stopMotionLayer.jsx";
#include "../yScripts/y_CornerPin.jsx";
yToolBox.window = (thisObj instanceof Panel) ? thisObj : new Window("palette", yToolBox.info , undefined, {resizeable:true});
//MAIN WINDOW STRUCTURE.
var res_header ="group { orientation:'column', alignment:['fill','fill'],margins:[0,0,0,0] \
header: Group { orientation:'column', alignment:['center','top'],margins:[0,0,0,0]\
title: Image {icon:'"+yToolBox.header.path+'/'+yToolBox.header.name+"',preferredSize: [175, 35]},\
ver: StaticText { text:'"+yToolBox.ver+"', alignment:['center','center']}\
desc: StaticText { text:'"+yToolBox.desc+"', alignment:['center','center']}, \
}, \
main: Group { orientation:'column',alignment:['fill','fill'], alignChildren:['center','center'],"
var res = ""; //To be populated with the included Tools
var res_footer ="}, \
cmds: Group { alignment:['center','bottom'], \
icn_app: Image {icon:'"+ yToolBox.icon.path+'/'+ yToolBox.icon.name+"',preferredSize: [15, 18]},\
txt_info: StaticText { text:'"+yToolBox.info+"', alignment:['fill','center'] },\
}, \
}";
//POPULATE res with included tools.
for (i=0;i<yToolBox.tools.length;i++){
res = res + yToolBox.tools [i].btnLayout;
}
//LAYOUT Stuff
yToolBox.window.grp = yToolBox.window.add(res_header+res+res_footer);
yToolBox.window.layout.layout(true);
yToolBox.window.onResize = resize;
yToolBox.window.onClose = function () {delete yToolBox;};
//ASSIGN buttons to the activate function of each tool;
var toolBtns = yToolBox.window.grp.main.children;
for(n=0;n<toolBtns.length;n++){
toolBtns[n].onClick=yToolBox.tools[n].activate;
}
return yToolBox.window
}
function resize(){
this.layout.resize();
customize;
}
function customize(){
g = yToolBox.window.grp.main.graphics;
myFont = ScriptUI.newFont('Cooper Std Black',ScriptUI.FontStyle.REGULAR ,14 );
myBrush = g.newBrush(g.BrushType.SOLID_COLOR, [1, .45, 0, 1]);
g.backgroundColor = myBrush;
/*g = yToolBox.window.grp.header.title.graphics;
g.font = myFont;
g =yToolBox.window.grp.header.graphics;
g.backgroundColor = myBrush;
*/
}
ytb = yToolBox(this);
ytb.window.grp.onDraw = resize;
ytb.window.grp.onDraw = customize;