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.

helpmenu.cpp 1.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*182:*/
  2. #line 36 "./helpmenu.w"
  3. #include "helpmenu.h"
  4. #include "abouttypica.h"
  5. #include "feedback.h"
  6. /*183:*/
  7. #line 49 "./helpmenu.w"
  8. HelpMenu::HelpMenu():QMenu()
  9. {
  10. setObjectName("helpMenu");
  11. setTitle(tr("Help"));
  12. QAction*aboutTypicaAction= new QAction(tr("About Typica"),this);
  13. aboutTypicaAction->setObjectName("aboutTypicaAction");
  14. addAction(aboutTypicaAction);
  15. connect(aboutTypicaAction,SIGNAL(triggered()),this,SLOT(displayAboutTypica()));
  16. QAction*sendFeedbackAction= new QAction(tr("Send Feedback"),this);
  17. sendFeedbackAction->setObjectName("sendFeedback");
  18. addAction(sendFeedbackAction);
  19. connect(sendFeedbackAction,SIGNAL(triggered()),this,SLOT(displayFeedbackWizard()));
  20. }
  21. /*:183*//*184:*/
  22. #line 67 "./helpmenu.w"
  23. void HelpMenu::displayAboutTypica()
  24. {
  25. AboutTypica*aboutBox= new AboutTypica;
  26. aboutBox->show();
  27. }
  28. /*:184*//*185:*/
  29. #line 76 "./helpmenu.w"
  30. void HelpMenu::displayFeedbackWizard()
  31. {
  32. FeedbackWizard*window= new FeedbackWizard;
  33. window->show();
  34. }
  35. #line 4266 "./typica.w"
  36. #line 1 "./feedback.w"
  37. /*:185*/
  38. #line 41 "./helpmenu.w"
  39. /*:182*/