search for: radiobox

Displaying 18 results from an estimated 18 matches for "radiobox".

Did you mean: radiobar
2006 Oct 17
0
[684] trunk/wxruby2/swig/classes/RadioBox.i: Un-ignored some methods that now work fine (Roy Sutton)
...#ccc;margin:10px 0;} #patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;} #patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;} #patch .lines, .info {color:#888;background:#fff;} --></style> <title>[684] trunk/wxruby2/swig/classes/RadioBox.i: Un-ignored some methods that now work fine (Roy Sutton)</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>684</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd>2006-1...
2006 Oct 17
0
Typemap.i checked in and attached RadioBox.i.patch
I checked in a small change to typemaps.i that adds an enum that was missing Attached is a slightly larger patch. I felt pretty confident checking this in but I''ll send it out so others can check it out. This should make the radiobox tab in controls.rb work. Roy -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: RadioBox.i.patch Url: http://rubyforge.org/pipermail/wxruby-development/attachments/20061017/01b371a8/attachment.ksh
2006 Apr 30
2
Error in controls.rb
Anyone else seeing this error when clicking on the radiobox page? undefined method `'' for #<MyRadioBox:0x2d6c0c0> Roy
2006 Dec 02
0
[770] trunk/wxsugar/lib/wx_sugar/keyword_classes.rb: Fix some broken ones (Alex Spelling), add some new & missing ones; add
...ams :pos, :size, :choices => [] </span><span class="cx"> wx_ctor_params :major_dimension => 0 </span><span class="cx"> wx_ctor_params :style => Wx::RA_SPECIFY_COLS </span><del>- -# wx_ctor_params :validator, :name => ''radioBox'' </del><ins>+ # wx_ctor_params :validator, :name => ''radioBox'' </ins><span class="cx"> end </span><span class="cx"> </span><del>- </del><span class="cx"> # wxRadioButton &n...
2005 Aug 21
15
New inheritance
A good number of the samples I have tested are outright or subtly broken on Windows now. I''m trying to determine what the cause is. Mostly it seems related to the initialize function not being created when it should be. Case in point: ClientDC.i The caret example won''t work at all because initialize isn''t declared any longer. If you comment out the import
2006 Nov 29
5
wxSugar control problem
I''m using wx_sugar 0.1.2 with wxruby2-preview 0.0.37 on OSX and am coming up with an error when trying to create a SpinCtrl (and quite a few others have exactly the same prob.): #file date_picker.rb class DatePicker < Wx::Dialog def initialize super(nil, :title => "Pick a date...") @cal = Wx::CalendarCtrl.new(self) add(@cal) #works fine up to
2007 Jan 15
0
[ wxruby-Bugs-7849 ] disable does not disable some child components on OS X
...ode) Summary: disable does not disable some child components on OS X Initial Comment: if you disable a container window, not all the child components get disabled. For example, a notebook containing some controls: @notebook.add(Panel) {|p| p.arrange_vertically p.add(TextCtrl) p.add(RadioBox) p.add(Button) p.add(ComboBox) } On OS X, the TextCrl and Combobox text are still focusable and editable. I think enable may suffer from the same problem (note: this works fine on windows) ---------------------------------------------------------------------- You can respond...
2007 Jan 06
0
[836] trunk/wxsugar/lib/wx_sugar: Make :validator and :name sugary ctor args work for Controls classes
...ams :pos, :size, :choices => [] </span><span class="cx"> wx_ctor_params :major_dimension => 0 </span><span class="cx"> wx_ctor_params :style => Wx::RA_SPECIFY_COLS </span><del>- # wx_ctor_params :validator, :name => ''radioBox'' </del><ins>+ wx_ctor_params :validator, :name => ''radioBox'' </ins><span class="cx"> end </span><span class="cx"> </span><del>-# wxRadioButton &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&a...
2008 May 18
0
[ wxruby-Bugs-20211 ] Unresolved symbol due to linkage error
...C.o obj/PaintEvent.o obj/Panel.o obj/PasswordEntryDialog.o obj/Pen.o obj/Point.o obj/PreviewCanvas.o obj/PreviewControlBar.o obj/PreviewFrame.o obj/PrintData.o obj/PrintDialog.o obj/PrintDialogData.o obj/PrintPreview.o obj/Printer.o obj/Printout.o obj/ProgressDialog.o obj/QueryLayoutInfoEvent.o obj/RadioBox.o obj/RadioButton.o obj/Rect.o obj/Region.o obj/RendererNative.o obj/SashEvent.o obj/SashLayoutWindow.o obj/SashWindow.o obj/ScreenDC.o obj/ScrollBar.o obj/ScrollEvent.o obj/ScrollWinEvent.o obj/ScrolledWindow.o obj/SearchCtrl.o obj/SetCursorEvent.o obj/ShowEvent.o obj/SingleChoiceDialog.o obj/Size...
2007 Jan 30
2
error finding library when running test program
...conFrame < Wx::Frame def initialize super(nil, -1, "Changing Icons!", Wx::DEFAULT_POSITION, Wx::Size.new (225,150)) panel = Wx::Panel.new(self, -1) iconNames = ["wxwin", "mondrian", "ogl", "smiley"] icons = Wx::RadioBox.new(panel, ID_ICON, "&Icons", Wx::Point.new (20,5), Wx::DEFAULT_SIZE, iconNames, 1, Wx::RA_SPECIFY_COLS) evt_radiobox(ID_ICON) {|event| on_change_icon(event)} if Wx::RUBY_PLATFORM == "WXMSW" set_icon(Wx::Icon.new(...
2006 Oct 17
0
[678] trunk/wxruby2/doc/textile/commandevent.txtl: Fixed a few event macros that did not get fixed by the parser.
...bsp;{&nbsp;&#124;&nbsp;event&nbsp;&#124;&nbsp;...&nbsp;}*|Process the event generatedwhen the user has requested a popup menu to appear by pressing a specialkeyboard key (under Windows) or by right clicking the mouse.| </span><span class="cx"> |*evt_radiobox(id)&nbsp;{&nbsp;&#124;&nbsp;event&nbsp;&#124;&nbsp;...&nbsp;}*|Process a EVT_COMMAND_RADIOBOX_SELECTED command,which is generated by a RadioBox control.| </span><span class="cx"> |*evt_radiobutton(id)&nbsp;{&nbsp;&#124;&nbsp;even...
2007 Sep 20
7
Troubles with ListBox and CheckListBox events
...ee the ommented line). I had to go through the CheckListBox object and calls checked? with the index (see the uncommented line). => Question : The wxRuby documentation states that : "CommandEvent#get_int Integer get_int() Returns the integer identifier corresponding to a listbox, choice or radiobox selection (only if the event was a selection, not a deselection), or a boolean value representing the value of a checkbox." Are int and selection synonyms or is one of them is the normal way for accessing the index of a checked/unchecked item from a CheckListBox ? Again the doc is not clear a...
2010 Jan 28
5
Compiling problem on Ubuntu 9.10 64 bit
...anel.o obj/PasswordEntryDialog.o obj/Pen.o obj/Point.o obj/PreviewCanvas.o obj/PreviewControlBar.o obj/PreviewFrame.o obj/PrintData.o obj/PrintDialog.o obj/PrintDialogData.o obj/PrintPreview.o obj/Printer.o obj/Printout.o obj/ProgressDialog.o obj/PropertySheetDialog.o obj/QueryLayoutInfoEvent.o obj/RadioBox.o obj/RadioButton.o obj/Rect.o obj/Region.o obj/RendererNative.o obj/RichTextAttr.o obj/RichTextBuffer.o obj/RichTextCharacterStyleDefinition.o obj/RichTextCtrl.o obj/RichTextEvent.o obj/RichTextFileHandler.o obj/RichTextFormattingDialog.o obj/RichTextHTMLHandler.o obj/RichTextHeaderFooterData.o ob...
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 May 05
0
[1012] trunk/wxruby2/doc/textile: Added docs for AUI Advanced User Interface classes
...ontrol| +|TreeCtrl|Tree (hierarchy) control| +|ScrollBar|Scrollbar control| +|SpinButton|A spin or ''up-down'' control| +|SpinCtrl|A spin control - i.e. spin button and text control| +|StaticText|One or more lines of non-editable text| +|StaticBitmap|A control to display a bitmap| +|RadioBox|A group of radio buttons| +|RadioButton|A round button to be used with others in a mutually exclusive way| +|Slider|A slider that can be dragged by the user| +|VListBox|A listbox supporting variable height rows| + +"top":#top + </ins><span class="cx"> h2(#misc_window...
2005 Jul 06
16
Autocompletion not working in Konqueror
I''ve just had a look again at the autocompletion demo that Thomas put up at http://script.aculo.us/demos/ajax/autocompleter Unfortunately, in Konqueror (3.4.1) it doesn''t work at all. Not even an error is triggered. It does work nicely in Firefox. How about Safari? I don''t have the time right now to track this down systematically (maybe latter), but just from
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/
2005 May 03
10
Is wxRuby-SWIG version usable enough to package for download?
If wxRuby-SWIG is as usable as wxRuby 0.6.0, maybe it should be given a version number and packaged up for download. Given the nature of SWIG, having a lot more people use it would probably result in more code contributions to this project. Seems most of the changes are 2+ months old, so I''m guessing wxRuby-SWIG is fairly stable right now in terms of frequency of changes...