#!/usr/bin/python2.5

#
# 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 mcalendar_main import *

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

  app = hildon.Program()
  try:
     osso_context = osso.Context("net.khertan.mcalendar", VERSION, False)
  except:
     osso_context = None
     print 'osso context init error'

  gtk.settings_get_default().set_long_property("gtk-button-images",1,"")
  mCal = mCalendar(app)
  gtk.main()

  