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 *, const QPoint& pos, int) { menu->popup(pos); }
00023 void deletePlot(int item = -1);
00024 void clonePlot(int item = -1);
00025 };
00026
00027 #endif //PLOTDIALOG_H