#!/usr/bin/python
# -*- coding: UTF-8 -*-


'''
    Programme tutoriel 1 sur l'utilisation de PyWx.
'''


#############################################################################
# Informations de versions
#############################################################################
__project__   = 'Formation Python'
__author__    = 'Simon CHOLLET (simon.chollet@ens.fr)'
__modifiers__ = ''
__date__      = '18/06/2013'
__version__   = '1.0'


#############################################################################
# Importations
#############################################################################
# Importation du module wx
import wx


#############################################################################
# Definitions specifiques
#############################################################################


#############################################################################
# Declaration des classes / fonctions
#############################################################################


#############################################################################
# Execution ...
#############################################################################


#
#
# Fonction appelee lors de la demande
# d'execution de la classe/module
if __name__ == "__main__":
    # Creation de l'application principale
    app = wx.App()

    # Creation de la fenetre
    frame = wx.Frame(None, -1, 'code_wx_1.py')
    frame.Show()

    # Lance l'application
    app.MainLoop()
