ctkHostedAppPlaceholderWidget.h 471 B

12345678910111213141516171819
  1. #ifndef CTKHOSTEDAPPPLACEHOLDERWIDGET_H
  2. #define CTKHOSTEDAPPPLACEHOLDERWIDGET_H
  3. #include <QFrame>
  4. #include <org_commontk_dicom_examplehost_Export.h>
  5. class org_commontk_dicom_examplehost_EXPORT ctkHostedAppPlaceholderWidget : public QFrame
  6. {
  7. Q_OBJECT
  8. public:
  9. explicit ctkHostedAppPlaceholderWidget(QWidget *parent = 0);
  10. signals:
  11. void resized();
  12. protected:
  13. void resizeEvent(QResizeEvent* event) { emit resized(); }
  14. };
  15. #endif // CTKHOSTEDAPPPLACEHOLDERWIDGET_H