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 489B

1234567891011121314151617181920212223242526
  1. /*224:*/
  2. #line 31 "./abouttypica.w"
  3. #include "abouttypica.h"
  4. /*225:*/
  5. #line 40 "./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. QWebView*banner= new QWebView;
  12. banner->setHtml(content,QUrl("qrc:/resources/html/about.html"));
  13. aboutFile.close();
  14. setCentralWidget(banner);
  15. }
  16. #line 5656 "./typica.w"
  17. /*:225*/
  18. #line 34 "./abouttypica.w"
  19. /*:224*/