metavis.cpp 239 B

123456789101112131415
  1. #include "metavis.h"
  2. #include "SettingDialog.h"
  3. metavis::metavis(QWidget *parent)
  4. : QMainWindow(parent)
  5. {
  6. ui.setupUi(this);
  7. }
  8. void metavis::openSetting() {
  9. SettingDialog settings(this);
  10. /* Blocking operation */
  11. settings.exec();
  12. }