search for: dataobject

Displaying 20 results from an estimated 30 matches for "dataobject".

2006 Oct 21
0
DataObject
I took a look at wxDataObject. My first attempts at wrapping it yielded link errors. I''m not really sure why. If anyone tries a naive wrapping you can probably see what I''m talking about. I got some pointers from the wxPython implementation on how to deal with some of the functions that return void po...
2002 Mar 05
3
newbie: remove column with low mean from a matrix
Dear all, Sorry to bother you with one more newbie question. I have a dataobject with several hundreds of columns. I want to remove columns with a mean of the column values below a certain value: > a<- c(1,2,3,4,5,6) > b<-c(2,4,6,8,10,12) > c<- c(3,6,9,12,15,18) > test<- as.matrix(cbind(a, b, c)) > mean(a) [1] 3.5 > mean(b) [1] 7 > mean(c) [1]...
2003 Nov 20
5
compile fail
..., mingw, msys: droptarget.o(.data$_ZTV18wxDropTargetHelper+0x20):droptarget.cpp: undefined reference to `wxDropTargetHelper::OnData(int, int, wxDragResult)'' textdroptarget.o(.text+0x26a):textdroptarget.cpp: undefined reference to `wxTextDropTargetHelper::wxTextDropTargetHelper()'' dataobject.o(.text+0x306):dataobject.cpp: undefined reference to `wxDataObjectHelper::wxDataObjectHelper()'' make: *** [wxruby.so] Error 1 -- +-[ Kontra, Gergely<kgergely@mcl.hu> PhD student Room IB113 ]---------+ | http://www.mcl.hu/~kgergely "Olyan langesz vagyok, hogy | | M...
2007 Jan 06
0
[839] trunk/wxruby2/doc/textile/bitmapdataobject.txtl: Add methods listing; remove virtual function refs
...;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>[839] trunk/wxruby2/doc/textile/bitmapdataobject.txtl: Add methods listing; remove virtual function refs</title> </head> <body> <div id="msg"> <dl> <dt>Revision</dt> <dd>839</dd> <dt>Author</dt> <dd>brokentoy</dd> <dt>Date</dt> <dd>2007-01-0...
2006 May 17
2
ActiveRecord::Associations ER diagram/macros
Hello, I found an interesting ER diagram on the "Module: ActiveRecord::Associations::ClassMethods" page of the Rails Framework Documentation : http://ar.rubyonrails.org/classes/ActiveRecord/Associations/ClassMethods.html At the beginning we can read ? Associations are a set of macro-like class methods for tying objects together through foreign keys. They express relationships like
2004 Nov 24
3
[DEVEL] Defining Pure Virtual Functions
I am working on the Printer, PrintDialog, PrintDialogData, PrinterDC, etc... classes and I''m having a problem with Printout. In the wxWindows source, the file "prntbase.h" defines the class "wxPrintout". When wrapping this for wxRuby I am trying the call: cppResult = new wxPrintout( cppParm0 ); //where cppParm0 is a wxString If I do this it complains that I need
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
2006 Dec 13
1
0.0.38 tag and release
...'m planning to try and fix this stuff using %markfunc so it works flexibly with ruby''s GC - Add Scintilla for Linux - Roy, sorry, this patch just dropped off my screen. It''s compiling fine but just not appearing in bigdemo. Hopefully something simple. - Have another go at DataObject using a C++ subclass... - Try and nail some of the platform bugs (ScrolledWindow on MSW, KeyEvent on OS X etc) We seem to be in the sweet position of having very few GUI wx classes left to port. Apart from Clipboard the ones that are left seem mostly (for implementation reasons - eg DatePicker...
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
2007 Nov 01
6
Universal Binary on OS X
Since the PPC Macs are no longer being produced and my PPC build machine is getting a little old I thought I would try making a universal version of the Mac OS X gem. After a little investigation it turned out to be surprisingly easy to do, just pass --enable-universal_binary when building wxWidgets and add -arch ppc -arch i386 to $extra_cppflags and $extra_ldflags in rakemacosx.rb. Now the
2003 Nov 13
7
modified classes
-- +-[ Kontra, Gergely<kgergely@mcl.hu> PhD student Room IB113 ]---------+ | http://www.mcl.hu/~kgergely "Olyan langesz vagyok, hogy | | Mobil:(+36 20) 356 9656 ICQ: 175564914 poroltoval kellene jarnom" | +-- Magyar php mirror es magyar php dokumentacio: http://hu.php.net --+ -------------- next part -------------- A non-text attachment was scrubbed... Name:
2009 Jan 29
6
Control Characters
I am attempting a text editor using wxRuby. I''m having character issues. Strings are not binary-safe. Some characters are not allowed. - newline / line feed (\n), tab (\t) are displayed - carraige return (\r) is stripped - Other control characters and high-ascii cause control values to become empty. Affected controls include: Wx::TextCtrl, Wx::StaticText, Wx::Clipboard, et al. Most
2006 Jul 12
1
SWIGging clipboard
Hi all I''m having a go at porting the Clipboard and DnD classes, going OK, but have hit a snag where I could use your help. I''ve added several relevant classes, but now I have on OS X missing symbols: wxDataObjectBase::GetDataHere(wxDataFormat const&, void*) const wxDataObjectBase::GetDataSize(wxDataFormat const&) const DataObjectBase is an internal base class for DataObject. It''s defined in the platform-neutral wx/dataobj.h, which has class WXDLLEXPORT wxDataObjectBase { ... // g...
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
2011 Dec 23
0
Datamapper problem "no such table"
...pper.repository(:lite).auto_migrate! DataMapper.repository(:lite) do w = WorkCenter.new(:name => "Foo") w.save end Now I get this error: /usr/lib/ruby/gems/1.9.1/gems/dm-do-adapter-1.2.0/lib/dm-do-adapter/adapter.rb:147:in `execute_reader'': no such table: work_centers (DataObjects::SyntaxError) the cm.sqlite file is created but is zero bytes long. What am I doing wrong? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonr...
2003 Jul 02
2
Batch files in R
When I submit more than one batch file (same programs, different parameter values, huge simulations, different result names) the only results that get saved are from the *last* batch file to finish. They are all being run in the same subdirectory (so same .RData file?) I've done: R --save BATCH infile outfile and I've also put q(save="yes") at the end of the program, but
2008 May 18
0
[ wxruby-Bugs-20211 ] Unresolved symbol due to linkage error
...leratorEntry.o obj/AcceleratorTable.o obj/ActivateEvent.o obj/Animation.o obj/AnimationCtrl.o obj/App.o obj/ArtProvider.o obj/AuiDockArt.o obj/AuiManager.o obj/AuiManagerEvent.o obj/AuiNotebook.o obj/AuiNotebookEvent.o obj/AuiPaneInfo.o obj/Bitmap.o obj/BitmapButton.o obj/BitmapComboBox.o obj/BitmapDataObject.o obj/BoxSizer.o obj/Brush.o obj/BusyInfo.o obj/Button.o obj/CalculateLayoutEvent.o obj/CalendarCtrl.o obj/CalendarDateAttr.o obj/CalendarEvent.o obj/Caret.o obj/CheckBox.o obj/CheckListBox.o obj/ChildFocusEvent.o obj/Choice.o obj/Choicebook.o obj/ChoicebookEvent.o obj/ClientDC.o obj/ClientDataCont...
2005 Nov 10
4
wxRuby on osx tiger and ruby 1.8
Does anyone have a dmg image or .bundle of wxRuby built against wxwindows 2.4/2.5/2.6 and Ruby 1.8? I attempted to build all the parts with not much success. -- -- I am not a number I am a man! _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2007 Mar 09
0
[878] trunk/wxruby2/TODO: Update with 0.0.39 changes and items now in tracker
...er.rb, and </span><span class="cx"> rename them to "init" </span><span class="cx"> </span><del>-- Add classes that were supported in wxruby 0.6.0 </del><ins>+- Add classes that were supported in wxruby 0.6.0 - now only DataObject + and DataFormat classes remain to be added </ins><span class="cx"> </span><span class="cx"> - Try to get rid of compile warnings </span><span class="cx"> </span></span></pre> </div> </div> </body...
2009 Mar 27
0
Wine release 1.1.18
...function to retrieve the implementation ptr. ole32: Rearrange functions to eliminate forward declarations. ole32: pFmt isn't exposed to the client, so simplify its allocation. ole32: Simplify QueryInterface. ole32: Use IsEqualIID rather than memcmp. ole32: Register DataObject clipboard format. ole32: Store the ole clipboard window's HWND in the DataObject clipboard format. ole32: Move the code to set the clipboard formats to a separate function. ole32/tests: Tests for the 'Ole Private Data' clipboard format. rpcrt4: Dynamically alloca...