00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040 #ifndef SBIBVIEW_H
00041 #define SBIBVIEW_H
00042
00043
00044 #include <LEDA/list.h>
00045 #include <LEDA/string.h>
00046 #include <LEDA/array.h>
00047
00048
00049 #include "../general/SObserver.h"
00050 #include "../algorithms/SSchedAlgorithm.h"
00051
00052
00053 #include <qmainwindow.h>
00054 #include <qmultilineedit.h>
00055
00056 typedef const SSchedAlgorithm* SConstSchedAlg;
00057
00058 class SBibView : public QMainWindow
00059 {
00060 Q_OBJECT
00061 public:
00062
00063 SBibView( QWidget *parent, const SConstSchedAlg &rpAlgorithm );
00064 ~SBibView();
00065
00066 signals:
00069 void closing();
00070
00071 protected:
00072 virtual void closeEvent( QCloseEvent *e) { emit ( closing() ); e->accept();};
00073
00074 protected slots:
00078 void copyToClipboard();
00079
00080 private:
00081 QMultiLineEdit *_pLeaBibEdit;
00082 const QString *_clipboardValue;
00083
00084 };
00085
00086 #endif // SBIBVIEW_H