Sha256: 26570bf0eb7c4a31b3c7abad18fee4c501a2240eac500eb72f898eed19bfd9f1

Contents?: true

Size: 853 Bytes

Versions: 8

Compression:

Stored size: 853 Bytes

Contents

Such::Parts.make('AbButtons', 'Box', :a_Button, :b_Button)
Such::Parts.make('AbcButtons', 'Box', :a_Button, :b_Button, :c_Button)
Such::Parts.make('PromptedEntryLabel', 'Box', :prompt_Label, :prompted_Entry, :prompted_Label)
Such::Parts.make('PromptedEntry', 'Box', :prompt_Label, :prompted_Entry)
Such::Parts.make('PromptedLabel', 'Box', :prompt_Label, :prompted_Label)
Such::Parts.make('PromptedCombo', 'Box', :prompt_Label, :prompted_ComboBoxText)

module Such
  class AbButtons
    def labels(a, b)
      self.a_Button.label = Gtk2passwordapp::CONFIG[a]
      self.b_Button.label = Gtk2passwordapp::CONFIG[b]
    end
  end
  class AbcButtons
    def labels(a, b, c)
      self.a_Button.label = Gtk2passwordapp::CONFIG[a]
      self.b_Button.label = Gtk2passwordapp::CONFIG[b]
      self.c_Button.label = Gtk2passwordapp::CONFIG[c]
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
gtk2passwordapp-4.4.0 lib/gtk2passwordapp/such_parts.rb
gtk2passwordapp-4.3.0 lib/gtk2passwordapp/such_parts.rb
gtk2passwordapp-4.2.1 lib/gtk2passwordapp/such_parts.rb
gtk2passwordapp-4.2.0 lib/gtk2passwordapp/such_parts.rb
gtk2passwordapp-4.1.2 lib/gtk2passwordapp/such_parts.rb
gtk2passwordapp-4.1.1 lib/gtk2passwordapp/such_parts.rb
gtk2passwordapp-4.1.0 lib/gtk2passwordapp/such_parts.rb
gtk2passwordapp-4.0.1 lib/gtk2passwordapp/such_parts.rb