GlobeEngine
NavigateToDialog.h
Go to the documentation of this file.
1 #ifndef ExoViewer_NavigateToDialog_h
2 #define ExoViewer_NavigateToDialog_h
3 
4 #include "OpenGL_Includes.h"
5 #include <QDialog>
6 #include <QVBoxLayout>
7 #include <QCompleter>
8 #include <QLineEdit>
9 
10 namespace geExoViewer {
11  class NavigateToDialog : public QDialog
12  {
13  Q_OBJECT
14 
15  public:
16  NavigateToDialog(const std::vector<std::string>& _bodyNames, QWidget * parent = 0, Qt::WindowFlags f = 0);
18 
19  private:
20  QVBoxLayout* layout;
21 
22  QLineEdit *lineEdit;
23 
24  private slots:
25  void tryToNavigate();
26 
27  signals:
28  void navigateToWrittenBody(std::string s);
29 
30  };
31 }
32 #endif
~NavigateToDialog()
Definition: NavigateToDialog.cpp:36
Definition: NavigateToDialog.h:11
NavigateToDialog(const std::vector< std::string > &_bodyNames, QWidget *parent=0, Qt::WindowFlags f=0)
Definition: NavigateToDialog.cpp:8
void navigateToWrittenBody(std::string s)
Definition: BodySelectionDialog.h:12