Allow the hint text to be put on the same line as the chat input.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@254 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Michael Bayne
2007-03-21 15:58:57 +00:00
parent add74fd863
commit f61250f75b
@@ -66,11 +66,15 @@ import com.threerings.crowd.util.CrowdContext;
import com.threerings.micasa.Log; import com.threerings.micasa.Log;
public class ChatPanel public class ChatPanel extends JPanel
extends JPanel
implements ActionListener, ChatDisplay, OccupantObserver, PlaceView implements ActionListener, ChatDisplay, OccupantObserver, PlaceView
{ {
public ChatPanel (CrowdContext ctx) public ChatPanel (CrowdContext ctx)
{
this(ctx, false);
}
public ChatPanel (CrowdContext ctx, boolean cuddleHintLabel)
{ {
// keep this around for later // keep this around for later
_ctx = ctx; _ctx = ctx;
@@ -94,11 +98,17 @@ public class ChatPanel
createStyles(_text); createStyles(_text);
// add a label for the text entry stuff // add a label for the text entry stuff
add(new JLabel("Type here to chat:"), GroupLayout.FIXED); JLabel hint = new JLabel("Type here to chat:");
if (!cuddleHintLabel) {
add(hint, GroupLayout.FIXED);
}
// create a horizontal group for the text entry bar // create a horizontal group for the text entry bar
gl = new HGroupLayout(GroupLayout.STRETCH); gl = new HGroupLayout(GroupLayout.STRETCH);
JPanel epanel = new JPanel(gl); JPanel epanel = new JPanel(gl);
if (cuddleHintLabel) {
epanel.add(hint, GroupLayout.FIXED);
}
epanel.add(_entry = new JTextField()); epanel.add(_entry = new JTextField());
_entry.setActionCommand("send"); _entry.setActionCommand("send");
_entry.addActionListener(this); _entry.addActionListener(this);