# 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 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 . # """ .. image:: /images/fileselector-button-preview.png Widget description ------------------ This is a button that, when clicked, creates an Elementary window (or inner window) with a :py:class:`~efl.elementary.fileselector.Fileselector` within. When a file is chosen, the (inner) window is closed and the button emits a signal having the selected file as it's ``event_info``. This widget encapsulates operations on its internal file selector on its own API. There is less control over its file selector than that one would have instantiating one directly. The following styles are available for this button: - ``"default"`` - ``"anchor"`` - ``"hoversel_vertical"`` - ``"hoversel_vertical_entry"`` This widget emits the following signals, besides the ones sent from :py:class:`~efl.elementary.button.Button`: - ``"file,chosen"`` - the user has selected a path which comes as the ``event_info`` data Default text parts of the fileselector_button widget that you can use for are: - "default" - Label of the fileselector_button Default content parts of the fileselector_button widget that you can use for are: - "icon" - Icon of the fileselector_button """ from cpython cimport PyUnicode_AsUTF8String from libc.stdint cimport uintptr_t from efl.eo cimport _object_mapping_register from efl.utils.conversions cimport _ctouni from efl.evas cimport Object as evasObject cimport enums def _cb_string_conv(uintptr_t addr): cdef const_char *s = addr return _ctouni(s) if s is not NULL else None cdef class FileselectorButton(Button): """This is the class that actually implements the widget.""" def __init__(self, evasObject parent, *args, **kwargs): self._set_obj(elm_fileselector_button_add(parent.obj)) self._set_properties_from_keyword_args(kwargs) property window_title: """The title for a given file selector button widget's window This is the popup window's title, when the file selector pops out after a click on the button. Those windows have the default (unlocalized) value of ``"Select a file"`` as titles. .. note:: Setting this will only take effect if the file selector button widget is **not** under "inwin mode". :type: string """ def __get__(self): return _ctouni(elm_fileselector_button_window_title_get(self.obj)) def __set__(self, title): if isinstance(title, unicode): title = PyUnicode_AsUTF8String(title) elm_fileselector_button_window_title_set(self.obj, title if title is not None else NULL) def window_title_set(self, title): if isinstance(title, unicode): title = PyUnicode_AsUTF8String(title) elm_fileselector_button_window_title_set(self.obj, title if title is not None else NULL) def window_title_get(self): return _ctouni(elm_fileselector_button_window_title_get(self.obj)) property window_size: """The size of a given file selector button widget's window, holding the file selector itself. .. note:: Setting this will only take any effect if the file selector button widget is **not** under "inwin mode". The default size for the window (when applicable) is 400x400 pixels. :type: tuple of Evas_Coords (int) """ def __get__(self): cdef Evas_Coord w, h elm_fileselector_button_window_size_get(self.obj, &w, &h) return (w, h) def __set__(self, value): cdef Evas_Coord w, h w, h = value elm_fileselector_button_window_size_set(self.obj, w, h) def window_size_set(self, width, height): elm_fileselector_button_window_size_set(self.obj, width, height) def window_size_get(self): cdef Evas_Coord w, h elm_fileselector_button_window_size_get(self.obj, &w, &h) return (w, h) property path: """The initial file system path for a given file selector button widget It must be a **directory** path, which will have the contents displayed initially in the file selector's view. The default initial path is the ``"HOME"`` environment variable's value. :type: string """ def __get__(self): return _ctouni(elm_fileselector_button_path_get(self.obj)) def __set__(self, path): if isinstance(path, unicode): path = PyUnicode_AsUTF8String(path) elm_fileselector_button_path_set(self.obj, path if path is not None else NULL) def path_set(self, path): if isinstance(path, unicode): path = PyUnicode_AsUTF8String(path) elm_fileselector_button_path_set(self.obj, path if path is not None else NULL) def path_get(self): return _ctouni(elm_fileselector_button_path_get(self.obj)) property expandable: """Enable/disable a tree view in the given file selector button widget's internal file selector This has the same effect as :py:attr:`efl.elementary.fileselector.Fileselector.expandable`, but now applied to a file selector button's internal file selector. .. note:: There's no way to put a file selector button's internal file selector in "grid mode", as one may do with "pure" file selectors. :type: bool """ def __get__(self): return bool(elm_fileselector_button_expandable_get(self.obj)) def __set__(self, expand): elm_fileselector_button_expandable_set(self.obj, expand) def expandable_set(self, expand): elm_fileselector_button_expandable_set(self.obj, expand) def expandable_get(self): return bool(elm_fileselector_button_expandable_get(self.obj)) property folder_only: """Whether a given file selector button widget's internal file selector is to display folders only or the directory contents, as well. This has the same effect as :py:attr:`efl.elementary.fileselector.Fileselector.folder_only`, but now applied to a file selector button's internal file selector. :type: bool """ def __get__(self): return bool(elm_fileselector_button_folder_only_get(self.obj)) def __set__(self, folder_only): elm_fileselector_button_folder_only_set(self.obj, folder_only) def folder_only_set(self, folder_only): elm_fileselector_button_folder_only_set(self.obj, folder_only) def folder_only_get(self): return bool(elm_fileselector_button_folder_only_get(self.obj)) property is_save: """Enable/disable the file name entry box where the user can type in a name for a file, in a given file selector button widget's internal file selector. This has the same effect as :py:attr:`efl.elementary.fileselector.Fileselector.is_save`, but now applied to a file selector button's internal file selector. :type: bool """ def __get__(self): return bool(elm_fileselector_button_is_save_get(self.obj)) def __set__(self, is_save): elm_fileselector_button_is_save_set(self.obj, is_save) def is_save_set(self, is_save): elm_fileselector_button_is_save_set(self.obj, is_save) def is_save_get(self): return bool(elm_fileselector_button_is_save_get(self.obj)) property inwin_mode: """Whether a given file selector button widget's internal file selector will raise an Elementary "inner window", instead of a dedicated Elementary window. By default, it won't. .. seealso:: :py:class:`~efl.elementary.innerwindow.InnerWindow` for more information on inner windows :type: bool """ def __get__(self): return bool(elm_fileselector_button_inwin_mode_get(self.obj)) def __set__(self, inwin_mode): elm_fileselector_button_inwin_mode_set(self.obj, inwin_mode) def inwin_mode_set(self, inwin_mode): elm_fileselector_button_inwin_mode_set(self.obj, inwin_mode) def inwin_mode_get(self): return bool(elm_fileselector_button_inwin_mode_get(self.obj)) def callback_file_chosen_add(self, func, *args, **kwargs): """The user has selected a path which comes as the ``event_info`` data.""" self._callback_add_full("file,chosen", _cb_string_conv, func, *args, **kwargs) def callback_file_chosen_del(self, func): self._callback_del_full("file,chosen", _cb_string_conv, func) _object_mapping_register("Elm_Fileselector_Button", FileselectorButton)