Slashdot Mirror


User: dilbert

dilbert's activity in the archive.

Stories
0
Comments
4
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4

  1. Re:widget set... on Chandler 0.1 Released · · Score: 1

    wxWindows has been ported to GTK2 and is already nearly as solid as the GTK1 port. wxPython can already be built with wxGTK2 but it is not the default until a few remaining issues are ironed out.

  2. Re:Cross Platform GUI - Tk on wxWindows vs. MFC · · Score: 1
    On the other hand if I had to distribute this same program to Windows users, I would have to ask them to download and install Python. You want to download something named after a snake?

    Not true. The py2exe tool lets you make a bundle of files that include the Python runtime and any extension modules required by your app, and it works very well with wxPython. Your users never need know that they are using Python.

  3. Re:QT is the best gui toolkit out there on Qt for Mac · · Score: 1
    If you're writing a cross platform motif/win32 app and want to use a windows widget that doesn't exist in motif you're out of luck with wxWin as a wrapper. This can obviously be resolved by having a hybrid toolkit that uses native widgets when it can and resorts to drawing widgets when it has to.

    Which is exactly what wxWindows does. There are very few LCD issues in wxWindows, and it will be even further minimised as time goes on and more generic implementations of the core widgets are implemented.

  4. Re:XP and featureful! on Ask Slashdot: What is the Best GUI Framework? · · Score: 1
    > wxWindows I have found to be a nice XP GUI library/widget set. It's C++ only though, so
    > that might be a problem for some. It takes advantage of GTK+ or Motif on *NIX. It also
    > supports win32 and Mac.

    Actually it's not C++ only. wxPython is a Python binding for wxWindows and it ROCKS! Once the Mac version is done it may very well become the new de facto standard GUI toolkit for Python, kicking Tk out into the cold.