Tulip  4.8.0
Better Visualization Through Research
 All Classes 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
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  void setSnapshotHasViewSizeRatio(bool snapshotHasViewSizeRatio);
52 
53 public slots :
54 
55  void accept();
56 
57 protected slots :
58 
59  void widthSpinBoxValueChanged(int value);
60  void heightSpinBoxValueChanged(int value);
61 
62  void fileNameTextChanged(const QString &);
63  void copyClicked();
64 
65 protected :
66 
67  void resizeEvent(QResizeEvent *);
68 
69  void sizeSpinBoxValueChanged();
70 
71  Ui::SnapshotDialogData *ui;
72  const View *view;
73 
74  QGraphicsScene *scene;
75  QGraphicsPixmapItem *pixmapItem;
76  LockLabel *lockLabel;
77 
78  float ratio;
79 
80  bool inSizeSpinBoxValueChanged;
81 };
82 
83 }
84 
85 #endif
86 
87 
88 
89 
90 
91 
92 ///@endcond