python-efl/efl/elementary/layout_class.pxd

27 lines
1.0 KiB
Cython
Raw Normal View History

# Copyright (C) 2007-2013 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 2.1 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 <http://www.gnu.org/licenses/>.
from object cimport Object
cdef class LayoutClass(Object):
cdef object _elm_layout_signal_cbs
2013-04-02 16:24:35 -07:00
cpdef file_set(self, filename, group = *)
cpdef theme_set(self, clas, group, style)
cpdef edje_object_can_access_set(self, bint can_access)
cpdef bint edje_object_can_access_get(self)