#!/usr/bin/env python

#
# PyGTKEditor
#
# Copyright (c) 2007 Khertan (Benoit HERVIER)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#        
# Khertan (Benoit HERVIER) khertan@khertan.net
#

import gtk
import hildon
import osso
from pygtkeditor_window import *

#############################################################################
# @brief Main
#############################################################################
if __name__ == '__main__':

  app = hildon.Program()
  try:
    osso_context = osso.Context("net.khertan.pygtkeditor", "2.4.0", False)
  except:
    osso_context = None

  #note = osso.SystemNote(osso_context)
  #result = osso.SystemNote(osso_context).system_note_infoprint(sys.argv.__str__())

  pygtkeditor_window(app,osso_context)

  gtk.main ()