Class: Watobo::Gui::MasterPWDialog

Inherits:
FXDialogBox
  • Object
show all
Includes:
Responder
Defined in:
lib/watobo/gui/master_pw_dialog.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(owner, title = "Set Master Password", new_opts = {}) ⇒ MasterPWDialog

Returns a new instance of MasterPWDialog.



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# File 'lib/watobo/gui/master_pw_dialog.rb', line 13

def initialize(owner, title="Set Master Password", new_opts = {})
  @opts = {
    :info => "Please provide a master password to encrypt your login credentials.\n\nIf you click 'cancel' your passwords will not be saved.",
    :retype => true
  }
  @opts.update new_opts
  super(owner, title, :opts => DECOR_TITLE|DECOR_BORDER|DECOR_CLOSE, :width => 300, :height => 350)

  FXMAPFUNC(SEL_COMMAND, ID_ACCEPT, :onAccept)

  @master_password = nil
  @pw_first_dt = FXDataTarget.new('')
  @pw_second_dt = FXDataTarget.new('')
  main = FXVerticalFrame.new(self, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y)

  #info_frame = FXButton.new(main, info_text, :opts => LAYOUT_FILL_X|FRAME_NONE)
  textbox = FXText.new(main, :opts => LAYOUT_FILL_X|LAYOUT_FILL_Y)
  textbox.backColor = textbox.parent.backColor
  textbox.editable = false
  textbox.enabled = false
  textbox.textStyle |= TEXT_WORDWRAP

  textbox.setText @opts[:info]
  top_frame = FXVerticalFrame.new(main, :opts => LAYOUT_FILL_X)

  FXLabel.new(top_frame, "Password:", nil, LAYOUT_TOP|JUSTIFY_RIGHT)
  @pw_first_txt = FXTextField.new(top_frame, 30,
  :target => @pw_first_dt, :selector => FXDataTarget::ID_VALUE,
  :opts => TEXTFIELD_NORMAL|LAYOUT_SIDE_RIGHT|TEXTFIELD_PASSWD)

  if @opts[:retype]

    FXLabel.new(top_frame, "Repeat:", nil, LAYOUT_TOP|JUSTIFY_RIGHT)
    @pw_second_txt = FXTextField.new(top_frame, 30,
    :target => @pw_second_dt, :selector => FXDataTarget::ID_VALUE,
    :opts => TEXTFIELD_NORMAL|LAYOUT_SIDE_RIGHT|TEXTFIELD_PASSWD)

    @pw_second_txt.connect(SEL_KEYRELEASE) {
      @acceptBtn.disable
      if @pw_first_txt.text == @pw_second_txt.text
        @acceptBtn.enable
        @acceptBtn.setFocus
        @acceptBtn.setDefault
      end
      false
    }
 else
  
=begin
@pw_first_txt.connect(SEL_KEYRELEASE) {
      @acceptBtn.disable
    
        @acceptBtn.enable
        @acceptBtn.setFocus
        @acceptBtn.setDefault
    
      false
    }
=end
  end

  buttons = FXHorizontalFrame.new(main, :opts => LAYOUT_SIDE_BOTTOM|LAYOUT_FILL_X|PACK_UNIFORM_WIDTH,
  :padLeft => 40, :padRight => 40, :padTop => 20, :padBottom => 20)

  # Accept
  @acceptBtn = FXButton.new(buttons, "&Accept", nil, self, ID_ACCEPT,
  FRAME_RAISED|FRAME_THICK|LAYOUT_RIGHT|LAYOUT_CENTER_Y)
  @acceptBtn.disable
  
  unless @opts[:retype]
    @acceptBtn.enable
                         @acceptBtn.setFocus
                         @acceptBtn.setDefault
  end

  FXButton.new(buttons, "&Cancel", nil, self, ID_CANCEL,
  FRAME_RAISED|FRAME_THICK|LAYOUT_RIGHT|LAYOUT_CENTER_Y)
  #  @hostname.handle(self, FXSEL(SEL_UPDATE, 0), nil)
  #  @domain.handle(self, FXSEL(SEL_UPDATE, 0), nil)
  #  @user.handle(self, FXSEL(SEL_UPDATE, 0), nil)
  #  @email.handle(self, FXSEL(SEL_UPDATE, 0), nil)

  #@pw_first_txt.enable
  @pw_first_txt.setFocus
  @pw_first_txt.setDefault
end

Instance Attribute Details

#master_passwordObject (readonly)

Returns the value of attribute master_password.



8
9
10
# File 'lib/watobo/gui/master_pw_dialog.rb', line 8

def master_password
  @master_password
end

Instance Method Details

#masterPasswordObject



9
10
11
# File 'lib/watobo/gui/master_pw_dialog.rb', line 9

def masterPassword
  @master_password
end