123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*##############################################################################
- # Copyright (C) 2011 HPCC Systems.
- #
- # All rights reserved. This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU Affero General Public License as
- # published by the Free Software Foundation, either version 3 of the
- # License, or (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU Affero General Public License for more details.
- #
- # You should have received a copy of the GNU Affero General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- ############################################################################## */
- /*
- Feel free to use your custom icons for the tree. Make sure they are all of the same size.
- User icons collections are welcome, we'll publish them giving all regards.
- */
- var TREE_TPL = {
- 'target' : '_self', // name of the frame links will be opened in
- // other possible values are: _blank, _parent, _search, _self and _top
- 'icon_e' : '/esp/files_/img/blank.png', // empty image
- 'icon_l' : '/esp/files_/img/line.gif', // vertical line
- 'icon_32' : '/esp/files_/img/base.gif', // root leaf icon normal
- 'icon_36' : '/esp/files_/img/base.gif', // root leaf icon selected
-
- 'icon_48' : '/esp/files_/img/base.gif', // root icon normal
- 'icon_52' : '/esp/files_/img/base.gif', // root icon selected
- 'icon_56' : '/esp/files_/img/base.gif', // root icon opened
- 'icon_60' : '/esp/files_/img/base.gif', // root icon selected
-
- 'icon_16' : '/esp/files_/img/folder.gif', // node icon normal
- 'icon_20' : '/esp/files_/img/folderopen.gif', // node icon selected
- 'icon_24' : '/esp/files_/img/folderopen.gif', // node icon opened
- 'icon_28' : '/esp/files_/img/folderopen.gif', // node icon selected opened
- 'icon_0' : '/esp/files_/img/page.gif', // leaf icon normal
- 'icon_4' : '/esp/files_/img/page.gif', // leaf icon selected
-
- 'icon_2' : '/esp/files_/img/joinbottom.gif', // junction for leaf
- 'icon_3' : '/esp/files_/img/join.gif', // junction for last leaf
- 'icon_18' : '/esp/files_/img/plusbottom.gif', // junction for closed node
- 'icon_19' : '/esp/files_/img/plus.gif', // junctioin for last closed node
- 'icon_26' : '/esp/files_/img/minusbottom.gif',// junction for opened node
- 'icon_27' : '/esp/files_/img/minus.gif' // junctioin for last opended node
- };
|