search for: showmodal

Displaying 11 results from an estimated 11 matches for "showmodal".

Did you mean: show_modal
2004 Aug 20
8
wxruby-swig: where does wxclasses-2.4.2.xml comes from?
...XML comes from? I saw something similiar in Python, is that massaged out of there? The codes produced by extractxml.rb and wxclasses-2.4.2.xml is quite different from the original header files. Just for example the WxDialog class. OnXXX are non-virtual in WxWidgets, but virtual in wxruby-swig ShowModal are virtual in WxWidgets, but non-virtual in wxruby-swig I realize that wxruby-swig is in a very highly experimental stage, but would appreciate it if someone can shed some light here. Cheers, Phuah Yee Keat
2011 Nov 15
1
Borland C++ Builder TForm->Show() problem
...variations the sizes of a window by means of the mouse when there are restrictions, for example TForm-> Constraints. MaxHeight, TForm-> Constraints. MaxWidth or TForm-> BorderStyle = bsSingle (a window with the unchangeable size). Also there are problems with a modal window (TForm-> ShowModal ()). Please, inform it to developers for correction of a mistake. https://rapidshare.com/files/1202120874/WineTest.tar.gz Thank you very much. With best wishes Navadvipa Chandra das.
2007 Mar 19
0
[899] branches/wxruby2/wxwidgets_282/swig/classes/include/wxFontDialog.h: Fixed GetFontData() signature to match headers for wxMac, needed to get around compile error.
...+ wxFontData& GetFontData(); +#else +&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspconst wxFontData& GetFontData() const; +#endif + </ins><span class="cx"> wxFontData& GetFontData() ; </span><span class="cx"> int ShowModal() ; </span><span class="cx"> }; </span></span></pre> </div> </div> </body> </html>
2005 Aug 15
16
swig_up
Tracing down some things to add in validators and I''ve run across something that kinda bothers me... In order to implement validators you have to override the clone method. The directors seems to be set up to specifically handle this situation. However, whenever C++ calls back to the object''s methods the swig_get_up function is returning false. It seems like swig_up
2007 Apr 13
0
[962] branches/wxruby2/wxwidgets_282/doc/textile/xmlresource.txtl: Fixed the documentation for load_*_subclass, where * is [Dialog, Panel, Frame].
...,19 +192,25 @@ </span><span class="cx"> Example: </span><span class="cx"> </span><span class="cx"> </span><del>- MyDialog dlg; - TheXmlResource->LoadDialog(&dlg, mainFrame, "my_dialog"); - dlg->ShowModal(); </del><ins>+ dlg = MyDialog.new + the_xml_resource.load_dialog_subclass(dlg, main_frame, "my_dialog") + dlg.show_modal </ins><span class="cx"> </span><span class="cx"> </span><span class="cx"> </...
2007 Mar 28
0
[924] branches/wxruby2/wxwidgets_282: Changes 2.6 -> 2.8 Wx API; remove deprecated methods and update doc
...e":#DirDialog_setmessage </span><span class="cx"> * "DirDialog#set_path":#DirDialog_setpath </span><del>-* "DirDialog#set_style":#DirDialog_setstyle </del><span class="cx"> * "DirDialog#show_modal":#DirDialog_showmodal </span><span class="cx"> </span><span class="cx"> </div> </span><span class="lines">@@ -80,12 +80,6 @@ </span><span class="cx"> </span><span class="cx"> Returns the message that wil...
2007 Apr 14
0
[963] branches/wxruby2/wxwidgets_282/doc/textile/dialog.txtl: Added a few missing methods and cleaned up a bit.
...(arg-type)Integer% retCode) </del><ins>+ *end_modal*(%(arg-type)Integer% ret_code) </ins><span class="cx"> </span><span class="cx"> Ends a modal dialog, passing a value to be returned from the "Dialog#show_modal":dialog.html#Dialog_showmodal invocation. </span><span class="cx"> </span><span class="cx"> h4. Parameters </span><span class="cx"> </span><del>-* _retCode_ The value that should be returned by *ShowModal*. </del><ins>+* _ret_code_ The v...
2007 Mar 29
0
[926] branches/wxruby2/wxwidgets_282: Update Dialog wx2.6 -> wx2.8 API, remove deprecations and cruft, update doc
...uot;Dialog#set_return_code":#Dialog_setreturncode </span><del>-* "Dialog#set_title":#Dialog_settitle </del><span class="cx"> * "Dialog#show":#Dialog_show </span><span class="cx"> * "Dialog#show_modal":#Dialog_showmodal </span><span class="cx"> </span><span class="cx"> </div> </span><span class="cx"> </span><span class="cx"> </span><ins>+ </ins><span class="cx"> h3(#Dialog_new). Dialog...
2006 Aug 02
13
wxruby2 alpha release goals
Hi We''re all keen to get a release out, for lots of reasons: getting more people testing, showing people the progress we''ve made, etc. So I suggest that we now look to release an alpha version very soon, based pretty much on the current state of CVS plus pending check-ins. Sure, it has some bugs, some missing features and segfaults occasionally - but my experience on OS X
2006 Aug 13
25
wxruby2 alpha status
Hi all, How soon can we do our alpha (binary gem) release? 1. I would like to get the samples working a bit better, but am ok simply documenting most of the current problems. Do the samples crash every few minutes for other people? Or is it just me? I would like to have a copyright/license comment at the top of every sample file before the alpha release. 2. I would like to receive and merge a
2007 Mar 17
0
[883] branches/wxruby2/wxwidgets_282/swig: API changes for move to WxWidgets 2.8
...itle() const; + void Iconize(const bool iconize ) ; + bool IsIconized() const; + void SetIcon(const wxIcon& icon ) ; + void SetIcons(const wxIconBundle& icons ) ; + void SetTitle(const wxString& title ) ; + virtual bool Show(bool show = true ) ; + + virtual int ShowModal()=0; + virtual void EndModal(int retCode )=0; + virtual bool IsModal()const=0; + void SetReturnCode(int retCode ) ; + int GetReturnCode() const; + void SetAffirmativeId(int affirmativeId); + int GetAffirmativeId() const; + void SetEscapeId(int escapeId); + int GetEscapeId(...