aboutsummaryrefslogtreecommitdiffstats
path: root/src/net/java/sip/communicator/plugin/chatconfig/ChatConfigPanel.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/java/sip/communicator/plugin/chatconfig/ChatConfigPanel.java')
-rw-r--r--src/net/java/sip/communicator/plugin/chatconfig/ChatConfigPanel.java38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/net/java/sip/communicator/plugin/chatconfig/ChatConfigPanel.java b/src/net/java/sip/communicator/plugin/chatconfig/ChatConfigPanel.java
new file mode 100644
index 0000000..5699065
--- /dev/null
+++ b/src/net/java/sip/communicator/plugin/chatconfig/ChatConfigPanel.java
@@ -0,0 +1,38 @@
+/*
+ * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
+ *
+ * Distributable under LGPL license. See terms of license at gnu.org.
+ */
+package net.java.sip.communicator.plugin.chatconfig;
+
+import java.awt.*;
+import javax.swing.*;
+
+import net.java.sip.communicator.plugin.chatconfig.replacement.*;
+import net.java.sip.communicator.util.swing.*;
+
+/**
+ * The chat configuration panel.
+ *
+ * @author Purvesh Sahoo
+ */
+public class ChatConfigPanel
+ extends TransparentPanel
+{
+ /**
+ * Creates the <tt>ChatConfigPanel</tt>.
+ */
+ public ChatConfigPanel()
+ {
+ super(new BorderLayout());
+
+ TransparentPanel mainPanel = new TransparentPanel();
+
+ BoxLayout boxLayout = new BoxLayout(mainPanel, BoxLayout.Y_AXIS);
+ mainPanel.setLayout(boxLayout);
+ this.add(mainPanel, BorderLayout.NORTH);
+
+ mainPanel.add(new ReplacementConfigPanel());
+ mainPanel.add(Box.createVerticalStrut(10));
+ }
+} \ No newline at end of file