Advertisement
Guest User

Untitled

a guest
Mar 25th, 2013
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.63 KB | None | 0 0
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3.  
  4. #include <QWidget>
  5. #include <QObject>
  6. #include <QtGui>
  7. #include <QtDebug>
  8. #include "qcustomplot.h"
  9. #include "querybuilder.h"
  10. #include "graph.h"
  11.  
  12. class MainWindow : public QWidget
  13. {
  14.     Q_OBJECT
  15. public:
  16.     explicit MainWindow(QWidget *parent = 0);
  17.     QVBoxLayout* mainLayout;
  18.     QHBoxLayout* selectionGroup;
  19.     QHBoxLayout* graph;
  20.     QHBoxLayout* bottom;
  21.     QPushButton* velgDB;
  22.     QPushButton* addGraph;
  23.     QPushButton* exportButton;
  24.  
  25. signals:
  26.    
  27. public slots:
  28.     void enableBtn();
  29.  
  30. private:
  31.     QueryBuilder QB;
  32.     Graph GO;
  33.    
  34. };
  35.  
  36. #endif // MAINWINDOW_H
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement