-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2612 from jlawyerorg/feat/add-shrinkify
Feat/add shrinkify
- Loading branch information
Showing
10 changed files
with
1,834 additions
and
20 deletions.
There are no files selected for viewing
91 changes: 91 additions & 0 deletions
91
...yer-client/src/com/jdimension/jlawyer/client/configuration/AssistantRequestLogDialog.form
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
|
||
<Form version="1.3" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JDialogFormInfo"> | ||
<Properties> | ||
<Property name="defaultCloseOperation" type="int" value="2"/> | ||
<Property name="title" type="java.lang.String" value="Historie der AI-Anfragen"/> | ||
</Properties> | ||
<SyntheticProperties> | ||
<SyntheticProperty name="formSizePolicy" type="int" value="1"/> | ||
<SyntheticProperty name="generateCenter" type="boolean" value="false"/> | ||
</SyntheticProperties> | ||
<AuxValues> | ||
<AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/> | ||
<AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/> | ||
<AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/> | ||
<AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/> | ||
<AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/> | ||
<AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/> | ||
<AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/> | ||
<AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/> | ||
<AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/> | ||
</AuxValues> | ||
|
||
<Layout> | ||
<DimensionLayout dim="0"> | ||
<Group type="103" groupAlignment="0" attributes="0"> | ||
<Group type="102" attributes="0"> | ||
<EmptySpace max="-2" attributes="0"/> | ||
<Group type="103" groupAlignment="0" attributes="0"> | ||
<Component id="jScrollPane1" alignment="0" pref="806" max="32767" attributes="0"/> | ||
<Group type="102" alignment="1" attributes="0"> | ||
<EmptySpace min="0" pref="0" max="32767" attributes="0"/> | ||
<Component id="cmdClose" min="-2" max="-2" attributes="0"/> | ||
</Group> | ||
<Component id="lblStats" max="32767" attributes="0"/> | ||
</Group> | ||
<EmptySpace max="-2" attributes="0"/> | ||
</Group> | ||
</Group> | ||
</DimensionLayout> | ||
<DimensionLayout dim="1"> | ||
<Group type="103" groupAlignment="0" attributes="0"> | ||
<Group type="102" alignment="1" attributes="0"> | ||
<EmptySpace max="-2" attributes="0"/> | ||
<Component id="jScrollPane1" pref="480" max="32767" attributes="0"/> | ||
<EmptySpace max="-2" attributes="0"/> | ||
<Component id="lblStats" min="-2" max="-2" attributes="0"/> | ||
<EmptySpace type="unrelated" max="-2" attributes="0"/> | ||
<Component id="cmdClose" min="-2" max="-2" attributes="0"/> | ||
<EmptySpace max="-2" attributes="0"/> | ||
</Group> | ||
</Group> | ||
</DimensionLayout> | ||
</Layout> | ||
<SubComponents> | ||
<Component class="javax.swing.JButton" name="cmdClose"> | ||
<Properties> | ||
<Property name="text" type="java.lang.String" value="Schliessen"/> | ||
</Properties> | ||
<Events> | ||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="cmdCloseActionPerformed"/> | ||
</Events> | ||
</Component> | ||
<Container class="javax.swing.JScrollPane" name="jScrollPane1"> | ||
<AuxValues> | ||
<AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/> | ||
</AuxValues> | ||
|
||
<Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/> | ||
<SubComponents> | ||
<Component class="javax.swing.JTable" name="tblRequestLog"> | ||
<Properties> | ||
<Property name="autoCreateRowSorter" type="boolean" value="true"/> | ||
<Property name="model" type="javax.swing.table.TableModel" editor="org.netbeans.modules.form.editors2.TableModelEditor"> | ||
<Table columnCount="3" rowCount="4"> | ||
<Column editable="true" title="Zeit" type="java.lang.String"/> | ||
<Column editable="true" title="Anfragetyp" type="java.lang.String"/> | ||
<Column editable="true" title="verbrauchte Token" type="java.lang.Integer"/> | ||
</Table> | ||
</Property> | ||
</Properties> | ||
</Component> | ||
</SubComponents> | ||
</Container> | ||
<Component class="javax.swing.JLabel" name="lblStats"> | ||
<Properties> | ||
<Property name="text" type="java.lang.String" value="jLabel1"/> | ||
</Properties> | ||
</Component> | ||
</SubComponents> | ||
</Form> |
Oops, something went wrong.