Skip to content

Commit

Permalink
Changed help page
Browse files Browse the repository at this point in the history
  • Loading branch information
esloan committed Apr 3, 2013
1 parent d7cb8b2 commit 13fdcf8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
13 changes: 10 additions & 3 deletions src/org/usfirst/frc2022/AboutGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,24 @@ public AboutGUI() throws ClassNotFoundException, InstantiationException, Illegal
setTitle("About Scouter 2013");
setVisible(false);
setResizable(false);
setPreferredSize(new Dimension(460,160));
setPreferredSize(new Dimension(430,430));
setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);

panel = new JPanel(new MigLayout("fill"));
info = new JTextPane();
info.setEditable(false);
info.setFont(new Font(Font.SANS_SERIF, 1, 16));
info.setText("Scouter 2013 was created by the IMSA Titans. \n \n"
+ "Authors: \n Evan Derse \n Nick Magerko \n Emma Sloane");
+ "Authors: \n Evan Derse \n Nick Magerko \n Emma Sloan \n \n"
+ "The first text box is for team number, second is for match number. \n"
+ "Pyramid shots are being calculated as shots dumped to the top of the pyramid. \n"
+ "The output will be a csv file with (in order): \n"
+ "Team number, Match number, Color, Sweet Spot, Pickup type, Defense, Auto shots attempted,"
+ "Auto 3(6) pointers, Auto 2(4) pointers, Auto 1(2) pointers, Auto disks picked up,"
+ "Teleop shots attempted, Teleop 3 pointers, Teleop 2 pointers, Teleop 1 pointers,"
+ "Pyramid shots made, Climb level, Fouls, Technical fouls, Total Score, Notes");

panel.add(info, "growx, wrap");
panel.add(info, "wrap");

this.add(info);
this.pack();
Expand Down
4 changes: 2 additions & 2 deletions src/org/usfirst/frc2022/ScoutingGUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private int integer(String str){

JLabel sweetSpot = new JLabel("Sweet Spot Location:");
JTextField sSpot = new JTextField(15);
JLabel notesLabel = new JLabel("Quick notes:");
JLabel notesLabel = new JLabel("Other notes:");
JTextField notes = new JTextField(30);

ButtonGroup pickupGroup = new ButtonGroup();
Expand Down Expand Up @@ -134,7 +134,7 @@ public ScoutingGUI()throws ClassNotFoundException, InstantiationException, Illeg
//Create the window
setTitle("Scouter 2013");
setVisible(true);
setSize(460, 695);
setSize(530, 695);
setResizable(false);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

Expand Down

0 comments on commit 13fdcf8

Please sign in to comment.