You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ChatView.form 5.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <Form version="1.9" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo">
  3. <NonVisualComponents>
  4. <Container class="javax.swing.JDialog" name="jDialogServerClient">
  5. <Layout>
  6. <DimensionLayout dim="0">
  7. <Group type="103" groupAlignment="0" attributes="0">
  8. <EmptySpace min="0" pref="400" max="32767" attributes="0"/>
  9. </Group>
  10. </DimensionLayout>
  11. <DimensionLayout dim="1">
  12. <Group type="103" groupAlignment="0" attributes="0">
  13. <EmptySpace min="0" pref="300" max="32767" attributes="0"/>
  14. </Group>
  15. </DimensionLayout>
  16. </Layout>
  17. </Container>
  18. <Menu class="javax.swing.JMenuBar" name="jMenuBar1">
  19. <SubComponents>
  20. <Menu class="javax.swing.JMenu" name="jMenu2">
  21. <Properties>
  22. <Property name="text" type="java.lang.String" value="File"/>
  23. </Properties>
  24. </Menu>
  25. <Menu class="javax.swing.JMenu" name="jMenu3">
  26. <Properties>
  27. <Property name="text" type="java.lang.String" value="Edit"/>
  28. </Properties>
  29. </Menu>
  30. </SubComponents>
  31. </Menu>
  32. </NonVisualComponents>
  33. <Properties>
  34. <Property name="defaultCloseOperation" type="int" value="3"/>
  35. </Properties>
  36. <SyntheticProperties>
  37. <SyntheticProperty name="menuBar" type="java.lang.String" value="jMenuBar1"/>
  38. <SyntheticProperty name="formSizePolicy" type="int" value="1"/>
  39. <SyntheticProperty name="generateCenter" type="boolean" value="false"/>
  40. </SyntheticProperties>
  41. <AuxValues>
  42. <AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/>
  43. <AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/>
  44. <AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/>
  45. <AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/>
  46. <AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/>
  47. <AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/>
  48. <AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/>
  49. <AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/>
  50. <AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/>
  51. <AuxValue name="designerSize" type="java.awt.Dimension" value="-84,-19,0,5,115,114,0,18,106,97,118,97,46,97,119,116,46,68,105,109,101,110,115,105,111,110,65,-114,-39,-41,-84,95,68,20,2,0,2,73,0,6,104,101,105,103,104,116,73,0,5,119,105,100,116,104,120,112,0,0,1,44,0,0,1,-112"/>
  52. </AuxValues>
  53. <Layout class="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout"/>
  54. <SubComponents>
  55. <Container class="javax.swing.JLayeredPane" name="chatControll">
  56. <Constraints>
  57. <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout" value="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout$BorderConstraintsDescription">
  58. <BorderConstraints direction="Last"/>
  59. </Constraint>
  60. </Constraints>
  61. <Layout class="org.netbeans.modules.form.compat2.layouts.DesignFlowLayout"/>
  62. <SubComponents>
  63. <Component class="javax.swing.JButton" name="btnSend">
  64. <Properties>
  65. <Property name="text" type="java.lang.String" value="send"/>
  66. </Properties>
  67. </Component>
  68. <Component class="javax.swing.JButton" name="btnClear">
  69. <Properties>
  70. <Property name="text" type="java.lang.String" value="clear"/>
  71. </Properties>
  72. </Component>
  73. </SubComponents>
  74. </Container>
  75. <Container class="javax.swing.JLayeredPane" name="chatContent">
  76. <Constraints>
  77. <Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout" value="org.netbeans.modules.form.compat2.layouts.DesignBorderLayout$BorderConstraintsDescription">
  78. <BorderConstraints direction="Center"/>
  79. </Constraint>
  80. </Constraints>
  81. <Layout class="org.netbeans.modules.form.compat2.layouts.DesignBoxLayout">
  82. <Property name="axis" type="int" value="3"/>
  83. </Layout>
  84. <SubComponents>
  85. <Container class="javax.swing.JScrollPane" name="jScrollPane1">
  86. <AuxValues>
  87. <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/>
  88. </AuxValues>
  89. <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
  90. <SubComponents>
  91. <Component class="javax.swing.JTextArea" name="taEmpfangen">
  92. <Properties>
  93. <Property name="columns" type="int" value="20"/>
  94. <Property name="rows" type="int" value="5"/>
  95. </Properties>
  96. </Component>
  97. </SubComponents>
  98. </Container>
  99. <Container class="javax.swing.JScrollPane" name="jScrollPane2">
  100. <AuxValues>
  101. <AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/>
  102. </AuxValues>
  103. <Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
  104. <SubComponents>
  105. <Component class="javax.swing.JTextArea" name="taSenden">
  106. <Properties>
  107. <Property name="columns" type="int" value="20"/>
  108. <Property name="rows" type="int" value="5"/>
  109. </Properties>
  110. </Component>
  111. </SubComponents>
  112. </Container>
  113. </SubComponents>
  114. </Container>
  115. </SubComponents>
  116. </Form>