Properties Widget

Hi all,

is there something like a PropertiesControl for wxPython?

Thanks Andreas

What do you mean by "PropertiesControl"? What does it do? What does it
look like?

- Josiah

···

Andreas Kaiser <listen@vocote.de> wrote:

Hi all,

is there something like a PropertiesControl for wxPython?

Hi Josiah,

Josiah Carlson schrieb:

What do you mean by "PropertiesControl"? What does it do? What does it
look like?

What I mean is this kind of control like in Visual Studio or SharpDevelop for assigning properties to a control.

Andreas

Some of us don't use Visual Studio or SharpDevelop. What features do
you want? What do you want it to look like?

- Josiah

···

Andreas Kaiser <listen@vocote.de> wrote:

Hi Josiah,

Josiah Carlson schrieb:
> What do you mean by "PropertiesControl"? What does it do? What does it
> look like?
What I mean is this kind of control like in Visual Studio or
SharpDevelop for assigning properties to a control.

Hi Josiah,

take a look at:
http://visualwx.altervista.org/immagini/radprop.png
In the left column is the name of the propertie an on the right column you can input a value. For boolean values the field is a combobox or a checkbox.
I know, that I can create such kind of control by hand but for other GUI libraries exist a own PropertieGrid control.

Andreas

Andreas Kaiser wrote:

Hi Josiah,

take a look at:
http://visualwx.altervista.org/immagini/radprop.png
In the left column is the name of the propertie an on the right column you can input a value. For boolean values the field is a combobox or a checkbox.
I know, that I can create such kind of control by hand but for other GUI libraries exist a own PropertieGrid control.

Most people use a wx.grid.Grid.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

I'd like to Enable() or Disable() a button on a wizard page
(as is often done in wizards), but I don't see any way to get to them.
Am I missing something?

Steve

Stephen Waterbury wrote:

I'd like to Enable() or Disable() a button on a wizard page
(as is often done in wizards), but I don't see any way to get to them.
Am I missing something?

Ooops -- Robin already answered this one! For those who might not
have seen it:

Robin wrote (10/29/2004 06:55 PM, re: How to suppress Cancel button on Wizard page?):

Lookup the buttons by ID. For example:

    cancelBtn = wizard.FindById(wx.ID_CANCEL)

I think the Finish button is the same as the Next button, it has just had its label changed.
So you can get it with the wx.ID_FORWARD.

Sorry about that!

Steve

Stephen Waterbury wrote:

    cancelBtn = wizard.FindById(wx.ID_CANCEL)

... which should really be 'FindWindowById', of course.

Andreas Kaiser wrote:

Hi Josiah,

take a look at:
http://visualwx.altervista.org/immagini/radprop.png
In the left column is the name of the propertie an on the right column you can input a value. For boolean values the field is a combobox or a checkbox.
I know, that I can create such kind of control by hand but for other GUI libraries exist a own PropertieGrid control.

I think this kind of thing is more a component of an IDE than the GUI libraries the IDE works with. If I remember correctly, Boa has such a thing as part of its GUI constructor. wxGlade also has something of the sort.

Don Dwiggins
Advanced Publishing Technology

If you're looking for a UI development environment, you should check
out Dabo (http://dabodev.com). They have a UI designer that does a lot
of what you describe. You should check out their screencasts, which
demonstrate the designer tools in action:
http://dabodev.com/documentation

···

On 1/26/06, Andreas Kaiser <listen@vocote.de> wrote:

is there something like a PropertiesControl for wxPython?

--

# p.d.