2 * blenlib/DNA_oops_types.h (mar-2001 nzc)
6 * ***** BEGIN GPL LICENSE BLOCK *****
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
23 * All rights reserved.
25 * The Original Code is: all of this file.
27 * Contributor(s): none yet.
29 * ***** END GPL LICENSE BLOCK *****
31 #ifndef DNA_OOPS_TYPES_H
32 #define DNA_OOPS_TYPES_H
37 #include "DNA_listBase.h"
41 typedef struct TreeStoreElem {
42 short type, nr, flag, used;
46 typedef struct TreeStore {
47 int totelem, usedelem;
52 struct Oops *next, *prev;
53 short type, flag, dt, hide;
54 float x, y; /* left - bottom */
55 float dx, dy; /* shuffle */
62 typedef struct OopsLink {
63 struct OopsLink *next, *prev;
66 Oops *to, *from; /* from is for temp */
71 /* oops->flag (1==SELECT) */
72 #define OOPS_DOSELECT 2
75 /* TreeStoreElem->flag */
77 #define TSE_SELECTED 2
80 /* TreeStoreElem types in BIF_outliner.h */