00001 #include <wx/colour.h> 00002 #include <wx/wxprec.h> 00003 #include "ListaFx/TLista.h" 00004 00005 00006 #ifndef __OpzGrafico_ 00007 #define __OpzGrafico_ 00008 00010 00013 class OpzGrafico 00014 { 00015 public: 00017 double xmin; 00018 00020 double xmax; 00021 00023 double ymin; 00024 00026 double ymax; 00027 00029 wxColour bgcolor; 00030 00032 bool xgrid; 00033 00035 bool ygrid; 00036 00038 bool xaxis; 00039 00041 bool yaxis; 00042 00044 bool showstepsx; 00045 00047 bool showstepsy; 00048 00050 TLista functions; 00051 00053 int nstepsx; 00054 00056 int nstepsy; 00057 00059 int width; 00060 00062 int height; 00063 00064 00065 00067 OpzGrafico(); 00068 00069 00070 }; 00071 00072 #endif