Tulip  4.4.0
Better Visualization Through Research
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Groups Pages
SnapshotDialog.h
1 /*
2  *
3  * This file is part of Tulip (www.tulip-software.org)
4  *
5  * Authors: David Auber and the Tulip development Team
6  * from LaBRI, University of Bordeaux 1 and Inria Bordeaux - Sud Ouest
7  *
8  * Tulip is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation, either version 3
11  * of the License, or (at your option) any later version.
12  *
13  * Tulip is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  * See the GNU General Public License for more details.
17  *
18  */
19 ///@cond DOXYGEN_HIDDEN
20 
21 #ifndef _Tulip_SNAPSHOTDIALOG_H
22 #define _Tulip_SNAPSHOTDIALOG_H
23 
24 #include <QDialog>
25 
26 #include <tulip/tulipconf.h>
27 
28 namespace Ui {
29 class SnapshotDialogData;
30 }
31 
32 class QGraphicsScene;
33 class QGraphicsPixmapItem;
34 
35 namespace tlp {
36 
37 class LockLabel;
38 class View;
39 
40 class TLP_QT_SCOPE SnapshotDialog : public QDialog {
41 
42  Q_OBJECT
43 
44 
45 
46 public :
47 
48  SnapshotDialog(const View *v,QWidget *parent=NULL);
49  ~SnapshotDialog();
50 
51 public slots :
52 
53  void accept();
54 
55 protected slots :
56 
57  void widthSpinBoxValueChanged(int value);
58  void heightSpinBoxValueChanged(int value);
59 
60  void fileNameTextChanged(const QString &);
61  void copyClicked();
62 
63 protected :
64 
65  void resizeEvent(QResizeEvent *);
66 
67  void sizeSpinBoxValueChanged();
68 
69  Ui::SnapshotDialogData *ui;
70  const View *view;
71 
72  QGraphicsScene *scene;
73  QGraphicsPixmapItem *pixmapItem;
74  LockLabel *lockLabel;
75 
76  float ratio;
77 
78  bool inSizeSpinBoxValueChanged;
79 };
80 
81 }
82 
83 #endif
84 
85 
86 
87 
88 
89 
90 ///@endcond