197e921b3f6f11ea860860bf912a44ecd3bb29c9
[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 sys
19 from ipypbx import controllers, state, ui
20 from PyQt4 import QtCore, QtGui
21
22
23 class MainWindow(QtGui.QMainWindow):
24     """
25     Main application window.
26     """
27     def __init__(self):
28         QtGui.QMainWindow.__init__(self)
29         locale = QtCore.QLocale.system().name()
30         translator = QtCore.QTranslator()
31     
32         if translator.load("ipypbx_%s" % locale.toLower(), "ipypbx/locale"):
33             app.installTranslator(translator)
34
35         self.ui = ui.Ui_MainWindow()
36         self.ui.setupUi(self)
37
38         self.connections = controllers.ConnectionsHandler(self)
39
40         signals_data = (
41             (self.ui.connectionList, 'activated(QModelIndex)',
42              self.connections.select),
43 #            (self.ui.connectionClone, 'clicked()', self.connections.clone),
44             (self.ui.connectionSave, 'clicked()', self.connections.save),
45             (self.ui.connectionAdd, 'clicked()', self.connections.add),
46             )
47
48         for sender, signal, receiver in signals_data:
49             QtCore.QObject.connect(sender, QtCore.SIGNAL(signal), receiver)
50
51
52
53 if __name__ == '__main__':
54     app = QtGui.QApplication(sys.argv)
55     win = MainWindow()
56     win.show()
57
58     app.exec_()