00001 00013 /*************************************************************************** 00014 * Copyright (C) 2007 by Jan Koci * 00015 * honza.koci@email.cz * 00016 * http://kengine.sourceforge.net/tutorial/ 00017 * * 00018 * This program is free software; you can redistribute it and/or modify * 00019 * it under the terms of the GNU General Public License as published by * 00020 * the Free Software Foundation; either version 2 of the License, or * 00021 * (at your option) any later version. * 00022 * * 00023 * This program is distributed in the hope that it will be useful, * 00024 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00025 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00026 * GNU General Public License for more details. * 00027 * * 00028 * You should have received a copy of the GNU General Public License * 00029 * along with this program; if not, write to the * 00030 * Free Software Foundation, Inc., * 00031 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00032 ***************************************************************************/ 00033 00034 00035 #pragma once 00036 00037 enum EK3dObjType 00038 { 00039 K3D_NO_OBJ=-1, 00040 K3D_IMAGE_OBJ, 00041 K3D_VERTEX_OBJ, 00042 K3D_SPHERE_OBJ, 00043 K3D_CAMERA_OBJ, 00044 K3D_LINE_OBJ, 00045 K3D_RAY_OBJ, 00046 K3D_PLANE_OBJ, 00047 K3D_NUM_OBJ_IDS 00048 }; 00049 00050 enum EK3dGuiObjType 00051 { 00052 K3D_GUI_NO_OBJ=-1, 00053 K3D_GUI_IMAGE_OBJ, 00054 K3D_GUI_WIN_OBJ, 00055 K3D_GUI_ICON_OBJ, 00056 K3D_GUI_FONT_OBJ, 00057 K3D_GUI_LABEL_OBJ, 00058 K3D_GUI_BUTTON_OBJ, 00059 K3D_GUI_TEXT_FIELD_OBJ, 00060 K3D_GUI_TEXT_BOX_OBJ, 00061 K3D_GUI_LIST_MODEL_OBJ, 00062 K3D_GUI_LIST_BOX_OBJ, 00063 K3D_GUI_DROP_DOWN_OBJ, 00064 K3D_GUI_SCROLL_AREA_OBJ, 00065 K3D_GUI_CHECK_BOX_OBJ, 00066 K3D_GUI_RADIO_BUTTON_OBJ, 00067 K3D_GUI_SLIDER_OBJ, 00068 K3D_GUI_CONTAINER_OBJ, 00069 K3D_NUM_GUI_OBJ_IDS 00070 }; 00071 00072 00073