Updraft
1.0
Open source glider flight visualisation tool.
|
00001 #ifndef UPDRAFT_SRC_PLUGINS_TASKDECL_TASKAXIS_H_ 00002 #define UPDRAFT_SRC_PLUGINS_TASKDECL_TASKAXIS_H_ 00003 00004 #include <QWidget> 00005 00006 namespace Updraft { 00007 00008 class TaskFile; 00009 class TaskDeclPanel; 00010 00012 class TaskAxis : public QWidget { 00013 Q_OBJECT 00014 00015 public: 00016 TaskAxis(const TaskDeclPanel *panel, const TaskFile *taskFile_); 00017 00018 public slots: 00019 void taskDataChanged(); 00020 00021 private: 00022 const TaskFile *taskFile; 00023 const TaskDeclPanel *taskDeclPanel; 00024 00025 protected: 00026 void paintEvent(QPaintEvent *e); 00027 }; 00028 00029 } // End namespace Updraft 00030 00031 #endif // UPDRAFT_SRC_PLUGINS_TASKDECL_TASKAXIS_H_