OK, good. The problem is not with your Raptor* widgets.

Next step. Do you see the RaptorLrsGUI window when you run this code?

Qt Code:
  1. #include <QtWidgets/QApplication>
  2. #include <QtWidgets/QMainWindow>
  3. #include <QtWidgets/QStackedWidget>
  4. #include "RaptorLrsGUI.h"
  5.  
  6. int main(int argc, char *argv[])
  7. {
  8. QApplication a(argc, argv);
  9.  
  10. QStackedWidget * pStack = new QStackedWidget( &w );
  11. RaptorLrsGUI * pLrs = new RaptorLrsGUI;
  12. pStack->addWidget( pLrs );
  13. w.setCentralWidget( pStack );
  14. w.show();
  15. return a.exec();
  16. }
To copy to clipboard, switch view to plain text mode 

If it does, substitute "w.showMaximized()" for "w.show()". Does it still work?