USGS

Isis 3.0 Object Programmers' Reference

Home

PvlEditDialog.h
1 #ifndef PvlEditDialog_h
2 #define PvlEditDialog_h
3 
4 #include <QDialog>
5 #include <QString>
6 #include "Pvl.h"
7 
8 class QLabel;
9 class QLineEdit;
10 class QListWidget;
11 class QPushButton;
12 class QTextEdit;
13 
14 #include <vector>
15 
16 namespace Isis {
38  class PvlEditDialog : public QDialog {
39  Q_OBJECT
40 
41 
42  public:
43  PvlEditDialog(Pvl &pvl, QWidget *parent = 0);
44 
45  private:
46  QTextEdit *p_textEdit;
47  QPushButton *p_saveButton;
48 
49  private slots:
50  void enableSaveButton();
51  void saveTextEdit();
52  };
53 };
54 
55 #endif
56 
57