Restored UI generated by QTDesigner
[ipypbx] / src / ipypbx / main.py
1 # Copyright (c) Stas Shtin, 2010
2
3 # This file is part of IPyPBX.
4
5 # IPyPBX is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9
10 # IPyPBX is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with IPyPBX.  If not, see <http://www.gnu.org/licenses/>.
17
18 import os
19 import sys
20 from ipypbx import controllers, sql, ui
21 from PyQt4 import QtCore, QtGui, QtSql
22
23
24 # Working directory path.
25 # NOTE: ~/.ipypbx gives an error - for some reason QT doesn't like the dot?
26 PREFIX = os.path.expanduser('~/.ipypbx')
27
28 # Database file name.
29 DB_NAME = 'ipypbx.db'
30
31
32 def setupDb(prefix=PREFIX, dbname=DB_NAME):
33     """
34     Setup database.
35     """
36     created = False
37     # Create it if necessary.
38     if prefix:
39         if not os.path.exists(prefix):
40             created = True
41             os.mkdir(prefix, 0700)
42         
43         os.chdir(prefix)
44     
45     # Connect to SQLite database.
46     db = QtSql.QSqlDatabase.addDatabase("QSQLITE")
47     db.setDatabaseName(dbname)
48     
49     if db.open():
50         if created:
51             for query in sql.creation_queries:
52                 QtSql.QSqlQuery().exec_(query)
53     else:
54         QtGui.QMessageBox.warning(
55             None, "Fatal Error", "Database Error: %s" % db.lastError().text())
56         sys.exit(1)
57
58
59 def localize():
60     locale = QtCore.QLocale.system().name()
61     translator = QtCore.QTranslator()
62     
63     if translator.load("ipypbx_%s" % locale.toLower(), "ipypbx/locale"):
64         QtGui.QApplication.installTranslator(translator)
65
66     
67 if __name__ == '__main__':
68     app = QtGui.QApplication(sys.argv)
69     setupDb()
70     main = QtGui.QMainWindow()
71     views = ui.Ui_MainWindow()
72     views.setupUi(main)
73     localize()
74     main.show()
75
76     connectionController = controllers.ConnectionController(
77         parent=main, views=views)
78
79     app.exec_()
80 #    sys.exit()