Displaying 15 results from an estimated 15 matches for "mdiparentfram".
Did you mean:
mdiparentframe
2006 Oct 21
0
[ wxruby-Bugs-6262 ] MDIParentFrame#add_child not working on OS X
...006-10-21 18:13
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=218&aid=6262&group_id=35
Category: Incorrect behavior
Group: None
Status: Open
Resolution: None
Priority: 3
Submitted By: Alex Fenton (brokentoy)
Assigned to: Kevin Smith (qualitycode)
Summary: MDIParentFrame#add_child not working on OS X
Initial Comment:
MDIParentFrame#add_child either crashes (in bigdemo) or does nothing at all (mdi demo), on OS X. There isn''t true MDI on OS X, but wxRuby should follow WxWidgets in providing an emulation of it, using ordinary Frames.
----------------------...
2006 Oct 22
1
[Fwd: Wxruby-development post from noreply@rubyforge.org requires approval]
...velopment-owner at rubyforge.org
To: wxruby-development-owner at rubyforge.org
As list administrator, your authorization is requested for the
following mailing list posting:
List: Wxruby-development at rubyforge.org
From: noreply at rubyforge.org
Subject: [ wxruby-Bugs-6262 ] MDIParentFrame#add_child not working
on OS X
Reason: Message has implicit destination
At your convenience, visit:
http://rubyforge.org/mailman/admindb/wxruby-development
to approve or deny the request.
-------------- next part --------------
An embedded message was scrubbed...
From: <noreply a...
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 May 01
2
MDI interface with sidepanel
Hi
Just started with WxRuby after using Fox. Very impressed by the easy
binary install and I''m already liking the native look and feel on MSW.
Thanks!
I''m trying to create an app with a MDI Parent Frame and a full-height
(docked) side panel with various controls in it. The MDIParentFrame
doesn''t work properly if I put it inside another frame with a sizer, so
I''d appreciate some tips on a good way to do this.
On the WXWidgets mailing list, I saw this recommended:
http://cvs.osafoundation.org/index.cgi/osaf/chandler/wxpython/wxPython/demo/MDISashDemo.py?rev=1.1....
2004 Aug 26
18
wxRuby 0.5.0 has been released!
wxRuby 0.5.0 has been released and is now available for
download from RubyForge at http://wxruby.rubyforge.org/
This release includes binary builds for Max OS X and
MS Windows.
Please report any bugs or feature requests here:
http://rubyforge.org/tracker/?group_id=35
Changes in this release include:
* Added XRC (Xml Resource File) support.
* Added totally awesome HTML widget from Tobi
2004 Apr 27
15
Building wxruby on Solaris 9
Hi all,
Ruby 1.8.1
Solaris 9
wxwindows 2.4.2 (package from blastwave.org)
wxruby 0.3.0
I''m having trouble getting this sucker to build on my Solaris box.
Here''s how I''m building:
ruby extconf.rb --with-xrc-dir=/opt/csw
--with-xrc-include=/opt/csw/lib/wx
The include directive I added because the setup.h file is there (for
whatever reason). And yes, /opt/csw/bin and
2004 Aug 05
2
libraries needed to distribute app
Hi
I''m making an installer for my WxRuby app, using exerb. I''ve included
wxruby.so in the package, and it seems to work fine on my computer, but
are there any other dlls or whatever I''m likely to need, for example for
WxWidgets itself?
Cheers
alex
2004 Mar 16
0
MDI and submenues
...DI 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'')
@fileMenu.append(:mi_file_new.to_i, "New")
evt_menu(:mi_file_new.to_i){|a|
MDIChildFrame.new(self, -1, "MD...
2008 May 18
0
[ wxruby-Bugs-20211 ] Unresolved symbol due to linkage error
...n.o obj/IconBundle.o obj/IconizeEvent.o obj/IdleEvent.o obj/Image.o obj/ImageList.o obj/KeyEvent.o obj/LayoutAlgorithm.o obj/ListBox.o obj/ListCtrl.o obj/ListEvent.o obj/ListItem.o obj/ListItemAttr.o obj/Listbook.o obj/ListbookEvent.o obj/Locale.o obj/Log.o obj/LogTextCtrl.o obj/MDIChildFrame.o obj/MDIParentFrame.o obj/Mask.o obj/MediaCtrl.o obj/MediaEvent.o obj/MemoryDC.o obj/Menu.o obj/MenuBar.o obj/MenuEvent.o obj/MenuItem.o obj/MessageDialog.o obj/MiniFrame.o obj/MouseEvent.o obj/MoveEvent.o obj/MultiChoiceDialog.o obj/Notebook.o obj/NotebookEvent.o obj/NotifyEvent.o obj/NumberEntryDialog.o obj/Object....
2006 Oct 21
0
[698] trunk/wxruby2/samples/bigdemo/MDIDemo.rbw: Removed broken background stuff to stop crash on OS X (tho still crashes
..."cx"> end
</span><span class="cx">
</span><del>-SHOW_BACKGROUND = 0
-
</del><span class="cx"> module Demo
</span><span class="cx">
</span><span class="cx"> class MyParentFrame < Wx::MDIParentFrame
</span><del>- def initialize()
- super(nil, -1, "MDI Parent", Wx::DEFAULT_POSITION, Wx::Size.new(600,400))
</del><ins>+ def initialize
+ super(nil, -1, "MDI Parent", Wx::DEFAULT_POSITION,
+ Wx::Size.new(600,400))
</in...
2008 Feb 17
15
A bug in wxRuby. Segmentation fault in random situations.
Hello,
I wrote an application in wxRuby:
ruby 1.8.6
wxruby 1.9.4 installed from gem
windows xp sp2
After several minutes of running it crashes with the following error:
"c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27: [BUG]
Segmentation fault
ruby 1.8.6 (2007-03-13) [i386-mswin32]
This application has requested the Runtime to terminate it in an unusual way.
Please contact
2004 May 22
4
couple of questions
Hi folks
A couple of questions:
1) I seem to get funny artifacts in the display of TreeCtrl, ComboBox
and ListBox when the MDI child frame containing it is first painted (see
attached - it should be two-root treeview, unopened). I''m not sure if
it''s related to being in a MDI, but the controls sample looks OK. The
artifacts are cleared up when it''s repainted or
2010 Jan 28
5
Compiling problem on Ubuntu 9.10 64 bit
...n.o obj/IconBundle.o
obj/IconizeEvent.o obj/IdleEvent.o obj/Image.o obj/ImageList.o
obj/KeyEvent.o obj/LayoutAlgorithm.o obj/ListBox.o obj/ListCtrl.o
obj/ListEvent.o obj/ListItem.o obj/ListItemAttr.o obj/Listbook.o
obj/ListbookEvent.o obj/Locale.o obj/Log.o obj/LogTextCtrl.o
obj/MDIChildFrame.o obj/MDIParentFrame.o obj/Mask.o obj/MediaCtrl.o
obj/MediaEvent.o obj/MemoryDC.o obj/Menu.o obj/MenuBar.o obj/MenuEvent.o
obj/MenuItem.o obj/MessageDialog.o obj/MiniFrame.o obj/MouseEvent.o
obj/MouseState.o obj/MoveEvent.o obj/MultiChoiceDialog.o
obj/NavigationKeyEvent.o obj/Notebook.o obj/NotebookEvent.o
obj/NotifyE...
2005 Jul 31
5
SWIG compilation
The result of the compilation after installing swig results in lots of
errors of the sort:
WindowDisabler.obj : error LNK2001: unresolved external symbol
_SWIG_Ruby_ConvertPtr
I can see this is defined in rubydef.swg but I''m not sure why this isn''t
just included in the files that need it. Can any swig experts tell me
what I need to do to progress? I''m using
2007 Feb 09
20
Hello Everyone
I have a bit of a problem with installation. I installed wxX11 in my
linux box. I compiled the demos and all the demos, save dbbrowse,
work. I think I have a functional wx. Now I''m trying to install wxRuby
from source, since I have a 64 bit machine. I only have permission to
my home directory so my installation is :
/usr/people/stevenq/Applications/wxX11/