Is there a better way to do this wxPython example in Ruby?

W

Wayne Magor

I have been translating examples from the book "wxPython in Action"
into Ruby using wxRuby2. I ran into one example where a method was
passed as a parameter in Python. I came up with the solution shown
below in Ruby (which works fine) but it seems ugly to me. If someone
was not very familiar with Ruby they would say "hmmm... what's this
ampersand lambda stuff".

Is there a better way to do this in Ruby?


Python example using wxPython:

def createButtonBar(self, panel):
self.buildOneButton(panel, "FIRST", self.OnFirst)
self.buildOneButton(panel, "<< PREV", self.OnPrev, (80, 0))
self.buildOneButton(panel, "NEXT >>", self.OnNext, (160, 0))
self.buildOneButton(panel, "LAST", self.OnLast, (240, 0))

def buildOneButton(self, parent, label, handler, pos=(0,0)):
button = wx.Button(parent, -1, label, pos)
self.Bind(wx.EVT_BUTTON, handler, button)
return button


My translation to Ruby and wxRuby2:

def create_button_bar(panel)
build_one_button(panel, "FIRST", &lambda {|e|
on_first(e)})
build_one_button(panel, "<< PREV", [80, 0], &lambda {|e|
on_prev(e)})
build_one_button(panel, "NEXT >>", [160, 0], &lambda {|e|
on_next(e)})
build_one_button(panel, "LAST", [240, 0], &lambda {|e|
on_last(e)})
end

def build_one_button(parent, label, pos=[0,0], &handler)
button = Wx::Button.new(parent, -1, label, pos)
evt_button(button) {|event| yield(event)}
return button
end
 
D

David Masover

build_one_button(panel, "LAST", [240, 0], &lambda {|e|
on_last(e)})
def build_one_button(parent, label, pos=[0,0], &handler)

Looks like, at the very least, you could do:

build_one_button(panel, "LAST", [240,0]) {|e| on_last(e)}

I think your function is already set up to accept a block, so it's the same
syntax as each(), which you're probably already familiar with:

(1..99).each {|i| puts "#{i} bottles of beer on the wall..."}
 
J

Joshua Ballanco

Wayne said:
Is there a better way to do this in Ruby?

What about passing the method name as a Symbol and then using
Object.send in the reciever? Something like:

build_one_button(panel, "FIRST", :eek:n_first)

def build_one_button(parent, label, pos=[0,0], method_name)
button = Wx::Button.new(parent, -1, label, pos)
evt_button(button) {|event| self.send(method_name, event)}
return button
end
 
L

Lars Christensen

Python example using wxPython:

        self.buildOneButton(panel, "FIRST", self.OnFirst)

I think the most direct translation of the Python code would be:

build_one_button(panel, "FIRST", method:)on_first))

Simpler than the block wrapper, IMO, and more efficient.

Lars
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,076
Latest member
OrderKetoBeez

Latest Threads

Top