00001 /*************************************************************************** 00002 glmoleculeparameters.h - description 00003 ------------------- 00004 begin : Sat Mar 26 2005 00005 copyright : (C) 2005-2006 by Ben Swerts 00006 email : bswerts@users.sourceforge.net 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00020 00021 #ifndef GLMOLECULEPARAMETERS_H 00022 #define GLMOLECULEPARAMETERS_H 00023 00025 00026 // Qt header files 00027 #include <qgl.h> 00028 00030 struct GLMoleculeParameters 00032 { 00033 int quality; 00034 GLfloat sizeLines; 00035 GLfloat sizeBonds; 00036 GLfloat sizeForces; 00037 unsigned int defaultMoleculeStyle; 00038 unsigned int defaultForcesStyle; 00039 unsigned int fastRenderLimit; 00040 bool showElements; 00041 bool showNumbers; 00042 unsigned int colorLabels; 00043 unsigned int colorICs; 00044 unsigned int colorSelections; 00045 unsigned int opacitySelections; 00046 unsigned int colorForces; 00047 bool forcesOneColor; 00048 unsigned int opacityForces; 00049 }; 00050 00051 #endif 00052