Typica is a free program for professional coffee roasters. https://typica.us
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

abouttypica.cpp 499B

1234567891011121314151617181920212223242526
  1. /*295:*/
  2. #line 33 "./abouttypica.w"
  3. #include "abouttypica.h"
  4. /*296:*/
  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 6947 "./typica.w"
  17. /*:296*/
  18. #line 36 "./abouttypica.w"
  19. /*:295*/