00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef _GraphWindow_h_
00011 #define _GraphWindow_h_
00012
00013 #include <QtGui/QWidget>
00014 #include <QtGui/QTextEdit>
00015 #include <QtGui/QLineEdit>
00016 #include <QtGui/QVBoxLayout>
00017 #include <QtGui/QCompleter>
00018 #include <QtGui/QStatusBar>
00019 #include <QtGui/QLabel>
00020 #include <QtGui/QPushButton>
00021 #include <QtGui/QTableView>
00022 #include <QtGui/QMessageBox>
00023
00024 #include "Graph.h"
00025
00026 #include "GrapherExpr.h"
00027
00028 class SeExprEdShortEdit;
00029
00031 class GraphWindow:public QFrame
00032 {
00033 Q_OBJECT;
00034 public:
00035 Graph* graph;
00036 QPushButton *rootbutton,*minbutton,*maxbutton;
00037 QSlider *timeSlider;
00038 QStatusBar* status;
00039 GraphWindow(QWidget* parent=0);
00040 ~GraphWindow();
00041 private slots:
00043 void findRootOrExtrema();
00045 void updateTime();
00047 void exprsEdited();
00048 private:
00049 float time;
00050 bool animating;
00051 std::vector<SeExprEdShortEdit*> _edits;
00052 std::vector<GrapherExpr*> _exprs;
00053 std::map<std::string,SimpleVar> variables;
00054 };
00055
00056 #endif
00057