src/pyams_content/component/illustration/zmi/interfaces.py
changeset 418 81e4e9b9cde2
parent 417 f09842eb4ada
child 419 824fef808845
--- a/src/pyams_content/component/illustration/zmi/interfaces.py	Fri Mar 02 11:24:02 2018 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-#
-# Copyright (c) 2008-2015 Thierry Florac <tflorac AT ulthar.net>
-# All Rights Reserved.
-#
-# This software is subject to the provisions of the Zope Public License,
-# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
-# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
-# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
-# FOR A PARTICULAR PURPOSE.
-#
-
-__docformat__ = 'restructuredtext'
-
-# import standard library
-
-# import interfaces
-
-# import packages
-from zope.interface import Interface
-from zope.schema import Bool
-
-from pyams_content import _
-
-
-class IIllustrationWithZoomSettings(Interface):
-    """Illustration with zoom interface"""
-
-    zoom_on_click = Bool(title=_("Zoom on click?"),
-                         description=_("If 'yes', a click on illustration thumbnail is required to zoom"),
-                         required=True,
-                         default=True)