GUI Programming by hand not code with Python Code

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • jayjaygibbs@hotmail.co.uk

    GUI Programming by hand not code with Python Code

    Is their a program that lets you design a GUI by hand (like gambas)
    not by code (like wxpython) but the commands are in python?

    A program similar to gambas or vb

    Gambas with python code instead of gambas code would be perfect.

    Thanks in advance
  • Jason Scheirer

    #2
    Re: GUI Programming by hand not code with Python Code

    On Jul 6, 7:33 pm, jayjaygi...@hot mail.co.uk wrote:
    Is their a program that lets you design a GUI by hand (like gambas)
    not by code (like wxpython) but the commands are in python?
    >
    A program similar to gambas or vb
    >
    Gambas with python code instead of gambas code would be perfect.
    >
    Thanks in advance
    Glade for GTK, wxGlade for wxPython.

    Comment

    • Mike Driscoll

      #3
      Re: GUI Programming by hand not code with Python Code

      On Jul 6, 9:33 pm, jayjaygi...@hot mail.co.uk wrote:
      Is their a program that lets you design a GUI by hand (like gambas)
      not by code (like wxpython) but the commands are in python?
      >
      A program similar to gambas or vb
      >
      Gambas with python code instead of gambas code would be perfect.
      >
      Thanks in advance
      I think Dabo also has a way to do some Visual programming too. And
      there's also XRC.

      See the following links for more info:




      Mike

      Comment

      • Sebastian \lunar\ Wiesner

        #4
        Re: GUI Programming by hand not code with Python Code

        Jason Scheirer <jason.scheirer @gmail.com>:
        On Jul 6, 7:33 pm, jayjaygi...@hot mail.co.uk wrote:
        >Is their a program that lets you design a GUI by hand (like gambas)
        >not by code (like wxpython) but the commands are in python?
        >>
        >A program similar to gambas or vb
        >>
        >Gambas with python code instead of gambas code would be perfect.
        >>
        >Thanks in advance
        >
        Glade for GTK, wxGlade for wxPython.
        And the designer for Qt4

        --
        Freedom is always the freedom of dissenters.
        (Rosa Luxemburg)

        Comment

        • sturlamolden

          #5
          Re: GUI Programming by hand not code with Python Code

          On 7 Jul, 04:33, jayjaygi...@hot mail.co.uk wrote:
          Is their a program that lets you design a GUI by hand (like gambas)
          not by code (like wxpython) but the commands are in python?
          >
          A program similar to gambas or vb
          >
          Gambas with python code instead of gambas code would be perfect.
          >
          Thanks in advance
          I use wxFormBuilder with wxPython. Works like a charm. Design the GUI
          graphically, export it like a wx XML resource (.xrc). All you nedd to
          code in Python is the event handlers and the code to bind/hook the
          events.



          If you can accept a Windows only solution, you can use Microsoft's
          IronPython with MS VisualStudio. It will be just like using VB, except
          you are coding in Python. But remember that extension libraries to
          CPython is generally not available for IronPython. Insted you must
          rely more on .NET and COM/ActiveX objects.












          Comment

          Working...