# Copyright (C) 2007-2016 various contributors (see AUTHORS) # # This file is part of Python-EFL. # # Python-EFL is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either # version 3 of the License, or (at your option) any later version. # # Python-EFL is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this Python-EFL. If not, see . # include "background_cdef.pxi" cdef class Background(LayoutClass): """ This is the class that actually implements the widget. """ def __init__(self, evasObject parent, *args, **kwargs): """Background(...) :param parent: The parent object :type parent: :py:class:`efl.evas.Object` :param \**kwargs: All the remaining keyword arguments are interpreted as properties of the instance """ self._set_obj(elm_bg_add(parent.obj)) self._set_properties_from_keyword_args(kwargs) cdef int _set_properties_from_keyword_args(self, dict kwargs) except 0: # Bypass the Evas one so that color works as expected return Eo._set_properties_from_keyword_args(self, kwargs) property file: """The file (image or edje collection) giving life for the background. This property contains the image file name (and edje group) used in the background object. If the image comes from an Edje group, it will be stretched to completely fill the background object. If it comes from a traditional image file, it will by default be centered in this widget's are (thus retaining its aspect), what could lead to some parts being not visible. You may change the mode of exhibition for a real image file with :py:attr:`option`. .. note:: Once the image is set, a previously set one will be deleted, even if **file** is *None*. .. note:: This will only affect the contents of one of the background's swallow spots, namely *"elm.swallow.background"*. If you want to achieve the :py:class:`efl.elementary.layout_class.LayoutClass`'s file setting behavior, you'll have to call that method on this object. :type: string **file**, *optional* string **group** :raise RuntimeError: if setting the file failed. """ def __get__(self): cdef: const char *filename const char *group elm_bg_file_get(self.obj, &filename, &group) return (_ctouni(filename), _ctouni(group)) def __set__(self, value): cdef int ret if isinstance(value, tuple) or isinstance(value, list): filename, group = value else: filename = value group = "" if isinstance(filename, unicode): filename = PyUnicode_AsUTF8String(filename) if isinstance(group, unicode): group = PyUnicode_AsUTF8String(group) if not elm_bg_file_set(self.obj, filename if filename is not None else NULL, group if group is not None else NULL): raise RuntimeError("Could not set background file.") def file_set(self, filename, group = None): if isinstance(filename, unicode): filename = PyUnicode_AsUTF8String(filename) if isinstance(group, unicode): group = PyUnicode_AsUTF8String(group) if not elm_bg_file_set(self.obj, filename if filename is not None else NULL, group if group is not None else NULL): raise RuntimeError("Could not set background file.") def file_get(self): cdef: const char *filename const char *group elm_bg_file_get(self.obj, &filename, &group) return (_ctouni(filename), _ctouni(group)) property option: """The mode of display for a given background widget's image. This property reflects how the background widget will display its image. This will only work if :py:attr:`file` was previously set with an image file. The image can be displayed tiled, scaled, centered or stretched. :type: :ref:`Elm_Bg_Option` """ def __get__(self): return elm_bg_option_get(self.obj) def __set__(self, value): elm_bg_option_set(self.obj, value) def option_set(self, option): elm_bg_option_set(self.obj, option) def option_get(self): return elm_bg_option_get(self.obj) property color: """The color on a given background widget. This property reflects the color used for the background rectangle, in RGB format. Each color component's range is from 0 to 255. .. note:: You probably only want to use this property if you haven't previously set :py:attr:`file`, so that you just want a solid color background. :type: (int **r**, int **g**, int **b**) """ def __get__(self): cdef int r, g, b elm_bg_color_get(self.obj, &r, &g, &b) return (r, g, b) def __set__(self, value): cdef int r, g, b r, g, b = value elm_bg_color_set(self.obj, r, g, b) def color_set(self, r, g, b): elm_bg_color_set(self.obj, r, g, b) def color_get(self): cdef int r, g, b elm_bg_color_get(self.obj, &r, &g, &b) return (r, g, b) property load_size: """The size of the pixmap representation of the image set on a given background widget. This property sets a new size for pixmap representation of the given bg image. It allows for the image to be loaded already in the specified size, reducing the memory usage and load time (for example, when loading a big image file with its load size set to a smaller size) .. note:: This is just a hint for the underlying system. The real size of the pixmap may differ depending on the type of image being loaded, being bigger than requested. .. warning:: This function just makes sense if an image file was set with :py:attr:`file`. :type: (int **w**, int **h**) """ def __set__(self, value): cdef Evas_Coord w, h w, h = value elm_bg_load_size_set(self.obj, w, h) def load_size_set(self, w, h): elm_bg_load_size_set(self.obj, w, h) _object_mapping_register("Elm_Bg", Background)