Source code for sas.guiframe

import os
from distutils.filelist import findall

def get_data_path(media):
    """
[docs] """ # Check for data path in the package path = os.path.join(os.path.dirname(__file__), media) if os.path.isdir(path): return path # Check for data path next to exe/zip file. # If we are inside a py2exe zip file, we need to go up # to get to the directory containing # the media for this module path = os.path.dirname(__file__) #Look for maximum n_dir up of the current dir to find media n_dir = 12 for i in range(n_dir): path, _ = os.path.split(path) media_path = os.path.join(path, media) if os.path.isdir(media_path): module_media_path = os.path.join(media_path, 'icons') if os.path.isdir(module_media_path): return module_media_path return media_path raise RuntimeError('Could not find guiframe images files') def get_media_path(media): """
[docs] """ # Check for data path in the package path = os.path.join(os.path.dirname(__file__), media) if os.path.isdir(path): return path # Check for data path next to exe/zip file. # If we are inside a py2exe zip file, we need to go up # to get to the directory containing # the media for this module path = os.path.dirname(__file__) #Look for maximum n_dir up of the current dir to find media n_dir = 12 for i in range(n_dir): path, _ = os.path.split(path) media_path = os.path.join(path, media) if os.path.isdir(media_path): module_media_path = os.path.join(media_path, 'guiframe_media') if os.path.isdir(module_media_path): return module_media_path return media_path raise RuntimeError('Could not find guiframe media files') def data_files(): """
[docs] Return the data files associated with guiframe images . The format is a list of (directory, [files...]) pairs which can be used directly in setup(...,data_files=...) for setup.py. """ data_files = [] path = get_data_path(media="images") for f in findall(path): data_files.append(('images/icons', [f])) path = get_media_path(media="media") for f in findall(path): data_files.append(('media/guiframe_media', [f])) return data_files