Re: wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-11 Thread Linas Žvirblis
Oliver Gerlich wrote: > Personally, I'd be interested to have a GUI for controlling a running > Qemu instance: change CD-ROM, add/remove USB devices, save/restore VM > snapshots (though this would also require to save/restore disk > snapshots), and eg. provide buttons to switch between guest Virtu

Re: wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-11 Thread Oliver Gerlich
Linas Žvirblis wrote: Jason Gress wrote: I know this is a lot different than the discussion so far, but has anyone considered keeping SDL and using an SDL GUI similar to ZSNES? I did not check the source code, but it looks just like any other self-made bitmap-based SDL menu I have seen. It

Re: wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-11 Thread Linas Žvirblis
Jason Gress wrote: > I know this is a lot different than the discussion so far, but has anyone > considered keeping SDL and using an SDL GUI similar to ZSNES? I did not check the source code, but it looks just like any other self-made bitmap-based SDL menu I have seen. It is like inventing yet a

Re: wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-11 Thread Jason Gress
I know this is a lot different than the discussion so far, but has anyone considered keeping SDL and using an SDL GUI similar to ZSNES? Take a look (for those not familiar) at http://www.zsnes.com and grab a download. Many Linux distro package managers have it also. You don't need a SNES ROM

Re: wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-11 Thread David Fraser
John R. wrote: > On 7/8/06, Oliver Gerlich <[EMAIL PROTECTED]> wrote: > >> Is wxC still under active development? The CVS version seems to be quite >> old, and I also couldn't find any documentation. >> > > Well it wouldn't be the first unmaintained batch of code added to > QEMU... Slirp is the exa

Re: wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-09 Thread Jim C. Brown
On Sun, Jul 09, 2006 at 05:03:12PM -0700, John R. wrote: > On 7/8/06, Oliver Gerlich <[EMAIL PROTECTED]> wrote: > > >Is wxC still under active development? The CVS version seems to be quite > >old, and I also couldn't find any documentation. > > > > Well it wouldn't be the first unmaintained batc

Re: wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-09 Thread John R.
On 7/8/06, Oliver Gerlich <[EMAIL PROTECTED]> wrote: Is wxC still under active development? The CVS version seems to be quite old, and I also couldn't find any documentation. Well it wouldn't be the first unmaintained batch of code added to QEMU... Slirp is the example that comes to mind. In

Re: wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-08 Thread Oliver Gerlich
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jim C. Brown schrieb: > For the record, we can use wxWidgets in qemu even though we can not use C++ > in qemu (something that I would be strongly against). > > http://wxc.sourceforge.net/ > > Requiring this as a dependency would make it easier to dea

Re: wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-08 Thread Kevin F. Quinn
On Sat, 8 Jul 2006 11:13:52 -0400 "Jim C. Brown" <[EMAIL PROTECTED]> wrote: > Good question. I'm not aware of a way to call Python code from inside > of C. See http://docs.python.org/ext/ext.html However doing this just means yet another language dependency. -- Kevin F. Quinn signature.asc

Re: wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-08 Thread Jim C. Brown
On Sat, Jul 08, 2006 at 11:02:31AM -0400, Joe Lee wrote: > Jim C. Brown wrote: > >For the record, we can use wxWidgets in qemu even though we can not use C++ > >in qemu (something that I would be strongly against). > > > >http://wxc.sourceforge.net/ > > > >Requiring this as a dependency would make

Re: wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-08 Thread Joe Lee
Jim C. Brown wrote: For the record, we can use wxWidgets in qemu even though we can not use C++ in qemu (something that I would be strongly against). http://wxc.sourceforge.net/ Requiring this as a dependency would make it easier to deal with issues such as C++ ABI compatibility by avoiding the

wxWidgets and C: was Re: [Qemu-devel] QEMU GUI

2006-07-08 Thread Jim C. Brown
For the record, we can use wxWidgets in qemu even though we can not use C++ in qemu (something that I would be strongly against). http://wxc.sourceforge.net/ Requiring this as a dependency would make it easier to deal with issues such as C++ ABI compatibility by avoiding the direct use of C++. T