htdahms
htdahms

Reputation: 104

Java chat client GUI advice

I'm looking for some guidance or just ideas here. We designed a basic/small Java chat client/server with a GUI. I'm thinking about developing this a bit further for fun.

I'm hitting a dead end with listing the users though. I would like a nice, clean list of your friends. With online/offline status and so on (even if its just a change in colour of the text). Maybe right click to whisper.

Anyone have any thoughts/ideas to help?

Upvotes: 0

Views: 755

Answers (2)

Mob
Mob

Reputation: 11106

I did this as my first Java project. My source code and executable are up for downloads.

Here Source and Jar Executable

Upvotes: 0

Usman Saleem
Usman Saleem

Reputation: 1655

Use a custom JList cell renderer with appropriate JLabel and/or any other swing component. See example here

Upvotes: 3

Related Questions