Fixed text file permissions
[snark14.git] / tools / Display / displaylines.hpp
1 /** @file displaylines.hpp
2     @package snark14Display
3     @author Bruno M. Carvalho and Deniz Sarioz
4     licensed under (open-source) QPL v1.0
5     which accompanies this distribution in the file QPL
6 */
7
8 #ifndef DISPLAYLINESWINDOW_H
9 #define DISPLAYLINESWINDOW_H
10
11 #include "sd_line_t.hpp"
12
13 #include <qvariant.h>
14 #include <qdialog.h>
15
16 class QVBoxLayout; 
17 class QHBoxLayout; 
18 class QGridLayout; 
19 class QWidget;
20 class QPixmap;
21 class QPushButton;
22 class QString;
23
24 class displaylineswindow : public QDialog
25
26     Q_OBJECT
27
28 public:
29     displaylineswindow( QWidget* parent = 0, const char* name = 0, QPixmap* pixmap = 0, bool modal = FALSE, WFlags fl = 0, int x = 0, int y = 0 );
30     ~displaylineswindow();
31
32     QString imagename;
33     QPushButton* savebutton;
34     QPushButton* closebutton;
35     QWidget* pixmapwidget;
36     QPixmap* localpixmap;
37 public slots:
38     void saveImage();
39 };
40
41 #endif // DISPLAYLINESWINDOW_H