summaryrefslogtreecommitdiff
path: root/wizards/com/sun/star/wizards/agenda/CGAgenda.py
diff options
context:
space:
mode:
Diffstat (limited to 'wizards/com/sun/star/wizards/agenda/CGAgenda.py')
-rw-r--r--wizards/com/sun/star/wizards/agenda/CGAgenda.py27
1 files changed, 27 insertions, 0 deletions
diff --git a/wizards/com/sun/star/wizards/agenda/CGAgenda.py b/wizards/com/sun/star/wizards/agenda/CGAgenda.py
new file mode 100644
index 000000000000..a1261de90f1a
--- /dev/null
+++ b/wizards/com/sun/star/wizards/agenda/CGAgenda.py
@@ -0,0 +1,27 @@
+from wizards.common.ConfigGroup import ConfigGroup
+from wizards.common.ConfigSet import ConfigSet
+from CGTopic import CGTopic
+
+class CGAgenda(ConfigGroup):
+ cp_AgendaType = int()
+ cp_IncludeMinutes = bool()
+ cp_Title = ""
+ cp_Date = str()
+ cp_Time = str()
+ cp_Location = ""
+ cp_ShowMeetingType = bool()
+ cp_ShowRead = bool()
+ cp_ShowBring = bool()
+ cp_ShowNotes = bool()
+ cp_ShowCalledBy = bool()
+ cp_ShowFacilitator = bool()
+ cp_ShowNotetaker = bool()
+ cp_ShowTimekeeper = bool()
+ cp_ShowAttendees = bool()
+ cp_ShowObservers = bool()
+ cp_ShowResourcePersons = bool()
+ cp_TemplateName = str()
+ cp_TemplatePath = str()
+ cp_ProceedMethod = int()
+
+ cp_Topics = ConfigSet(CGTopic())