ui: Show license type label in title bar: "Sourcetrail [trial, test, non-commercial]"

This commit is contained in:
Eberhard Graether
2017-07-17 15:31:06 +02:00
parent 83e5497a18
commit 4bb88a51b7
9 changed files with 78 additions and 23 deletions
@@ -7,7 +7,16 @@ class MessageEnteredLicense
: public Message<MessageEnteredLicense>
{
public:
MessageEnteredLicense()
enum LicenseType
{
LICENSE_NONE,
LICENSE_TEST,
LICENSE_NON_COMMERCIAL,
LICENSE_COMMERCIAL
};
MessageEnteredLicense(LicenseType type)
: type(type)
{
setSendAsTask(false);
}
@@ -16,6 +25,8 @@ public:
{
return "MessageEnteredLicense";
}
const LicenseType type;
};
#endif // MESSAGE_ENTERED_LICENSE_H