00001
00002
00003 #ifndef PLOTDIALOG_H
00004 #define PLOTDIALOG_H
00005
00006 #include <qtoolbutton.h>
00007 #include <qcolor.h>
00008 #include <qcheckbox.h>
00009 #include "Worksheet.h"
00010 #include "Dialog.h"
00011
00012 class PlotDialog: public Dialog
00013 {
00014 Q_OBJECT
00015 public:
00016 PlotDialog(MainWin *mw, const char *name);
00017 protected:
00018 QListView *lv;
00019 void updateList();
00020 QPopupMenu *menu;
00021 public slots:
00022 void Menu(QListViewItem *item, const QPoint& pos , int) {menu->popup(pos); }
00023 protected slots:
00024 void deletePlot();
00025 void clonePlot();
00026 };
00027
00028 #endif //PLOTDIALOG_H