similar to: SWIGging clipboard

Displaying 18 results from an estimated 18 matches similar to: "SWIGging clipboard"

2003 Nov 13
3
DnD classes
I tried to add classes to DnD support, but I get compiling errors :( There are about virtual functions are abstract. I changed wxpp.rb to support size_t and other types needed, and modify extconf.rb to automatically clean all .h files, which have a similar .t file. I have problem with wxDataObject::Direction, I don''t know how the parser works, but virtual void
2015 Oct 30
0
Wine release 1.7.54
The Wine development release 1.7.54 is now available. What's new in this release (see below for details): - Implementation of the TransmitFile function. - More implementation of the Web Services DLL. - Improved video decoding. - Alternative for the deprecated prelink tool. - Major Turkish translation update. - Various bug fixes. The source is available from the following
2005 Jul 27
2
SWIGging ConfigBase
Hi all I''m trying to write an .i file for ConfigBase. If I can figure out a few general SWIG things then I think most of it will work. Apols for the noob swig questions. The C++ class has lots of overloaded methods called Read, which return different kinds of values. In wxruby-not-swig these are implemented as read, read_bool, read_int and so on. read() means read_string(). In ruby
2006 Oct 16
5
0.0.37 release goals
Hi Could we set some release goals for 0.0.37? I suggest we release sooner rather than later to put the various little build problems behind us. So my only high-priority item for 0.037 at the moment is to port Scintilla to Linux and OS X. I will gladly accept other feature, bugfix and doc patches. Anything else we''d like to be sure to do? alex
2009 May 08
0
Wine release 1.1.21
The Wine development release 1.1.21 is now available. What's new in this release (see below for details): - Beginnings of shader model 4 support. - Support for copying/pasting images from X11 applications. - A number of GDIPlus improvements. - Various listview fixes. - 64-bit support in winemaker. - Support for building on Mac OS X Snow Leopard. - Various bug fixes. The source
2009 May 22
0
Wine release 1.1.22
The Wine development release 1.1.22 is now available. What's new in this release (see below for details): - More improvements to OLE copy/paste. - Beginnings of x86_64 exception handling. - Direct3D locking fixes. - ARB shaders improvements. - Better OpenGL pixel format support. - Various bug fixes. The source is available from the following locations:
2005 Aug 07
4
Reswigged link error
After reswigging I get link problems: Functions.obj : error LNK2001: unresolved external symbol _mWxruby2 Mac.obj : error LNK2001: unresolved external symbol _mWxruby2 Events.obj : error LNK2001: unresolved external symbol _mWxruby2 ... Which is intriguing since it seems to be defined in wx.cpp
2006 Oct 21
7
Make task for rake
I have a dual processor machine and got mad that both processors were not working away at compiling wxRuby. At first I tried using Ruby threads but they are ''fake'' software threads that run in one process on one cpu. So until Ruby gets ''real'' threads I added a task to rake that generates a makfile which is run with the command: ''make -j 2''
2006 Nov 26
0
[758] trunk/wxruby2: i18n support: added Locale class, methods for get/set languages & encodings
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!-- #msg dl { border: 1px #006 solid; background: #369; padding:
2006 Aug 25
1
SWIG detection, revisited
I did some testing this morning, and wasn''t happy with the error messages presented to the user if they didn''t have the right SWIG version. I realized that the detection was happening at the wrong place in the code. We were detecting the swig version while *creating* the swig tasks, rather than while *executing* a swig task. This led to misleading output from rake. So I moved
2005 Aug 04
0
Success!
After re-swigging everything, manually correcting errors in the files mentioned before (and Functions.cpp) the library compiled and linked! This gets me over the hump of the reswig of wx.i I was getting before. Hopefully this will mean I can make some progress playing with things now. Although given Kevin''s recent e-mail about reworking the post-swig code... Roy
2005 Aug 24
1
installing pystre
Hi I am getting the following error while trying to build pystre It is trying to access a non existent file called channel_pvt.h Can any one help me in this matter???? running build running build_py running build_ext building '_pyastre' extension swigging _pyastre/pyastre.i to _pyastre/pyastre_wrap.c swig -python -o _pyastre/pyastre_wrap.c _pyastre/pyastre.i gcc -pthread
2006 Mar 27
4
Patch for Swig 1.3.29
Attached is a patch for Swig that at least allows us to link the library. I am experiencing a number of bugs that will need to be tracked down and squashed. I haven''t even had time to look at the newer Swig features yet. Roy _______________________________________________ wxruby-users mailing list wxruby-users@rubyforge.org http://rubyforge.org/mailman/listinfo/wxruby-users
2004 Aug 25
3
wxclasses-2.4.2.xml
I couldn''t find the original tex document that the author of the xml file converted from. Anyone knows where it is? I am toying with the idea of _not using_ the xml file. Either getting the wx header files thru SWIG (I assume you guys have thought about this before already, any specific problems?), or continue with the template generator in the current wxruby-4.0. The RUBY port of
2005 Aug 03
24
patch for Icon
I just checked out a fresh copy and had to tweak wxIcon.h to get it to compile on Mac OS X and windows. The problem is with: wxIcon(const wxString& filename, wxBitmapType type = wxBITMAP_TYPE_XPM, int desiredWidth=-1, int desiredHeight=-1); that signature is only used on GTK on other systems it is: wxIcon(const wxString& name, long
2006 Aug 10
7
Gem and tarball rake tasks
Hi I created an add-on script (to live in rake/) and a little patch for our main rakefile to automate building release products. The two main targets are ''gem'' (create a binary gem for your platform) and ''package'' (create a platform-neutral source tarball for SWIGging and compiling). A few small things came up while doing this: - Package name and version
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
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