CmQtEditorWidget.cpp 346 B

12345678910111213141516
  1. #include "CmQtEditorWidget.h"
  2. namespace CamelotEditor
  3. {
  4. QtEditorWidget::QtEditorWidget(QWidget* parent, const QString& name, const QString& title, const QSize& defaultSize)
  5. :QWidget(parent), mName(name), mTitle(title), mDefaultSize(defaultSize)
  6. {
  7. }
  8. void QtEditorWidget::closeWidget()
  9. {
  10. onClosed(this);
  11. destroy();
  12. }
  13. }