Typica is a free program for professional coffee roasters. https://typica.us
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

abouttypica.cpp 499B

1234567891011121314151617181920212223242526
  1. /*287:*/
  2. #line 33 "./abouttypica.w"
  3. #include "abouttypica.h"
  4. /*288:*/
  5. #line 42 "./abouttypica.w"
  6. AboutTypica::AboutTypica():QMainWindow(NULL)
  7. {
  8. QFile aboutFile(":/resources/html/about.html");
  9. aboutFile.open(QIODevice::ReadOnly);
  10. QByteArray content= aboutFile.readAll();
  11. TypicaWebView*banner= new TypicaWebView;
  12. banner->setHtml(content,QUrl("qrc:/resources/html/about.html"));
  13. aboutFile.close();
  14. setCentralWidget(banner);
  15. }
  16. #line 6808 "./typica.w"
  17. /*:288*/
  18. #line 36 "./abouttypica.w"
  19. /*:287*/