Home | Trees | Indices | Help |
|
---|
|
1 # Copyright (C) 2012 Vaadin Ltd. 2 # Copyright (C) 2012 Richard Lincoln 3 # 4 # Licensed under the Apache License, Version 2.0 (the "License"); 5 # you may not use this file except in compliance with the License. 6 # You may obtain a copy of the License at 7 # 8 # http://www.apache.org/licenses/LICENSE-2.0 9 # 10 # Unless required by applicable law or agreed to in writing, software 11 # distributed under the License is distributed on an "AS IS" BASIS, 12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 # See the License for the specific language governing permissions and 14 # limitations under the License. 15 16 """The foundation for all Muntjac themes.""" 17 1820 """The Base theme is the foundation for all Muntjac themes. Although 21 it is not necessary to use it as the starting point for all other 22 themes, it is heavily encouraged, since it abstracts and hides away 23 many necessary style properties that the Muntjac terminal expects and 24 needs. 25 26 When creating your own theme, either extend this class and specify 27 the styles implemented in your theme here, or extend some other theme 28 that has a class file specified (e.g. Reindeer or Runo). 29 30 All theme class files should follow the convention of specifying the 31 theme name as a string constant C{THEME_NAME}. 32 """ 33 34 THEME_NAME = 'base' 35 36 #: Creates a button that looks like a regular hypertext link but still 37 # acts like a normal button. 38 BUTTON_LINK = 'link' 39 40 #: Removes extra decorations from the panel. 41 # 42 # @deprecated: Base theme does not implement this style, but it is defined 43 # here since it has been a part of the framework before 44 # multiple themes were available. Use the constant provided 45 # by the theme you're using instead, e.g. 46 # L{Reindeer.PANEL_LIGHT} or L{Runo.PANEL_LIGHT}. 47 PANEL_LIGHT = 'light'48
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Wed Jun 10 22:40:35 2015 | http://epydoc.sourceforge.net |