import os # 05/22/2008 18:47:17
import wx # Import wxPython
import wx.html # Import wx Python HTML widget module
import webbrowser #Import wxPython web browser widget

MAIN_WINDOW_DEFAULT_SIZE = (300,200) # Default created window size which is now a constant
ABOUT_DIALOG_SIZE = (360,400) # Created window size which will not resize
SPLASH_SCREEN_FILENAME = 'splashScreen.jpg' # Bitmap shown on first / splashscreen
SPLASH_SCREEN_TIMEOUT = 6000 # The time set for the splashscreen to show
    
btn = wx.ID_OK # The ID created and reused representing the close button
webbrowser.open

class ImageViewerAbout(wx.Dialog): #Module dialog
    
    text = '''<html>
    <h5>RaNaldoS Image Viewer</h5>
    <p>The point of this project product demonstrates the basic application of Python.
    The component development included in the image viewer explore entry level Python, 
    wxPython, and wxPython widgets.</p>
   
    <p>More information is readily available in Programming for Artists studies within
    The Media Arts and Animation programs at the Art Institute of Seattle.</p>
    
    <p>This project was reproduced through tutorial learning purchasable at ShowMeDo.com.</p>
    
    <p>Thank you for visiting my # <a href="C:\Users\RaNaldo\AppData\Roaming\Microsoft\Internet Explorer\Quick Launch">AIS study Web site</a>.</p>
    
    <p>* File is copyrighted and not for distribution</p>
    </html>'''
