/* Hey EMACS -*- linux-c -*- */ /* CalcForgeLP Group File Manager * Copyright (C) 1999-2006 Romain Lievin * * This program is free software you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation either version 2 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef __CTREE_H__ #define __CTREE_H__ enum { COLUMN_NAME, COLUMN_ATTR, COLUMN_TYPE, COLUMN_SIZE, COLUMN_DATA, COLUMN_FONT, COLUMN_ICON, COLUMN_EDIT, }; #define CTREE_NVCOLS (4) // 4 visible columns #define CTREE_NCOLS (8) // 7 real columns #define NODE0 _("Calc") #define NODE1 _("Screen") #define NODE2 _("Operating System") #define NODE3 _("Variables") #define NODE4 _("Applications") #define NODE5 _("ID-LIST") #define NODE6 _("Clock") #define NODEx _("A Folder") void ctree_init(void); void ctree_refresh(void); void ctree_selection_refresh(void); void ctree_set_basetree(void); void ctree_selection_get(void); void ctree_selection_destroy(void); #endif