vote up 2 vote down star
2

My aim is to update the look of the GUI in my app. Currently my GUI contains a lot of listboxes which are used to edit some objects in an old fashioned way, that is, user double-clicks an item and a dialog is shown to modify the corresponding object.

I think a good modern approach is how Firefox displays the extensions installed (a snapshot below).

My question is about how to build such a GUI in Delphi(win32) easily? Are there any components you use mimicing such behaviour or will I just need to code this from stratch using panels? (IMO a very cumbersome job I'd like to avoid - the selection logic, resizings, etc...)

alt text

flag

6 Answers

vote up 3 vote down check

Hello. You can do something similar (not exactly) with standard components; TDBCtrlGrid, TSpeedButton,...

alt text

link|flag
Wow! thank you very much Neftali! :) – utku_karatas Feb 5 at 17:20
vote up 3 vote down

Using a TFrame for each list item and put them all Aligned Top on a TScrollBox might work. Also see TDBCtrlGrid which does something like that in combination with datasets.

link|flag
Thanks Lars, I've gone a similar direction Neftali suggested. – utku_karatas Feb 5 at 17:29
vote up 2 vote down

It can be done with existing Delphi controls.

For instance in the TCustomListBox control you can create your own OnDrawItem event to draw your own list item. You also need to create your own OnMeasureItem to change the item height.

In some cases it is very limited, so if you want more freedom you will need to do it from scratch.

link|flag
This is exactly what I was avoiding :-) Thanks though! – utku_karatas Feb 5 at 17:30
vote up 0 vote down

Check out TMS Software. They have plenty of components, some might fit your need.

link|flag
I'll indeed buy TMS components when an overall GUI polish-up is decided. Or the Raize pack.. – utku_karatas Feb 5 at 17:32
vote up 5 vote down

If you're using Delphi 2007 or Delphi 2009, you might be able to do something similar using TCategoryButtons (from the 'Additional' component palette page). Drop it on a form and right click to display the popup menu, and then click "Categories Editor...". Add a category with the resulting dialog, set it's caption, and optionally set up Items it contains. Not exactly the same, but it might do what you need.

You could also use a dialog with a TTreeView (if you have categories of objects) or TListView to emulate the Delphi 2007 Projects->Options dialog. Clicking an item in the TreeView or ListView displays the proper page of a TPageControl to configure the object.

link|flag
TCategoryButtons was my answer, so you got my vote. – Cesar Romero Feb 4 at 21:18
Thanks, Cesar. Finally got around to setting up an OpenID so I could answer questions here. <g> Been lurking on occasion, but just for short times. – Ken White Feb 4 at 21:26
This seems the viable choice in D2007 and above. Though unfortunately I don't have it. Thanks. – utku_karatas Feb 5 at 17:21
It might be nice, in the future, if you included which version of Delphi you were using; it would help people know which solutions might be acceptable. :-) – Ken White Feb 5 at 20:12
Thanks for the heads up too. – utku_karatas Feb 6 at 23:14
vote up 2 vote down

I mostly agree with Lars, but I would use a frame for each item instead of a panel. That would separate into its own file, and you would get easy designtime support for it.

link|flag
Nice suggestion. I updated my answer. – Lars Truijens Feb 5 at 9:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.