#!/usr/bin/env python
# -*- coding: utf-8 -*-

from rapid.gui import RapidGUI
try:
	from PyQt4 import QtGui
except:
	import os, sys
	os.system("xmessage 'This application requires PyQt4 to be installed.\n" +
		"Please use your package manager to install PyQt4 and then run rapid-gui again.'")
	sys.exit(1)

if __name__ == '__main__':
	app = QtGui.QApplication(['RapidGUI'])
	window = RapidGUI()
	window.show()
	app.exec_()
