Changed chart in main window
This commit is contained in:
parent
9e4d46ee99
commit
f7b56294e9
@ -1,4 +1,4 @@
|
||||
#Sat, 07 Oct 2017 02:38:10 +0200
|
||||
#Sat, 07 Oct 2017 07:36:14 +0200
|
||||
annotation.processing.enabled=true
|
||||
annotation.processing.enabled.in.editor=false
|
||||
annotation.processing.processors.list=
|
||||
|
@ -434,32 +434,13 @@
|
||||
</Constraint>
|
||||
</Constraints>
|
||||
</Component>
|
||||
<Container class="javax.swing.JScrollPane" name="chartSrollPane">
|
||||
<Component class="chart.MasterChart" name="chart">
|
||||
<Constraints>
|
||||
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.support.JSplitPaneSupportLayout" value="org.netbeans.modules.form.compat2.layouts.support.JSplitPaneSupportLayout$JSplitPaneConstraintsDescription">
|
||||
<JSplitPaneConstraints position="left"/>
|
||||
</Constraint>
|
||||
</Constraints>
|
||||
|
||||
<Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
|
||||
<SubComponents>
|
||||
<Container class="gui.MainChart" name="chart">
|
||||
|
||||
<Layout>
|
||||
<DimensionLayout dim="0">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<EmptySpace min="0" pref="0" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
<DimensionLayout dim="1">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<EmptySpace min="0" pref="0" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
</Layout>
|
||||
</Container>
|
||||
</SubComponents>
|
||||
</Container>
|
||||
</Component>
|
||||
</SubComponents>
|
||||
</Container>
|
||||
<Component class="gui.orderbook.QuoteVertical" name="quoteVertical1">
|
||||
|
@ -85,7 +85,7 @@ public class SeSimApplication extends javax.swing.JFrame {
|
||||
Globals.prefs.putBoolean("initilized", true);
|
||||
}
|
||||
|
||||
this.chartSrollPane.setVerticalScrollBarPolicy(VERTICAL_SCROLLBAR_NEVER);
|
||||
// this.chartSrollPane.setVerticalScrollBarPolicy(VERTICAL_SCROLLBAR_NEVER);
|
||||
|
||||
}
|
||||
|
||||
@ -182,8 +182,7 @@ public class SeSimApplication extends javax.swing.JFrame {
|
||||
jSplitPane3 = new javax.swing.JSplitPane();
|
||||
jSplitPane4 = new javax.swing.JSplitPane();
|
||||
orderBooksHorizontal1 = new gui.orderbook.OrderBooksHorizontal();
|
||||
chartSrollPane = new javax.swing.JScrollPane();
|
||||
chart = new gui.MainChart();
|
||||
chart = new chart.MasterChart();
|
||||
quoteVertical1 = new gui.orderbook.QuoteVertical();
|
||||
jSplitPane5 = new javax.swing.JSplitPane();
|
||||
statistics1 = new gui.Statistics();
|
||||
@ -318,21 +317,7 @@ public class SeSimApplication extends javax.swing.JFrame {
|
||||
jSplitPane4.setDividerLocation(300);
|
||||
jSplitPane4.setOrientation(javax.swing.JSplitPane.VERTICAL_SPLIT);
|
||||
jSplitPane4.setBottomComponent(orderBooksHorizontal1);
|
||||
|
||||
javax.swing.GroupLayout chartLayout = new javax.swing.GroupLayout(chart);
|
||||
chart.setLayout(chartLayout);
|
||||
chartLayout.setHorizontalGroup(
|
||||
chartLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGap(0, 0, Short.MAX_VALUE)
|
||||
);
|
||||
chartLayout.setVerticalGroup(
|
||||
chartLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGap(0, 0, Short.MAX_VALUE)
|
||||
);
|
||||
|
||||
chartSrollPane.setViewportView(chart);
|
||||
|
||||
jSplitPane4.setLeftComponent(chartSrollPane);
|
||||
jSplitPane4.setLeftComponent(chart);
|
||||
|
||||
jSplitPane3.setRightComponent(jSplitPane4);
|
||||
jSplitPane3.setLeftComponent(quoteVertical1);
|
||||
@ -599,7 +584,7 @@ public class SeSimApplication extends javax.swing.JFrame {
|
||||
void resetSim() {
|
||||
Globals.se.terminate();
|
||||
Globals.se.reset();
|
||||
chart.initChart();
|
||||
// chart.initChart();
|
||||
chart.invalidate();
|
||||
chart.repaint();
|
||||
// this.orderBookPanel.invalidate();
|
||||
@ -921,8 +906,7 @@ public class SeSimApplication extends javax.swing.JFrame {
|
||||
// Variables declaration - do not modify//GEN-BEGIN:variables
|
||||
private javax.swing.JMenuItem aboutMenuItem;
|
||||
private javax.swing.JSpinner accelSpinner;
|
||||
private gui.MainChart chart;
|
||||
private javax.swing.JScrollPane chartSrollPane;
|
||||
private chart.MasterChart chart;
|
||||
private javax.swing.JMenuItem clearMenuItem;
|
||||
private gui.Clock clock;
|
||||
private javax.swing.JMenuItem closeMenuItem;
|
||||
|
Loading…
Reference in New Issue
Block a user