Added Axiom models description
[ipypbx] / src / ipypbx / main.py
1 #!/usr/bin/python
2
3 # Copyright (c) Stas Shtin, 2010
4
5 # This file is part of IPyPBX.
6
7 # IPyPBX is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # IPyPBX is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with IPyPBX.  If not, see <http://www.gnu.org/licenses/>.
19
20 import sys
21 from ipypbx import ui
22 from PyQt4 import QtCore, QtGui
23
24
25 class MainWindow(QtGui.QMainWindow):
26     def __init__(self):
27         QtGui.QMainWindow.__init__(self)
28
29         self.ui = ui.Ui_MainWindow()
30         self.ui.setupUi(self)
31
32
33 if __name__ == '__main__':
34     app = QtGui.QApplication(sys.argv)
35     locale = QtCore.QLocale.system().name()
36     print "Locale is", locale
37
38     translator = QtCore.QTranslator()
39     
40     if translator.load("ipypbx_%s" % locale.toLower(), "ipypbx/locale"):
41         app.installTranslator(translator)
42     else:
43         print "Translation not found"
44
45     win = MainWindow()
46     win.show()
47
48     app.exec_()