ctkHostAppExampleWidget.h 582 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef CTKHOSTAPPEXAMPLEWIDGET_H
  2. #define CTKHOSTAPPEXAMPLEWIDGET_H
  3. #include <QWidget>
  4. class ctkDicomExampleHost;
  5. namespace Ui {
  6. class ctkHostAppExampleWidget;
  7. }
  8. class ctkHostAppExampleWidget : public QWidget
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit ctkHostAppExampleWidget(QWidget *parent = 0);
  13. ~ctkHostAppExampleWidget();
  14. public slots:
  15. void startButtonClicked();
  16. void stopButtonClicked();
  17. void loadButtonClicked();
  18. protected:
  19. ctkDicomExampleHost* host;
  20. QString appFileName;
  21. private:
  22. Ui::ctkHostAppExampleWidget *ui;
  23. };
  24. #endif // CTKHOSTWIDGET_H