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.w 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. @** A Window for Displaying Information About Typica.
  2. \noindent The About window for an application typically displays a few pieces
  3. of information: The application logo, name, and version number, copyright and
  4. license information, and other assorted information. In Typica this also
  5. includes a list of the people and companies that have provided financial
  6. assistance toward the ongoing development of the software and information that
  7. others can use to help in this way. Some of this information would benefit
  8. from existing as a link which can open an external application such as a web
  9. browser or email client.
  10. @(abouttypica.h@>=
  11. #include <QMainWindow>
  12. #ifndef AboutTypicaHeader
  13. #define AboutTypicaHeader
  14. class AboutTypica : public QMainWindow
  15. {
  16. Q_OBJECT
  17. public:
  18. AboutTypica();
  19. };
  20. #endif
  21. @ The implementation is in a separate file.
  22. @(abouttypica.cpp@>=
  23. #include "abouttypica.h"
  24. @<AboutTypica implementation@>@;
  25. @ The information provided here comes from a set of HTML documents stored as
  26. compiled resources and presented in a set of |QWebView| instances accessible
  27. through a set of tabs.
  28. @<AboutTypica implementation@>=
  29. AboutTypica::AboutTypica() : QMainWindow(NULL)
  30. {
  31. }