/OptionsDialog.py

https://bitbucket.org/ricard/scriptmanager · Python · 149 lines · 106 code · 35 blank · 8 comment · 2 complexity · af7799047d179d2bb65f9f34c8fe6f7c MD5 · raw file

  1. #Boa:Dialog:OptionsDialog
  2. import wx
  3. #import blowfish
  4. from Crypto.Cipher import Blowfish
  5. def create(parent):
  6. return OptionsDialog(parent)
  7. [wxID_OPTIONSDIALOG, wxID_OPTIONSDIALOGCANCELBUTTON,
  8. wxID_OPTIONSDIALOGNOTEBOOK1, wxID_OPTIONSDIALOGOKBUTTON,
  9. wxID_OPTIONSDIALOGPANEL1, wxID_OPTIONSDIALOGPASSWORDTEXTCTRL,
  10. wxID_OPTIONSDIALOGPASSWORDTEXTCTRL2, wxID_OPTIONSDIALOGSTATICTEXT1,
  11. wxID_OPTIONSDIALOGSTATICTEXT2, wxID_OPTIONSDIALOGSTATICTEXT3,
  12. wxID_OPTIONSDIALOGUSERTEXTCTRL,
  13. ] = [wx.NewId() for _init_ctrls in range(11)]
  14. class OptionsDialog(wx.Dialog):
  15. def _init_coll_gridBagSizer1_Growables(self, parent):
  16. # generated method, don't edit
  17. parent.AddGrowableRow(0)
  18. parent.AddGrowableCol(0)
  19. def _init_coll_flexGridSizer1_Items(self, parent):
  20. # generated method, don't edit
  21. parent.AddWindow(self.staticText1, 0, border=0,
  22. flag=wx.ALIGN_CENTER_VERTICAL)
  23. parent.AddWindow(self.userTextCtrl, 0, border=0, flag=0)
  24. parent.AddWindow(self.staticText2, 0, border=0,
  25. flag=wx.ALIGN_CENTER_VERTICAL)
  26. parent.AddWindow(self.passwordTextCtrl, 0, border=0, flag=0)
  27. parent.AddWindow(self.staticText3, 0, border=0,
  28. flag=wx.ALIGN_CENTER_VERTICAL)
  29. parent.AddWindow(self.passwordTextCtrl2, 0, border=0, flag=0)
  30. def _init_coll_gridBagSizer1_Items(self, parent):
  31. # generated method, don't edit
  32. parent.AddWindow(self.notebook1, (0, 0), border=10,
  33. flag=wx.GROW | wx.ALL, span=(1, 3))
  34. parent.AddSpacer(wx.Size(8, 8), (1, 0), border=0, flag=0, span=(1, 1))
  35. parent.AddWindow(self.okButton, (1, 1), border=5, flag=wx.ALL, span=(1,
  36. 1))
  37. parent.AddWindow(self.cancelButton, (1, 2), border=5, flag=wx.ALL,
  38. span=(1, 1))
  39. def _init_coll_notebook1_Pages(self, parent):
  40. # generated method, don't edit
  41. parent.AddPage(imageId=-1, page=self.panel1, select=True,
  42. text=u'Authentification')
  43. def _init_sizers(self):
  44. # generated method, don't edit
  45. self.gridBagSizer1 = wx.GridBagSizer(hgap=5, vgap=5)
  46. self.gridBagSizer1.SetCols(3)
  47. self.flexGridSizer1 = wx.FlexGridSizer(cols=2, hgap=5, rows=3, vgap=5)
  48. self._init_coll_gridBagSizer1_Items(self.gridBagSizer1)
  49. self._init_coll_gridBagSizer1_Growables(self.gridBagSizer1)
  50. self._init_coll_flexGridSizer1_Items(self.flexGridSizer1)
  51. self.SetSizer(self.gridBagSizer1)
  52. self.panel1.SetSizer(self.flexGridSizer1)
  53. def _init_ctrls(self, prnt):
  54. # generated method, don't edit
  55. wx.Dialog.__init__(self, id=wxID_OPTIONSDIALOG, name=u'OptionsDialog',
  56. parent=prnt, pos=wx.Point(372, 298), size=wx.Size(302, 228),
  57. style=wx.DEFAULT_DIALOG_STYLE, title=u'Options')
  58. self.SetClientSize(wx.Size(294, 194))
  59. self.okButton = wx.Button(id=wxID_OPTIONSDIALOGOKBUTTON, label=u'Ok',
  60. name=u'okButton', parent=self, pos=wx.Point(124, 166),
  61. size=wx.Size(75, 23), style=0)
  62. self.okButton.Bind(wx.EVT_BUTTON, self.OnOkButtonButton,
  63. id=wxID_OPTIONSDIALOGOKBUTTON)
  64. self.cancelButton = wx.Button(id=wxID_OPTIONSDIALOGCANCELBUTTON,
  65. label=u'Cancel', name=u'cancelButton', parent=self,
  66. pos=wx.Point(214, 166), size=wx.Size(75, 23), style=0)
  67. self.cancelButton.Bind(wx.EVT_BUTTON, self.OnCancelButtonButton,
  68. id=wxID_OPTIONSDIALOGCANCELBUTTON)
  69. self.notebook1 = wx.Notebook(id=wxID_OPTIONSDIALOGNOTEBOOK1,
  70. name='notebook1', parent=self, pos=wx.Point(10, 10),
  71. size=wx.Size(274, 136), style=0)
  72. self.panel1 = wx.Panel(id=wxID_OPTIONSDIALOGPANEL1, name='panel1',
  73. parent=self.notebook1, pos=wx.Point(0, 0), size=wx.Size(266, 110),
  74. style=wx.TAB_TRAVERSAL)
  75. self.staticText1 = wx.StaticText(id=wxID_OPTIONSDIALOGSTATICTEXT1,
  76. label=u'SVN User', name='staticText1', parent=self.panel1,
  77. pos=wx.Point(0, 4), size=wx.Size(44, 13), style=0)
  78. self.userTextCtrl = wx.TextCtrl(id=wxID_OPTIONSDIALOGUSERTEXTCTRL,
  79. name=u'userTextCtrl', parent=self.panel1, pos=wx.Point(91, 0),
  80. size=wx.Size(165, 21), style=0, value=u'')
  81. self.staticText2 = wx.StaticText(id=wxID_OPTIONSDIALOGSTATICTEXT2,
  82. label=u'SVN Password', name='staticText2', parent=self.panel1,
  83. pos=wx.Point(0, 30), size=wx.Size(68, 13), style=0)
  84. self.passwordTextCtrl = wx.TextCtrl(id=wxID_OPTIONSDIALOGPASSWORDTEXTCTRL,
  85. name=u'passwordTextCtrl', parent=self.panel1, pos=wx.Point(91,
  86. 26), size=wx.Size(165, 21), style=wx.TE_PASSWORD, value=u'')
  87. self.staticText3 = wx.StaticText(id=wxID_OPTIONSDIALOGSTATICTEXT3,
  88. label=u'Confirm password', name='staticText3', parent=self.panel1,
  89. pos=wx.Point(0, 56), size=wx.Size(86, 13), style=0)
  90. self.passwordTextCtrl2 = wx.TextCtrl(id=wxID_OPTIONSDIALOGPASSWORDTEXTCTRL2,
  91. name=u'passwordTextCtrl2', parent=self.panel1, pos=wx.Point(91,
  92. 52), size=wx.Size(165, 21), style=wx.TE_PASSWORD, value=u'')
  93. self._init_coll_notebook1_Pages(self.notebook1)
  94. self._init_sizers()
  95. def __init__(self, parent):
  96. self._init_ctrls(parent)
  97. self.crypt = Blowfish.new('SoftArchi', Blowfish.MODE_ECB)
  98. config = wx.ConfigBase_Get()
  99. self.userTextCtrl.SetValue(config.Read('/Options/Authentification/User', ''))
  100. pwd = self.crypt.decrypt(config.Read('/Options/Authentification/Password', '').encode('latin'))
  101. self.passwordTextCtrl.SetValue(pwd)
  102. self.passwordTextCtrl2.SetValue(pwd)
  103. def OnOkButtonButton(self, event):
  104. config = wx.ConfigBase_Get()
  105. pwd1 = self.passwordTextCtrl.GetValue()
  106. pwd2 = self.passwordTextCtrl2.GetValue()
  107. if pwd1 != pwd2:
  108. wx.MessageBox('Error: passwords mismatch!\nPlease retype your password.', 'Password mismatch!', wx.ICON_ERROR)
  109. return
  110. config.Write('/Options/Authentification/User', self.userTextCtrl.GetValue())
  111. config.Write('/Options/Authentification/Password', self.crypt.encrypt(pwd1))
  112. self.EndModal(wx.ID_OK)
  113. def OnCancelButtonButton(self, event):
  114. self.EndModal(wx.ID_CANCEL)