vote up 1 vote down star
1

I'm looking for patterns that concern coding parts of a GUI. Not as global as MVC, that I'm quite familiar with, but patterns and good ideas and best practices concerning single controls and inputs.

Let say I want to make a control that display some objects that may overlap. Now if I click on an object, I need to find out what to do (Just finding the object I can do in several ways, such as an quad-tree and Z-order, thats not the problem). And also I might hold down a modifier key, or some object is active from the beginning, making the selection or whatever a bit more complicated. Should I have an object instance representing a screen object, handle the user-action when clicked, or a master class. etc.. What kind of patterns or solutions are there for problems like this?

flag

7 Answers

vote up 4 vote down check

I think to be honest you a better just boning up on your standard design patterns and applying them to the individual problems that you face in developing your UI.

While there are common UI "themes" (such as dealing with modifier keys) the actual implementation may vary widely.

I have O'Reilly's Head First Design Patterns and The Poster, which I have found invaluable!

Shameless Plug : These links are using my associates ID.

link|flag
Head First Design Patterns is a great book, though I did laugh about this - fishbowl.pastiche.org/2005/08/… – David Feb 10 at 21:03
I akso have "Head First Design Patterns". I found it really good to learn basic patterns in a funny way. – FrenchData Nov 26 at 12:31
vote up 1 vote down

I don't think the that benefit of design patterns come from trying to find a design pattern to fit a problem. You can however use some heuristics to help clean up your design in this quite a bit, like keeping the UI as decoupled as possible from the rest of the objects in your system.

There is a pattern that might help out in this case, the Observer Pattern.

link|flag
vote up 1 vote down

Hi Peter, perhaps you're looking for something like the 'MouseTrap' which I saw in some articles on codeproject (search for UI Platform)?

I also found this series very useful http://codebetter.com/blogs/jeremy.miller/archive/tags/Design+Patterns/Build+your+own+CAB/default.aspx where you might have a look at embedded controllers etc.

Micha.

link|flag
vote up 1 vote down

I know you said not as global as MVC, but there are some variations on MVC - specifically HMVC and PAC - which I think can answer questions such as the ones you pose.

Other than that, try to write new code "in the spirit" of existing patterns even if you don't apply them directly.

link|flag
vote up 0 vote down

Rob: I have gone through the standard 20 or so patterns that I could find, and possibly help out. But a lot of times, these don't help me out much in making a easy to overlook solution to the gui related problems. Since I do a lot of different types gui coding, any pattern that someone found to be useful, or related to guis, is of interest. Thanks for the answer, I'll be sure to get a look at that book (... with that girl on the cover. Jesus she must be smart, making her way on to that cover :) )

Antonio: The Observer is great, but it don't really help me make out a nice way of figuring out which item to make an action on (drag the already selected, or select a new, things like that) (for instance). Decoupled or not, I still have to have objects representing items displayed, and somewhere I have to handle the interaction logic. Thanks for the answer anyhow. I guess you have more experience from this than me, so I take your advice and go see what I can find.

link|flag
vote up 0 vote down

Hi Peter,

Oh wow, yeah! Thanks, I'll keep an eye out for my speedy badge.

As to the future problems, although it sucks you will have to face them, its great because thats what StackOverflow is all about! If you get to a point in UI design where you are unsure of patterns to apply/take a step forward. Then get asking my friend! I would really like to get my brain involved so look forward to it! ^_^

link|flag
vote up 0 vote down

Rob: You should be awarded a speedy badge for writing an accepted answer within 30 min or the original answer. Doesn't seem to work?

link|flag

Your Answer

Get an OpenID
or

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