CGAgenda.py 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #
  2. # This file is part of the LibreOffice project.
  3. #
  4. # This Source Code Form is subject to the terms of the Mozilla Public
  5. # License, v. 2.0. If a copy of the MPL was not distributed with this
  6. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  7. #
  8. # This file incorporates work covered by the following license notice:
  9. #
  10. # Licensed to the Apache Software Foundation (ASF) under one or more
  11. # contributor license agreements. See the NOTICE file distributed
  12. # with this work for additional information regarding copyright
  13. # ownership. The ASF licenses this file to you under the Apache
  14. # License, Version 2.0 (the "License"); you may not use this file
  15. # except in compliance with the License. You may obtain a copy of
  16. # the License at http://www.apache.org/licenses/LICENSE-2.0 .
  17. #
  18. from ..common.ConfigGroup import ConfigGroup
  19. from ..common.ConfigSet import ConfigSet
  20. from .CGTopic import CGTopic
  21. class CGAgenda(ConfigGroup):
  22. def __init__(self):
  23. self.cp_AgendaType = int()
  24. self.cp_IncludeMinutes = bool()
  25. self.cp_Title = ""
  26. self.cp_Date = str()
  27. self.cp_Time = str()
  28. self.cp_Location = ""
  29. self.cp_ShowMeetingType = bool()
  30. self.cp_ShowRead = bool()
  31. self.cp_ShowBring = bool()
  32. self.cp_ShowNotes = bool()
  33. self.cp_ShowCalledBy = bool()
  34. self.cp_ShowFacilitator = bool()
  35. self.cp_ShowNotetaker = bool()
  36. self.cp_ShowTimekeeper = bool()
  37. self.cp_ShowAttendees = bool()
  38. self.cp_ShowObservers = bool()
  39. self.cp_ShowResourcePersons = bool()
  40. self.cp_TemplateName = str()
  41. self.cp_TemplatePath = str()
  42. self.cp_ProceedMethod = int()
  43. self.cp_Topics = ConfigSet(CGTopic)