2008-07-23 08:20:49 +07:00
|
|
|
#!/usr/bin/env python
|
2009-02-26 07:18:02 +07:00
|
|
|
# -*- coding: utf-8 -*-
|
2008-07-24 10:08:55 +07:00
|
|
|
# coding=UTF-8
|
|
|
|
# Relational
|
|
|
|
# Copyright (C) 2008 Salvo "LtWorf" Tomaselli
|
|
|
|
#
|
|
|
|
# Relation 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 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
# author Salvo "LtWorf" Tomaselli <tiposchi@tiscali.it>
|
2008-07-23 08:20:49 +07:00
|
|
|
|
|
|
|
import sys
|
2009-07-05 17:26:51 +07:00
|
|
|
import os
|
2009-06-30 04:28:44 +07:00
|
|
|
import sip
|
2008-07-23 08:20:49 +07:00
|
|
|
from PyQt4 import QtCore, QtGui
|
2009-03-02 10:29:11 +07:00
|
|
|
from relational_gui import maingui, about
|
2009-02-26 07:18:02 +07:00
|
|
|
from relational import relation, parser
|
2008-07-23 08:20:49 +07:00
|
|
|
|
2009-07-05 17:26:51 +07:00
|
|
|
version="0.11"
|
2009-03-02 10:29:11 +07:00
|
|
|
about.version=version
|
2008-07-24 10:08:55 +07:00
|
|
|
|
2008-07-23 08:20:49 +07:00
|
|
|
if __name__ == "__main__":
|
2008-11-15 07:15:26 +07:00
|
|
|
if len (sys.argv) > 1 and sys.argv[1] == "-v":
|
|
|
|
print version
|
|
|
|
sys.exit(0)
|
2009-04-29 07:14:00 +07:00
|
|
|
|
|
|
|
try:
|
|
|
|
import psyco
|
|
|
|
psyco.full()
|
|
|
|
except:
|
|
|
|
pass
|
2009-05-25 12:04:24 +07:00
|
|
|
|
2008-11-15 07:15:26 +07:00
|
|
|
app = QtGui.QApplication(sys.argv)
|
|
|
|
Form = QtGui.QWidget()
|
|
|
|
|
2009-07-05 17:26:51 +07:00
|
|
|
if os.name=='nt':
|
|
|
|
Form.setFont(QtGui.QFont("Dejavu Sans Bold"))
|
2009-05-25 12:04:24 +07:00
|
|
|
|
2008-11-15 07:15:26 +07:00
|
|
|
ui = maingui.Ui_Form()
|
|
|
|
ui.setupUi(Form)
|
2009-08-18 06:52:33 +07:00
|
|
|
|
|
|
|
for i in range(1,len(sys.argv)):
|
|
|
|
f=sys.argv[i].split('/')
|
|
|
|
defname=f[len(f)-1].lower()
|
|
|
|
if (defname.endswith(".csv") or defname.endswith(".tlb")): #removes the extension
|
|
|
|
defname=defname[:-4]
|
|
|
|
print 'Loading file "%s" with name "%s"' % (sys.argv[i],defname)
|
|
|
|
ui.loadRelation(sys.argv[i],defname)
|
|
|
|
|
|
|
|
|
2008-11-15 07:15:26 +07:00
|
|
|
Form.show()
|
|
|
|
|
|
|
|
sys.exit(app.exec_())
|