7 Module implementing a personal information manager used to complete form fields. |
7 Module implementing a personal information manager used to complete form fields. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt4.QtCore import Qt, QObject |
10 from PyQt4.QtCore import Qt, QObject |
11 from PyQt4.QtGui import QDialog, QMenu |
11 from PyQt4.QtGui import QDialog, QMenu |
12 |
|
13 from .PersonalDataDialog import PersonalDataDialog |
|
14 |
12 |
15 import Preferences |
13 import Preferences |
16 import UI.PixmapCache |
14 import UI.PixmapCache |
17 |
15 |
18 |
16 |
110 |
108 |
111 def showConfigurationDialog(self): |
109 def showConfigurationDialog(self): |
112 """ |
110 """ |
113 Public method to show the configuration dialog. |
111 Public method to show the configuration dialog. |
114 """ |
112 """ |
|
113 from .PersonalDataDialog import PersonalDataDialog |
115 dlg = PersonalDataDialog() |
114 dlg = PersonalDataDialog() |
116 if dlg.exec_() == QDialog.Accepted: |
115 if dlg.exec_() == QDialog.Accepted: |
117 dlg.storeData() |
116 dlg.storeData() |
118 self.__loadSettings() |
117 self.__loadSettings() |
119 |
118 |