LeechCraft  0.6.70-10870-g558588d6ec
Modular cross-platform feature rich live environment.
entityfields.h
Go to the documentation of this file.
1 /**********************************************************************
2  * LeechCraft - modular cross-platform feature rich internet client.
3  * Copyright (C) 2006-2014 Georg Rudoy
4  *
5  * Boost Software License - Version 1.0 - August 17th, 2003
6  *
7  * Permission is hereby granted, free of charge, to any person or organization
8  * obtaining a copy of the software and accompanying documentation covered by
9  * this license (the "Software") to use, reproduce, display, distribute,
10  * execute, and transmit the Software, and to prepare derivative works of the
11  * Software, and to permit third-parties to whom the Software is furnished to
12  * do so, all subject to the following:
13  *
14  * The copyright notices in the Software and this entire statement, including
15  * the above license grant, this restriction and the following disclaimer,
16  * must be included in all copies of the Software, in whole or in part, and
17  * all derivative works of the Software, unless such copies or derivative
18  * works are solely in the form of machine-executable object code generated by
19  * a source language processor.
20  *
21  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23  * FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
24  * SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
25  * FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
26  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27  * DEALINGS IN THE SOFTWARE.
28  **********************************************************************/
29 
30 #pragma once
31 
32 #include <QString>
33 
34 namespace LeechCraft
35 {
36 namespace AN
37 {
44 namespace EF
45 {
53  const QString SenderID { "org.LC.AdvNotifications.SenderID" };
54 
67  const QString EventCategory { "org.LC.AdvNotifications.EventCategory" };
68 
78  const QString EventID { "org.LC.AdvNotifications.EventID" };
79 
87  const QString VisualPath { "org.LC.AdvNotifications.VisualPath" };
88 
103  const QString EventType { "org.LC.AdvNotifications.EventType" };
104 
109  const QString FullText { "org.LC.AdvNotifications.FullText" };
110 
115  const QString ExtendedText { "org.LC.AdvNotifications.ExtendedText" };
116 
128  const QString DeltaCount { "org.LC.AdvNotifications.DeltaCount" };
129 
138  const QString Count { "org.LC.AdvNotifications.Count" };
139 
146  const QString OpenConfiguration { "org.LC.AdvNotifications.OpenConfiguration" };
147 
152  const QString IsSingleShot { "org.LC.AdvNotifications.SingleShot" };
153 
159  const QString NotifyTransient { "org.LC.AdvNotifications.NotifyTransient" };
160 
166  const QString NotifyPersistent { "org.LC.AdvNotifications.NotifyPersistent" };
167 
173  const QString NotifyAudio { "org.LC.AdvNotifications.NotifyAudio" };
174 }
175 }
176 }
const QString EventID
The ID of the event (QString).
Definition: entityfields.h:78
const QString VisualPath
Visual path to this event (QStringList).
Definition: entityfields.h:87
const QString SenderID
The plugin ID of the sender (QByteArray or QString).
Definition: entityfields.h:53
const QString Count
The new total event count (int).
Definition: entityfields.h:138
const QString FullText
The detailed text of the event (QString).
Definition: entityfields.h:109
const QString EventCategory
The category of the event (QString).
Definition: entityfields.h:67
const QString IsSingleShot
Whether the created rule should be single-shot (bool).
Definition: entityfields.h:152
const QString NotifyAudio
Whether an audio notifier should be enabled by default in the rule being created (bool).
Definition: entityfields.h:173
const QString DeltaCount
The change in event count (int).
Definition: entityfields.h:128
const QString OpenConfiguration
Whether configuration dialog should be opened (bool).
Definition: entityfields.h:146
const QString NotifyTransient
Whether a transient notifier should be enabled by default in the rule being created (bool)...
Definition: entityfields.h:159
const QString ExtendedText
The even more detailed text than FullText (QString).
Definition: entityfields.h:115
const QString EventType
The type of the event (QString).
Definition: entityfields.h:103
const QString NotifyPersistent
Whether a persistent notifier should be enabled by default in the rule being created (bool)...
Definition: entityfields.h:166