Displaying 4 results from an estimated 4 matches for "papushev".
2004 Jan 27
2
The flicker of the status bar.
...TION, DEFAULT_SIZE,
DEFAULT_FRAME_STYLE | CLIP_CHILDREN | NO_FULL_REPAINT_ON_RESIZE )
@status_bar = create_status_bar(3)
set_status_bar( @status_bar )
end
end
a = RbApp.new
a.main_loop
#-------------------------------------
Thanks for any answer in advance.
--
Pavel.
mailto:papushev@inp.nsk.su
2004 Feb 10
1
MDI
Hello,
I want to use wxruby in my application, but this should be MDI application.
Kevin, could you add MDIParentFrame, MDIClientWindow and MDIChildFrame
in wxruby-0.3, please?
--
Best regards,
Pavel
mailto:papushev@inp.nsk.su
2004 Jan 28
1
Submenues
...= MenuItem.new(menu, 2, ''&Submenu'', '''', ITEM_NORMAL, submenu)
menu.append_item( item_with_submenu )
I get error: in `append_item'': wrong argument type nil (expected Data) (TypeError)
Could you check it, please?
--
Best regards,
Pavel
mailto:papushev@inp.nsk.su
2004 Mar 16
0
MDI and submenues
Hello wxruby-users,
Kevin, thanks for fast addition of the support of MDI and submenues!
I''ve tested it under WinXP and all works very well. There is a test
example at the end of the message.
--
Best regards,
Pavel
mailto:papushev@inp.nsk.su
#================================================
require ''wxruby''
include Wx
class MyFrame < MDIParentFrame
def initialize(title)
super( nil, -1, title )
@menuBar = MenuBar.new
@fileMenu = Menu.new
@menuBar.append(@fileMenu, ''File'&...