001package jmri.jmrit.operations.setup.gui; 002 003import java.awt.GridBagLayout; 004import java.awt.JobAttributes.SidesType; 005import java.awt.event.ActionEvent; 006import java.io.File; 007import java.util.*; 008 009import javax.swing.*; 010 011import jmri.InstanceManager; 012import jmri.jmrit.operations.setup.*; 013import jmri.jmrit.operations.trains.TrainCommon; 014import jmri.jmrit.operations.trains.TrainManager; 015import jmri.util.FileUtil; 016import jmri.util.swing.FontComboUtil; 017import jmri.util.swing.JmriJOptionPane; 018 019/** 020 * Frame for user edit of manifest and switch list print options 021 * 022 * @author Dan Boudreau Copyright (C) 2008, 2010, 2011, 2012, 2013 023 */ 024public class PrintOptionPanel extends OperationsPreferencesPanel implements java.beans.PropertyChangeListener { 025 026 private String ADD = "+"; 027 private String DELETE = "-"; 028 029 // labels 030 JLabel logoURL = new JLabel(""); 031 032 // major buttons 033 JButton saveButton = new JButton(Bundle.getMessage("ButtonSave")); 034 JButton addLogoButton = new JButton(Bundle.getMessage("AddLogo")); 035 JButton removeLogoButton = new JButton(Bundle.getMessage("RemoveLogo")); 036 037 JButton addEngPickupComboboxButton = new JButton(ADD); 038 JButton deleteEngPickupComboboxButton = new JButton(DELETE); 039 JButton addEngDropComboboxButton = new JButton(ADD); 040 JButton deleteEngDropComboboxButton = new JButton(DELETE); 041 JButton addCarPickupComboboxButton = new JButton(ADD); 042 JButton deleteCarPickupComboboxButton = new JButton(DELETE); 043 JButton addCarDropComboboxButton = new JButton(ADD); 044 JButton deleteCarDropComboboxButton = new JButton(DELETE); 045 JButton addLocalComboboxButton = new JButton(ADD); 046 JButton deleteLocalComboboxButton = new JButton(DELETE); 047 JButton addSwitchListPickupComboboxButton = new JButton(ADD); 048 JButton deleteSwitchListPickupComboboxButton = new JButton(DELETE); 049 JButton addSwitchListDropComboboxButton = new JButton(ADD); 050 JButton deleteSwitchListDropComboboxButton = new JButton(DELETE); 051 JButton addSwitchListLocalComboboxButton = new JButton(ADD); 052 JButton deleteSwitchListLocalComboboxButton = new JButton(DELETE); 053 054 // check boxes 055 JCheckBox tabFormatCheckBox = new JCheckBox(Bundle.getMessage("TabFormat")); 056 JCheckBox formatSwitchListCheckBox = new JCheckBox(Bundle.getMessage("SameAsManifest")); 057 JCheckBox editManifestCheckBox = new JCheckBox(Bundle.getMessage("UseTextEditor")); 058 JCheckBox printLocCommentsCheckBox = new JCheckBox(Bundle.getMessage("PrintLocationComments")); 059 JCheckBox printRouteCommentsCheckBox = new JCheckBox(Bundle.getMessage("PrintRouteComments")); 060 JCheckBox printLoadsEmptiesCheckBox = new JCheckBox(Bundle.getMessage("PrintLoadsEmpties")); 061 JCheckBox printCabooseLoadCheckBox = new JCheckBox(Bundle.getMessage("PrintCabooseLoad")); 062 JCheckBox printPassengerLoadCheckBox = new JCheckBox(Bundle.getMessage("PrintPassengerLoad")); 063 JCheckBox printTrainScheduleNameCheckBox = new JCheckBox(Bundle.getMessage("PrintTrainScheduleName")); 064 JCheckBox use12hrFormatCheckBox = new JCheckBox(Bundle.getMessage("12hrFormat")); 065 JCheckBox printValidCheckBox = new JCheckBox(Bundle.getMessage("PrintValid")); 066 JCheckBox sortByTrackCheckBox = new JCheckBox(Bundle.getMessage("SortByTrack")); 067 JCheckBox printHeadersCheckBox = new JCheckBox(Bundle.getMessage("PrintHeaders")); 068 JCheckBox printPageHeaderCheckBox = new JCheckBox(Bundle.getMessage("PrintPageHeader")); 069 JCheckBox truncateCheckBox = new JCheckBox(Bundle.getMessage("Truncate")); 070 JCheckBox manifestDepartureTimeCheckBox = new JCheckBox(Bundle.getMessage("DepartureTime")); 071 JCheckBox switchListDepartureTimeCheckBox = new JCheckBox(Bundle.getMessage("DepartureTime")); 072 JCheckBox trackSummaryCheckBox = new JCheckBox(Bundle.getMessage("TrackSummary")); 073 JCheckBox routeLocationCheckBox = new JCheckBox(Bundle.getMessage("RouteLocation")); 074 JCheckBox groupCarMovesCheckBox = new JCheckBox(Bundle.getMessage("GroupCarMoves")); 075 JCheckBox printLocoLastCheckBox = new JCheckBox(Bundle.getMessage("PrintLocoLast")); 076 077 // text field 078 JTextField pickupEngPrefix = new JTextField(10); 079 JTextField dropEngPrefix = new JTextField(10); 080 JTextField pickupCarPrefix = new JTextField(10); 081 JTextField dropCarPrefix = new JTextField(10); 082 JTextField localPrefix = new JTextField(10); 083 JTextField switchListPickupCarPrefix = new JTextField(10); 084 JTextField switchListDropCarPrefix = new JTextField(10); 085 JTextField switchListLocalPrefix = new JTextField(10); 086 JTextField hazardousTextField = new JTextField(20); 087 088 // text area 089 JTextArea commentTextArea = new JTextArea(2, 90); 090 091 JScrollPane commentScroller = new JScrollPane(commentTextArea, JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED, 092 JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED); 093 094 // combo boxes 095 JComboBox<String> fontComboBox = new JComboBox<>(); 096 JComboBox<String> manifestFormatComboBox = Setup.getManifestFormatComboBox(); 097 JComboBox<String> manifestOrientationComboBox = Setup.getOrientationComboBox(); 098 JComboBox<Integer> fontSizeComboBox = new JComboBox<>(); 099 JComboBox<String> switchListOrientationComboBox = Setup.getOrientationComboBox(); 100 JComboBox<SidesType> printDuplexComboBox = new JComboBox<>(); 101 JColorChooser pickupEngineColorChooser = new JColorChooser(); 102 JColorChooser dropEngineColorChooser = new JColorChooser(); 103 JColorChooser pickupColorChooser = new JColorChooser(); 104 JColorChooser dropColorChooser = new JColorChooser(); 105 JColorChooser localColorChooser = new JColorChooser(); 106 JColorChooser missingCarColorChooser = new JColorChooser(); 107 108 // message formats 109 List<JComboBox<String>> enginePickupMessageList = new ArrayList<>(); 110 List<JComboBox<String>> engineDropMessageList = new ArrayList<>(); 111 List<JComboBox<String>> carPickupMessageList = new ArrayList<>(); 112 List<JComboBox<String>> carDropMessageList = new ArrayList<>(); 113 List<JComboBox<String>> localMessageList = new ArrayList<>(); 114 List<JComboBox<String>> switchListCarPickupMessageList = new ArrayList<>(); 115 List<JComboBox<String>> switchListCarDropMessageList = new ArrayList<>(); 116 List<JComboBox<String>> switchListLocalMessageList = new ArrayList<>(); 117 118 // manifest panels 119 JPanel pManifest = new JPanel(); 120 JPanel pEngPickup = new JPanel(); 121 JPanel pEngDrop = new JPanel(); 122 JPanel pPickup = new JPanel(); 123 JPanel pDrop = new JPanel(); 124 JPanel pLocal = new JPanel(); 125 126 // switch list panels 127 JPanel pSwitchListOrientation = new JPanel(); 128 JPanel pSwPickup = new JPanel(); 129 JPanel pSwDrop = new JPanel(); 130 JPanel pSwLocal = new JPanel(); 131 132 public PrintOptionPanel() { 133 134 // tool tips 135 saveButton.setToolTipText(Bundle.getMessage("SaveToolTip")); 136 addLogoButton.setToolTipText(Bundle.getMessage("AddLogoToolTip")); 137 removeLogoButton.setToolTipText(Bundle.getMessage("RemoveLogoToolTip")); 138 tabFormatCheckBox.setToolTipText(Bundle.getMessage("TabComment")); 139 printLocCommentsCheckBox.setToolTipText(Bundle.getMessage("AddLocationComments")); 140 printRouteCommentsCheckBox.setToolTipText(Bundle.getMessage("AddRouteComments")); 141 printLoadsEmptiesCheckBox.setToolTipText(Bundle.getMessage("LoadsEmptiesComment")); 142 printCabooseLoadCheckBox.setToolTipText(Bundle.getMessage("CabooseLoadTip")); 143 printPassengerLoadCheckBox.setToolTipText(Bundle.getMessage("PassengerLoadTip")); 144 printTrainScheduleNameCheckBox.setToolTipText(Bundle.getMessage("ShowTrainScheduleTip")); 145 use12hrFormatCheckBox.setToolTipText(Bundle.getMessage("Use12hrFormatTip")); 146 printValidCheckBox.setToolTipText(Bundle.getMessage("PrintValidTip")); 147 sortByTrackCheckBox.setToolTipText(Bundle.getMessage("SortByTrackTip")); 148 printHeadersCheckBox.setToolTipText(Bundle.getMessage("PrintHeadersTip")); 149 printPageHeaderCheckBox.setToolTipText(Bundle.getMessage("PrintPageHeaderTip")); 150 truncateCheckBox.setToolTipText(Bundle.getMessage("TruncateTip")); 151 manifestDepartureTimeCheckBox.setToolTipText(Bundle.getMessage("DepartureTimeTip")); 152 switchListDepartureTimeCheckBox.setToolTipText(Bundle.getMessage("SwitchListDepartureTimeTip")); 153 routeLocationCheckBox.setToolTipText(Bundle.getMessage("RouteLocationTip")); 154 editManifestCheckBox.setToolTipText(Bundle.getMessage("UseTextEditorTip")); 155 trackSummaryCheckBox.setToolTipText(Bundle.getMessage("TrackSummaryTip")); 156 groupCarMovesCheckBox.setToolTipText(Bundle.getMessage("GroupCarsTip")); 157 printLocoLastCheckBox.setToolTipText(Bundle.getMessage("LocoLastTip")); 158 159 addEngPickupComboboxButton.setToolTipText(Bundle.getMessage("AddMessageComboboxTip")); 160 deleteEngPickupComboboxButton.setToolTipText(Bundle.getMessage("DeleteMessageComboboxTip")); 161 addEngDropComboboxButton.setToolTipText(Bundle.getMessage("AddMessageComboboxTip")); 162 deleteEngDropComboboxButton.setToolTipText(Bundle.getMessage("DeleteMessageComboboxTip")); 163 164 addCarPickupComboboxButton.setToolTipText(Bundle.getMessage("AddMessageComboboxTip")); 165 deleteCarPickupComboboxButton.setToolTipText(Bundle.getMessage("DeleteMessageComboboxTip")); 166 addCarDropComboboxButton.setToolTipText(Bundle.getMessage("AddMessageComboboxTip")); 167 deleteCarDropComboboxButton.setToolTipText(Bundle.getMessage("DeleteMessageComboboxTip")); 168 addLocalComboboxButton.setToolTipText(Bundle.getMessage("AddMessageComboboxTip")); 169 deleteLocalComboboxButton.setToolTipText(Bundle.getMessage("DeleteMessageComboboxTip")); 170 171 addSwitchListPickupComboboxButton.setToolTipText(Bundle.getMessage("AddMessageComboboxTip")); 172 deleteSwitchListPickupComboboxButton.setToolTipText(Bundle.getMessage("DeleteMessageComboboxTip")); 173 addSwitchListDropComboboxButton.setToolTipText(Bundle.getMessage("AddMessageComboboxTip")); 174 deleteSwitchListDropComboboxButton.setToolTipText(Bundle.getMessage("DeleteMessageComboboxTip")); 175 addSwitchListLocalComboboxButton.setToolTipText(Bundle.getMessage("AddMessageComboboxTip")); 176 deleteSwitchListLocalComboboxButton.setToolTipText(Bundle.getMessage("DeleteMessageComboboxTip")); 177 178 // Manifest panel 179 setLayout(new BoxLayout(this, BoxLayout.Y_AXIS)); 180 pManifest.setLayout(new BoxLayout(pManifest, BoxLayout.Y_AXIS)); 181 JScrollPane pManifestPane = new JScrollPane(pManifest); 182 pManifestPane.setBorder(BorderFactory.createTitledBorder("")); 183 184 // row 1 font type, size, format, orientation, text colors 185 JPanel p1 = new JPanel(); 186 p1.setLayout(new BoxLayout(p1, BoxLayout.X_AXIS)); 187 188 JPanel pFont = new JPanel(); 189 pFont.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutFont"))); 190 pFont.add(fontComboBox); 191 192 JPanel pFontSize = new JPanel(); 193 pFontSize.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutFontSize"))); 194 pFontSize.add(fontSizeComboBox); 195 196 JPanel pFormat = new JPanel(); 197 pFormat.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutFormat"))); 198 pFormat.add(tabFormatCheckBox); 199 pFormat.add(manifestFormatComboBox); 200 201 JPanel pOrientation = new JPanel(); 202 pOrientation.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutOrientation"))); 203 pOrientation.add(manifestOrientationComboBox); 204 205 JPanel pDuplex = new JPanel(); 206 pDuplex.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutDuplex"))); 207 pDuplex.add(printDuplexComboBox); 208 209 printDuplexComboBox.addItem(SidesType.ONE_SIDED); 210 printDuplexComboBox.addItem(SidesType.TWO_SIDED_LONG_EDGE); 211 printDuplexComboBox.addItem(SidesType.TWO_SIDED_SHORT_EDGE); 212 213 p1.add(pFont); 214 p1.add(pFontSize); 215 p1.add(pFormat); 216 p1.add(pOrientation); 217 p1.add(pDuplex); 218 219 JPanel pColor = new JPanel(); 220 pColor.setLayout(new BoxLayout(pColor, BoxLayout.X_AXIS)); 221 pColor.add( 222 getColorChooserPanel(Bundle.getMessage("BorderLayoutPickupEngineColor"), Setup.getPickupEngineColor(), 223 pickupEngineColorChooser)); 224 pColor.add(getColorChooserPanel(Bundle.getMessage("BorderLayoutDropEngineColor"), Setup.getDropEngineColor(), 225 dropEngineColorChooser)); 226 pColor.add(getColorChooserPanel(Bundle.getMessage("BorderLayoutPickupColor"), Setup.getPickupColor(), 227 pickupColorChooser)); 228 pColor.add(getColorChooserPanel(Bundle.getMessage("BorderLayoutDropColor"), Setup.getDropColor(), 229 dropColorChooser)); 230 pColor.add(getColorChooserPanel(Bundle.getMessage("BorderLayoutLocalColor"), Setup.getLocalColor(), 231 localColorChooser)); 232 233 // load all of the message combo boxes, rows 2 through 5 234 loadFormatComboBox(); 235 236 // Optional Switch List Panel 237 JPanel pSl = new JPanel(); 238 pSl.setLayout(new BoxLayout(pSl, BoxLayout.X_AXIS)); 239 240 JPanel pSwitchFormat = new JPanel(); 241 pSwitchFormat.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutSwitchListFormat"))); 242 pSwitchFormat.add(formatSwitchListCheckBox); 243 244 pSwitchListOrientation 245 .setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutSwitchListOrientation"))); 246 pSwitchListOrientation.add(switchListOrientationComboBox); 247 248 pSl.add(pSwitchFormat); 249 pSl.add(pSwitchListOrientation); 250 251 JPanel pM = new JPanel(); 252 pM.setLayout(new BoxLayout(pM, BoxLayout.X_AXIS)); 253 254 // Switch List options 255 JPanel pSwitchOptions = new JPanel(); 256 pSwitchOptions.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutSwitchListOptions"))); 257 pSwitchOptions.add(trackSummaryCheckBox); 258 pSwitchOptions.add(routeLocationCheckBox); 259 pSwitchOptions.add(switchListDepartureTimeCheckBox); 260 261 // Manifest options 262 JPanel pManifestOptions = new JPanel(); 263 pManifestOptions.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutManifestOptions"))); 264 pManifestOptions.add(printLocCommentsCheckBox); 265 pManifestOptions.add(printRouteCommentsCheckBox); 266 pManifestOptions.add(manifestDepartureTimeCheckBox); 267 pManifestOptions.add(truncateCheckBox); 268 269 pM.add(pSwitchOptions); 270 pM.add(pManifestOptions); 271 272 // Manifest and Switch List options 273 JPanel pManifestSwtichListOptions = new JPanel(); 274 pManifestSwtichListOptions.setLayout(new GridBagLayout()); 275 pManifestSwtichListOptions.setBorder( 276 BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutManifestSwitchListOptions"))); 277 addItemLeft(pManifestSwtichListOptions, printValidCheckBox, 0, 0); 278 addItemLeft(pManifestSwtichListOptions, printLoadsEmptiesCheckBox, 1, 0); 279 addItemLeft(pManifestSwtichListOptions, groupCarMovesCheckBox, 2, 0); 280 addItemLeft(pManifestSwtichListOptions, printLocoLastCheckBox, 3, 0); 281 addItemLeft(pManifestSwtichListOptions, printCabooseLoadCheckBox, 4, 0); 282 addItemLeft(pManifestSwtichListOptions, printPassengerLoadCheckBox, 5, 0); 283 284 addItemLeft(pManifestSwtichListOptions, use12hrFormatCheckBox, 0, 1); 285 addItemLeft(pManifestSwtichListOptions, printTrainScheduleNameCheckBox, 1, 1); 286 addItemLeft(pManifestSwtichListOptions, sortByTrackCheckBox, 2, 1); 287 addItemLeft(pManifestSwtichListOptions, printHeadersCheckBox, 3, 1); 288 addItemLeft(pManifestSwtichListOptions, printPageHeaderCheckBox, 4, 1); 289 290 JPanel p2 = new JPanel(); 291 p2.setLayout(new BoxLayout(p2, BoxLayout.X_AXIS)); 292 293 // Use text editor for manifest 294 JPanel pEdit = new JPanel(); 295 pEdit.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutManifestPreview"))); 296 pEdit.add(editManifestCheckBox); 297 298 // manifest logo 299 JPanel pLogo = new JPanel(); 300 pLogo.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutLogo"))); 301 pLogo.add(removeLogoButton); 302 pLogo.add(addLogoButton); 303 pLogo.add(logoURL); 304 305 // Hazardous comment 306 JPanel pHazardous = new JPanel(); 307 pHazardous.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutHazardous"))); 308 pHazardous.add(hazardousTextField); 309 310 p2.add(pEdit); 311 p2.add(pLogo); 312 p2.add(pHazardous); 313 314 // missing cars comment 315 JPanel pCommentMia = new JPanel(); 316 pCommentMia.setLayout(new GridBagLayout()); 317 pCommentMia.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutCommentOptions"))); 318 addItem(pCommentMia, commentScroller, 0, 0); 319 addItem(pCommentMia, getColorChooserPanel(Setup.getMiaComment(), missingCarColorChooser), 2, 0); 320 321 pManifest.add(p1); 322 pManifest.add(pColor); 323 pManifest.add(pEngPickup); 324 pManifest.add(pEngDrop); 325 pManifest.add(pPickup); 326 pManifest.add(pDrop); 327 pManifest.add(pLocal); 328 pManifest.add(pSl); 329 pManifest.add(pSwPickup); 330 pManifest.add(pSwDrop); 331 pManifest.add(pSwLocal); 332 pManifest.add(pM); 333 pManifest.add(pManifestSwtichListOptions); 334 pManifest.add(p2); 335 pManifest.add(pCommentMia); 336 337 // row 11 338 JPanel pControl = new JPanel(); 339 pControl.setBorder(BorderFactory.createTitledBorder("")); 340 pControl.setLayout(new GridBagLayout()); 341 addItem(pControl, saveButton, 0, 0); 342 343 add(pManifestPane); 344 add(pControl); 345 346 manifestFormatComboBox.setSelectedItem(Setup.getManifestFormat()); 347 manifestOrientationComboBox.setSelectedItem(Setup.getManifestOrientation()); 348 switchListOrientationComboBox.setSelectedItem(Setup.getSwitchListOrientation()); 349 350 tabFormatCheckBox.setSelected(Setup.isTabEnabled()); 351 printDuplexComboBox.setSelectedItem(Setup.getPrintDuplexSides()); 352 353 formatSwitchListCheckBox.setSelected(Setup.isSwitchListFormatSameAsManifest()); 354 printLocCommentsCheckBox.setSelected(Setup.isPrintLocationCommentsEnabled()); 355 printRouteCommentsCheckBox.setSelected(Setup.isPrintRouteCommentsEnabled()); 356 printLoadsEmptiesCheckBox.setSelected(Setup.isPrintLoadsAndEmptiesEnabled()); 357 printCabooseLoadCheckBox.setSelected(Setup.isPrintCabooseLoadEnabled()); 358 printPassengerLoadCheckBox.setSelected(Setup.isPrintPassengerLoadEnabled()); 359 printTrainScheduleNameCheckBox.setSelected(Setup.isPrintTrainScheduleNameEnabled()); 360 use12hrFormatCheckBox.setSelected(Setup.is12hrFormatEnabled()); 361 printValidCheckBox.setSelected(Setup.isPrintValidEnabled()); 362 sortByTrackCheckBox.setSelected(Setup.isSortByTrackNameEnabled()); 363 printPageHeaderCheckBox.setSelected(Setup.isPrintPageHeaderEnabled()); 364 printHeadersCheckBox.setSelected(Setup.isPrintHeadersEnabled()); 365 truncateCheckBox.setSelected(Setup.isPrintTruncateManifestEnabled()); 366 manifestDepartureTimeCheckBox.setSelected(Setup.isUseDepartureTimeEnabled()); 367 trackSummaryCheckBox.setSelected(Setup.isPrintTrackSummaryEnabled()); 368 trackSummaryCheckBox.setEnabled(Setup.isSwitchListRealTime()); 369 routeLocationCheckBox.setSelected(Setup.isSwitchListRouteLocationCommentEnabled()); 370 switchListDepartureTimeCheckBox.setSelected(Setup.isUseSwitchListDepartureTimeEnabled()); 371 editManifestCheckBox.setSelected(Setup.isManifestEditorEnabled()); 372 groupCarMovesCheckBox.setSelected(Setup.isGroupCarMovesEnabled()); 373 printLocoLastCheckBox.setSelected(Setup.isPrintLocoLastEnabled()); 374 375 commentTextArea.setText(TrainCommon.getTextColorString(Setup.getMiaComment())); 376 hazardousTextField.setText(Setup.getHazardousMsg()); 377 378 setSwitchListVisible(!formatSwitchListCheckBox.isSelected()); 379 380 updateLogoButtons(); 381 382 loadFontSizeComboBox(); 383 loadFontComboBox(); 384 385 // setup buttons 386 addButtonAction(addLogoButton); 387 addButtonAction(removeLogoButton); 388 addButtonAction(saveButton); 389 390 addButtonAction(addEngPickupComboboxButton); 391 addButtonAction(deleteEngPickupComboboxButton); 392 addButtonAction(addEngDropComboboxButton); 393 addButtonAction(deleteEngDropComboboxButton); 394 395 addButtonAction(addCarPickupComboboxButton); 396 addButtonAction(deleteCarPickupComboboxButton); 397 addButtonAction(addCarDropComboboxButton); 398 addButtonAction(deleteCarDropComboboxButton); 399 addButtonAction(addLocalComboboxButton); 400 addButtonAction(deleteLocalComboboxButton); 401 402 addButtonAction(addSwitchListPickupComboboxButton); 403 addButtonAction(deleteSwitchListPickupComboboxButton); 404 addButtonAction(addSwitchListDropComboboxButton); 405 addButtonAction(deleteSwitchListDropComboboxButton); 406 addButtonAction(addSwitchListLocalComboboxButton); 407 addButtonAction(deleteSwitchListLocalComboboxButton); 408 409 addCheckBoxAction(tabFormatCheckBox); 410 addCheckBoxAction(formatSwitchListCheckBox); 411 addCheckBoxAction(truncateCheckBox); 412 413 addComboBoxAction(manifestFormatComboBox); 414 415 Setup.getDefault().addPropertyChangeListener(this); 416 } 417 418 // Add Remove Logo and Save buttons 419 @Override 420 public void buttonActionPerformed(java.awt.event.ActionEvent ae) { 421 if (ae.getSource() == addLogoButton) { 422 log.debug("add logo button pressed"); 423 File f = selectFile(); 424 if (f != null) { 425 Setup.setManifestLogoURL(FileUtil.getPortableFilename(f)); 426 } 427 updateLogoButtons(); 428 } 429 if (ae.getSource() == removeLogoButton) { 430 log.debug("remove logo button pressed"); 431 Setup.setManifestLogoURL(""); 432 updateLogoButtons(); 433 } 434 // add or delete message comboBox 435 if (ae.getSource() == addEngPickupComboboxButton) { 436 addComboBox(pEngPickup, enginePickupMessageList, Setup.getEngineMessageComboBox()); 437 } 438 if (ae.getSource() == deleteEngPickupComboboxButton) { 439 removeComboBox(pEngPickup, enginePickupMessageList); 440 } 441 if (ae.getSource() == addEngDropComboboxButton) { 442 addComboBox(pEngDrop, engineDropMessageList, Setup.getEngineMessageComboBox()); 443 } 444 if (ae.getSource() == deleteEngDropComboboxButton) { 445 removeComboBox(pEngDrop, engineDropMessageList); 446 } 447 448 if (ae.getSource() == addCarPickupComboboxButton) { 449 addComboBox(pPickup, carPickupMessageList, Setup.getCarMessageComboBox()); 450 } 451 if (ae.getSource() == deleteCarPickupComboboxButton) { 452 removeComboBox(pPickup, carPickupMessageList); 453 } 454 if (ae.getSource() == addCarDropComboboxButton) { 455 addComboBox(pDrop, carDropMessageList, Setup.getCarMessageComboBox()); 456 } 457 if (ae.getSource() == deleteCarDropComboboxButton) { 458 removeComboBox(pDrop, carDropMessageList); 459 } 460 461 if (ae.getSource() == addLocalComboboxButton) { 462 addComboBox(pLocal, localMessageList, Setup.getCarMessageComboBox()); 463 } 464 if (ae.getSource() == deleteLocalComboboxButton) { 465 removeComboBox(pLocal, localMessageList); 466 } 467 468 if (ae.getSource() == addSwitchListPickupComboboxButton) { 469 addComboBox(pSwPickup, switchListCarPickupMessageList, Setup.getCarMessageComboBox()); 470 } 471 if (ae.getSource() == deleteSwitchListPickupComboboxButton) { 472 removeComboBox(pSwPickup, switchListCarPickupMessageList); 473 } 474 if (ae.getSource() == addSwitchListDropComboboxButton) { 475 addComboBox(pSwDrop, switchListCarDropMessageList, Setup.getCarMessageComboBox()); 476 } 477 if (ae.getSource() == deleteSwitchListDropComboboxButton) { 478 removeComboBox(pSwDrop, switchListCarDropMessageList); 479 } 480 481 if (ae.getSource() == addSwitchListLocalComboboxButton) { 482 addComboBox(pSwLocal, switchListLocalMessageList, Setup.getCarMessageComboBox()); 483 } 484 if (ae.getSource() == deleteSwitchListLocalComboboxButton) { 485 removeComboBox(pSwLocal, switchListLocalMessageList); 486 } 487 488 if (ae.getSource() == saveButton) { 489 this.savePreferences(); 490 var topLevelAncestor = getTopLevelAncestor(); 491 if (Setup.isCloseWindowOnSaveEnabled() && topLevelAncestor instanceof PrintOptionFrame) { 492 ((PrintOptionFrame) topLevelAncestor).dispose(); 493 } 494 } 495 } 496 497 @Override 498 public void checkBoxActionPerformed(ActionEvent ae) { 499 if (ae.getSource() == tabFormatCheckBox) { 500 loadFontComboBox(); 501 } 502 if (ae.getSource() == formatSwitchListCheckBox) { 503 log.debug("Switch list check box activated"); 504 setSwitchListVisible(!formatSwitchListCheckBox.isSelected()); 505 setPreferredSize(null); 506 var topLevelAncestor = getTopLevelAncestor(); 507 if (topLevelAncestor instanceof PrintOptionFrame) { 508 ((PrintOptionFrame) topLevelAncestor).pack(); 509 } 510 } 511 if (ae.getSource() == truncateCheckBox && truncateCheckBox.isSelected()) { 512 if (JmriJOptionPane.showConfirmDialog(this, Bundle.getMessage("EnableTruncateWarning"), 513 Bundle.getMessage("TruncateManifests?"), 514 JmriJOptionPane.YES_NO_OPTION) == JmriJOptionPane.NO_OPTION) { 515 truncateCheckBox.setSelected(false); 516 } 517 } 518 } 519 520 @Override 521 public void comboBoxActionPerformed(ActionEvent ae) { 522 if (ae.getSource() == manifestFormatComboBox) { 523 loadFontComboBox(); 524 } 525 } 526 527 private void setSwitchListVisible(boolean b) { 528 pSwitchListOrientation.setVisible(b); 529 pSwPickup.setVisible(b); 530 pSwDrop.setVisible(b); 531 pSwLocal.setVisible(b); 532 } 533 534 /** 535 * We always use the same file chooser in this class, so that the user's 536 * last-accessed directory remains available. 537 */ 538 JFileChooser fc = jmri.jmrit.XmlFile.userFileChooser(Bundle.getMessage("Images")); 539 540 private File selectFile() { 541 if (fc == null) { 542 log.error("Could not find user directory"); 543 } else { 544 fc.setDialogTitle(Bundle.getMessage("FindDesiredImage")); 545 // when reusing the chooser, make sure new files are included 546 fc.rescanCurrentDirectory(); 547 int retVal = fc.showOpenDialog(null); 548 // handle selection or cancel 549 if (retVal == JFileChooser.APPROVE_OPTION) { 550 return fc.getSelectedFile(); 551 } 552 } 553 return null; 554 } 555 556 private void updateLogoButtons() { 557 boolean flag = Setup.getManifestLogoURL().equals(Setup.NONE); 558 addLogoButton.setVisible(flag); 559 removeLogoButton.setVisible(!flag); 560 logoURL.setText(Setup.getManifestLogoURL()); 561 var topLevelAncestor = getTopLevelAncestor(); 562 if (topLevelAncestor instanceof PrintOptionFrame) { 563 ((PrintOptionFrame) topLevelAncestor).pack(); 564 } 565 } 566 567 private void addComboBox(JPanel panel, List<JComboBox<String>> list, JComboBox<String> box) { 568 list.add(box); 569 panel.add(box, list.size()); 570 panel.revalidate(); 571 pManifest.revalidate(); 572 } 573 574 private void removeComboBox(JPanel panel, List<JComboBox<String>> list) { 575 for (int i = 0; i < list.size(); i++) { 576 JComboBox<String> cb = list.get(i); 577 if (cb.getSelectedItem().equals(Setup.BLANK)) { 578 list.remove(i); 579 panel.remove(cb); 580 panel.revalidate(); 581 pManifest.revalidate(); 582 return; 583 } 584 } 585 } 586 587 private void loadFormatComboBox() { 588 // loco pick up message format 589 pEngPickup.removeAll(); 590 enginePickupMessageList.clear(); 591 pEngPickup.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutPickupEngine"))); 592 pEngPickup.add(pickupEngPrefix); 593 pickupEngPrefix.setText(Setup.getPickupEnginePrefix()); 594 String[] format = Setup.getPickupEngineMessageFormat(); 595 for (String f : format) { 596 JComboBox<String> cb = Setup.getEngineMessageComboBox(); 597 cb.setSelectedItem(f); 598 pEngPickup.add(cb); 599 enginePickupMessageList.add(cb); 600 } 601 pEngPickup.add(addEngPickupComboboxButton); 602 pEngPickup.add(deleteEngPickupComboboxButton); 603 pEngPickup.revalidate(); 604 605 // loco set out message format 606 pEngDrop.removeAll(); 607 engineDropMessageList.clear(); 608 pEngDrop.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutDropEngine"))); 609 pEngDrop.add(dropEngPrefix); 610 dropEngPrefix.setText(Setup.getDropEnginePrefix()); 611 format = Setup.getDropEngineMessageFormat(); 612 for (String f : format) { 613 JComboBox<String> cb = Setup.getEngineMessageComboBox(); 614 cb.setSelectedItem(f); 615 pEngDrop.add(cb); 616 engineDropMessageList.add(cb); 617 } 618 pEngDrop.add(addEngDropComboboxButton); 619 pEngDrop.add(deleteEngDropComboboxButton); 620 pEngDrop.revalidate(); 621 622 // car pickup message format 623 pPickup.removeAll(); 624 carPickupMessageList.clear(); 625 pPickup.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutPickupCar"))); 626 pPickup.add(pickupCarPrefix); 627 pickupCarPrefix.setText(Setup.getPickupCarPrefix()); 628 String[] pickFormat = Setup.getPickupManifestMessageFormat(); 629 for (String pf : pickFormat) { 630 JComboBox<String> cb = Setup.getCarMessageComboBox(); 631 cb.setSelectedItem(pf); 632 pPickup.add(cb); 633 carPickupMessageList.add(cb); 634 } 635 pPickup.add(addCarPickupComboboxButton); 636 pPickup.add(deleteCarPickupComboboxButton); 637 pPickup.revalidate(); 638 639 // car drop message format 640 pDrop.removeAll(); 641 carDropMessageList.clear(); 642 pDrop.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutDropCar"))); 643 pDrop.add(dropCarPrefix); 644 dropCarPrefix.setText(Setup.getDropCarPrefix()); 645 String[] dropFormat = Setup.getDropManifestMessageFormat(); 646 for (String lf : dropFormat) { 647 JComboBox<String> cb = Setup.getCarMessageComboBox(); 648 cb.setSelectedItem(lf); 649 pDrop.add(cb); 650 carDropMessageList.add(cb); 651 } 652 pDrop.add(addCarDropComboboxButton); 653 pDrop.add(deleteCarDropComboboxButton); 654 pDrop.revalidate(); 655 656 // local car move message format 657 pLocal.removeAll(); 658 localMessageList.clear(); 659 pLocal.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutLocal"))); 660 pLocal.add(localPrefix); 661 localPrefix.setText(Setup.getLocalPrefix()); 662 String[] localFormat = Setup.getLocalManifestMessageFormat(); 663 for (String lf : localFormat) { 664 JComboBox<String> cb = Setup.getCarMessageComboBox(); 665 cb.setSelectedItem(lf); 666 pLocal.add(cb); 667 localMessageList.add(cb); 668 } 669 pLocal.add(addLocalComboboxButton); 670 pLocal.add(deleteLocalComboboxButton); 671 pLocal.revalidate(); 672 673 // switch list car pickup message format 674 pSwPickup.removeAll(); 675 switchListCarPickupMessageList.clear(); 676 pSwPickup.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutSwitchListPickupCar"))); 677 pSwPickup.add(switchListPickupCarPrefix); 678 switchListPickupCarPrefix.setText(Setup.getSwitchListPickupCarPrefix()); 679 pickFormat = Setup.getPickupSwitchListMessageFormat(); 680 for (String pf : pickFormat) { 681 JComboBox<String> cb = Setup.getCarMessageComboBox(); 682 cb.setSelectedItem(pf); 683 pSwPickup.add(cb); 684 switchListCarPickupMessageList.add(cb); 685 } 686 pSwPickup.add(addSwitchListPickupComboboxButton); 687 pSwPickup.add(deleteSwitchListPickupComboboxButton); 688 689 // switch list car drop message format 690 pSwDrop.removeAll(); 691 switchListCarDropMessageList.clear(); 692 pSwDrop.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutSwitchListDropCar"))); 693 pSwDrop.add(switchListDropCarPrefix); 694 switchListDropCarPrefix.setText(Setup.getSwitchListDropCarPrefix()); 695 dropFormat = Setup.getDropSwitchListMessageFormat(); 696 for (String df : dropFormat) { 697 JComboBox<String> cb = Setup.getCarMessageComboBox(); 698 cb.setSelectedItem(df); 699 pSwDrop.add(cb); 700 switchListCarDropMessageList.add(cb); 701 } 702 pSwDrop.add(addSwitchListDropComboboxButton); 703 pSwDrop.add(deleteSwitchListDropComboboxButton); 704 705 // switch list local car move message format 706 pSwLocal.removeAll(); 707 switchListLocalMessageList.clear(); 708 pSwLocal.setBorder(BorderFactory.createTitledBorder(Bundle.getMessage("BorderLayoutSwitchListLocal"))); 709 pSwLocal.add(switchListLocalPrefix); 710 switchListLocalPrefix.setText(Setup.getSwitchListLocalPrefix()); 711 localFormat = Setup.getLocalSwitchListMessageFormat(); 712 for (String lf : localFormat) { 713 JComboBox<String> cb = Setup.getCarMessageComboBox(); 714 cb.setSelectedItem(lf); 715 pSwLocal.add(cb); 716 switchListLocalMessageList.add(cb); 717 } 718 pSwLocal.add(addSwitchListLocalComboboxButton); 719 pSwLocal.add(deleteSwitchListLocalComboboxButton); 720 } 721 722 private void loadFontSizeComboBox() { 723 loadFontSizeComboBox(fontSizeComboBox); 724 fontSizeComboBox.setSelectedItem(Setup.getManifestFontSize()); 725 } 726 727 private void loadFontComboBox() { 728 fontComboBox.removeAllItems(); 729 List<String> fonts = FontComboUtil.getFonts(FontComboUtil.ALL); 730 if (tabFormatCheckBox.isSelected() || !manifestFormatComboBox.getSelectedItem().equals(Setup.STANDARD_FORMAT)) { 731 fonts = FontComboUtil.getFonts(FontComboUtil.MONOSPACED); 732 } 733 for (String font : fonts) { 734 fontComboBox.addItem(font); 735 } 736 fontComboBox.setSelectedItem(Setup.getFontName()); 737 } 738 739 @Override 740 public String getTabbedPreferencesTitle() { 741 return Bundle.getMessage("TitlePrintOptions"); 742 } 743 744 @Override 745 public String getPreferencesTooltip() { 746 return null; 747 } 748 749 @Override 750 public void savePreferences() { 751 // font name 752 Setup.setFontName((String) fontComboBox.getSelectedItem()); 753 // font size 754 Setup.setManifestFontSize((Integer) fontSizeComboBox.getSelectedItem()); 755 // page orientation 756 Setup.setManifestOrientation((String) manifestOrientationComboBox.getSelectedItem()); 757 Setup.setSwitchListOrientation((String) switchListOrientationComboBox.getSelectedItem()); 758 Setup.setPrintDuplexSides((SidesType) printDuplexComboBox.getSelectedItem()); 759 // format 760 Setup.setManifestFormat((String) manifestFormatComboBox.getSelectedItem()); 761 // drop and pick up color option 762 Setup.setDropEngineColor(dropEngineColorChooser.getColor()); 763 Setup.setPickupEngineColor(pickupEngineColorChooser.getColor()); 764 Setup.setDropColor(dropColorChooser.getColor()); 765 Setup.setPickupColor(pickupColorChooser.getColor()); 766 Setup.setLocalColor(localColorChooser.getColor()); 767 // save engine pick up message format 768 Setup.setPickupEnginePrefix(pickupEngPrefix.getText()); 769 String[] format = new String[enginePickupMessageList.size()]; 770 for (int i = 0; i < enginePickupMessageList.size(); i++) { 771 JComboBox<?> cb = enginePickupMessageList.get(i); 772 format[i] = (String) cb.getSelectedItem(); 773 } 774 Setup.setPickupEngineMessageFormat(format); 775 // save engine drop message format 776 Setup.setDropEnginePrefix(dropEngPrefix.getText()); 777 format = new String[engineDropMessageList.size()]; 778 for (int i = 0; i < engineDropMessageList.size(); i++) { 779 JComboBox<?> cb = engineDropMessageList.get(i); 780 format[i] = (String) cb.getSelectedItem(); 781 } 782 Setup.setDropEngineMessageFormat(format); 783 // save car pick up message format 784 Setup.setPickupCarPrefix(pickupCarPrefix.getText()); 785 format = new String[carPickupMessageList.size()]; 786 for (int i = 0; i < carPickupMessageList.size(); i++) { 787 JComboBox<?> cb = carPickupMessageList.get(i); 788 format[i] = (String) cb.getSelectedItem(); 789 } 790 Setup.setPickupManifestMessageFormat(format); 791 // save car drop message format 792 Setup.setDropCarPrefix(dropCarPrefix.getText()); 793 format = new String[carDropMessageList.size()]; 794 for (int i = 0; i < carDropMessageList.size(); i++) { 795 JComboBox<?> cb = carDropMessageList.get(i); 796 format[i] = (String) cb.getSelectedItem(); 797 } 798 Setup.setDropManifestMessageFormat(format); 799 // save local message format 800 Setup.setLocalPrefix(localPrefix.getText()); 801 format = new String[localMessageList.size()]; 802 for (int i = 0; i < localMessageList.size(); i++) { 803 JComboBox<?> cb = localMessageList.get(i); 804 format[i] = (String) cb.getSelectedItem(); 805 } 806 Setup.setLocalManifestMessageFormat(format); 807 // save switch list car pick up message format 808 Setup.setSwitchListPickupCarPrefix(switchListPickupCarPrefix.getText()); 809 format = new String[switchListCarPickupMessageList.size()]; 810 for (int i = 0; i < switchListCarPickupMessageList.size(); i++) { 811 JComboBox<?> cb = switchListCarPickupMessageList.get(i); 812 format[i] = (String) cb.getSelectedItem(); 813 } 814 Setup.setPickupSwitchListMessageFormat(format); 815 // save switch list car drop message format 816 Setup.setSwitchListDropCarPrefix(switchListDropCarPrefix.getText()); 817 format = new String[switchListCarDropMessageList.size()]; 818 for (int i = 0; i < switchListCarDropMessageList.size(); i++) { 819 JComboBox<?> cb = switchListCarDropMessageList.get(i); 820 format[i] = (String) cb.getSelectedItem(); 821 } 822 Setup.setDropSwitchListMessageFormat(format); 823 // save switch list local message format 824 Setup.setSwitchListLocalPrefix(switchListLocalPrefix.getText()); 825 format = new String[switchListLocalMessageList.size()]; 826 for (int i = 0; i < switchListLocalMessageList.size(); i++) { 827 JComboBox<?> cb = switchListLocalMessageList.get(i); 828 format[i] = (String) cb.getSelectedItem(); 829 } 830 Setup.setLocalSwitchListMessageFormat(format); 831 // hazardous comment 832 Setup.setHazardousMsg(hazardousTextField.getText()); 833 // misplaced car comment 834 Setup.setMiaComment( 835 TrainCommon.formatColorString(commentTextArea.getText(), missingCarColorChooser.getColor())); 836 Setup.setSwitchListFormatSameAsManifest(formatSwitchListCheckBox.isSelected()); 837 Setup.setPrintLocationCommentsEnabled(printLocCommentsCheckBox.isSelected()); 838 Setup.setPrintRouteCommentsEnabled(printRouteCommentsCheckBox.isSelected()); 839 Setup.setPrintLoadsAndEmptiesEnabled(printLoadsEmptiesCheckBox.isSelected()); 840 Setup.setPrintCabooseLoadEnabled(printCabooseLoadCheckBox.isSelected()); 841 Setup.setPrintPassengerLoadEnabled(printPassengerLoadCheckBox.isSelected()); 842 Setup.set12hrFormatEnabled(use12hrFormatCheckBox.isSelected()); 843 Setup.setPrintValidEnabled(printValidCheckBox.isSelected()); 844 Setup.setSortByTrackNameEnabled(sortByTrackCheckBox.isSelected()); 845 Setup.setPrintPageHeaderEnabled(printPageHeaderCheckBox.isSelected()); 846 Setup.setPrintHeadersEnabled(printHeadersCheckBox.isSelected()); 847 Setup.setPrintTrainScheduleNameEnabled(printTrainScheduleNameCheckBox.isSelected()); 848 Setup.setPrintTruncateManifestEnabled(truncateCheckBox.isSelected()); 849 Setup.setUseDepartureTimeEnabled(manifestDepartureTimeCheckBox.isSelected()); 850 Setup.setManifestEditorEnabled(editManifestCheckBox.isSelected()); 851 Setup.setPrintTrackSummaryEnabled(trackSummaryCheckBox.isSelected()); 852 Setup.setUseSwitchListDepartureTimeEnabled(switchListDepartureTimeCheckBox.isSelected()); 853 Setup.setSwitchListRouteLocationCommentEnabled(routeLocationCheckBox.isSelected()); 854 Setup.setGroupCarMoves(groupCarMovesCheckBox.isSelected()); 855 Setup.setPrintLocoLast(printLocoLastCheckBox.isSelected()); 856 857 // reload combo boxes if tab changed 858 boolean oldTabEnabled = Setup.isTabEnabled(); 859 Setup.setTabEnabled(tabFormatCheckBox.isSelected()); 860 if (oldTabEnabled ^ Setup.isTabEnabled()) { 861 loadFormatComboBox(); 862 } 863 864 // recreate all train manifests 865 InstanceManager.getDefault(TrainManager.class).setTrainsModified(); 866 867 InstanceManager.getDefault(OperationsSetupXml.class).writeOperationsFile(); 868 } 869 870 @Override 871 public boolean isDirty() { 872 if (!Setup.getFontName().equals(fontComboBox.getSelectedItem()) || 873 Setup.getManifestFontSize() != (Integer) fontSizeComboBox.getSelectedItem() || 874 Setup.getPrintDuplexSides() != printDuplexComboBox.getSelectedItem() || 875 !Setup.getManifestOrientation().equals(manifestOrientationComboBox.getSelectedItem()) || 876 !Setup.getSwitchListOrientation().equals(switchListOrientationComboBox.getSelectedItem()) || 877 !Setup.getManifestFormat().equals(manifestFormatComboBox.getSelectedItem()) || 878 !Setup.getDropEngineColor().equals(dropEngineColorChooser.getColor()) || 879 !Setup.getPickupEngineColor().equals(pickupEngineColorChooser.getColor()) || 880 !Setup.getDropColor().equals(dropColorChooser.getColor()) || 881 !Setup.getPickupColor().equals(pickupColorChooser.getColor()) || 882 !Setup.getLocalColor().equals(localColorChooser.getColor()) || 883 !Setup.getHazardousMsg().equals(hazardousTextField.getText()) || 884 !Setup.getMiaComment().equals( 885 TrainCommon.formatColorString(commentTextArea.getText(), missingCarColorChooser.getColor())) || 886 Setup.isSwitchListFormatSameAsManifest() != formatSwitchListCheckBox.isSelected() || 887 Setup.isPrintLocationCommentsEnabled() != printLocCommentsCheckBox.isSelected() || 888 Setup.isPrintRouteCommentsEnabled() != printRouteCommentsCheckBox.isSelected() || 889 Setup.isPrintLoadsAndEmptiesEnabled() != printLoadsEmptiesCheckBox.isSelected() || 890 Setup.isPrintCabooseLoadEnabled() != printCabooseLoadCheckBox.isSelected() || 891 Setup.isPrintPassengerLoadEnabled() != printPassengerLoadCheckBox.isSelected() || 892 Setup.is12hrFormatEnabled() != use12hrFormatCheckBox.isSelected() || 893 Setup.isPrintValidEnabled() != printValidCheckBox.isSelected() || 894 Setup.isSortByTrackNameEnabled() != sortByTrackCheckBox.isSelected() || 895 Setup.isPrintHeadersEnabled() != printHeadersCheckBox.isSelected() || 896 Setup.isPrintPageHeaderEnabled() != printPageHeaderCheckBox.isSelected() || 897 Setup.isPrintTrainScheduleNameEnabled() != printTrainScheduleNameCheckBox.isSelected() || 898 Setup.isPrintTruncateManifestEnabled() != truncateCheckBox.isSelected() || 899 Setup.isUseDepartureTimeEnabled() != manifestDepartureTimeCheckBox.isSelected() || 900 Setup.isManifestEditorEnabled() != editManifestCheckBox.isSelected() || 901 Setup.isSwitchListRouteLocationCommentEnabled() != routeLocationCheckBox.isSelected() || 902 Setup.isPrintTrackSummaryEnabled() != trackSummaryCheckBox.isSelected() || 903 Setup.isUseSwitchListDepartureTimeEnabled() != switchListDepartureTimeCheckBox.isSelected() || 904 Setup.isGroupCarMovesEnabled() != groupCarMovesCheckBox.isSelected() || 905 Setup.isPrintLocoLastEnabled() != printLocoLastCheckBox.isSelected() || 906 Setup.isTabEnabled() != tabFormatCheckBox.isSelected()) { 907 return true; 908 } 909 // engine pick up message format 910 String[] format = new String[enginePickupMessageList.size()]; 911 for (int i = 0; i < enginePickupMessageList.size(); i++) { 912 JComboBox<?> cb = enginePickupMessageList.get(i); 913 format[i] = (String) cb.getSelectedItem(); 914 } 915 if (!Setup.getPickupEnginePrefix().equals(pickupEngPrefix.getText()) || 916 !Arrays.equals(Setup.getPickupEngineMessageFormat(), format)) { 917 return true; 918 } 919 // engine drop message format 920 format = new String[engineDropMessageList.size()]; 921 for (int i = 0; i < engineDropMessageList.size(); i++) { 922 JComboBox<?> cb = engineDropMessageList.get(i); 923 format[i] = (String) cb.getSelectedItem(); 924 } 925 if (!Setup.getDropEnginePrefix().equals(dropEngPrefix.getText()) || 926 !Arrays.equals(Setup.getDropEngineMessageFormat(), format)) { 927 return true; 928 } 929 // car pick up message format 930 format = new String[carPickupMessageList.size()]; 931 for (int i = 0; i < carPickupMessageList.size(); i++) { 932 JComboBox<?> cb = carPickupMessageList.get(i); 933 format[i] = (String) cb.getSelectedItem(); 934 } 935 if (!Setup.getPickupCarPrefix().equals(this.pickupCarPrefix.getText()) || 936 !Arrays.equals(Setup.getPickupManifestMessageFormat(), format)) { 937 return true; 938 } 939 // car drop message format 940 format = new String[carDropMessageList.size()]; 941 for (int i = 0; i < carDropMessageList.size(); i++) { 942 JComboBox<?> cb = carDropMessageList.get(i); 943 format[i] = (String) cb.getSelectedItem(); 944 } 945 if (!Setup.getDropCarPrefix().equals(this.dropCarPrefix.getText()) || 946 !Arrays.equals(Setup.getDropManifestMessageFormat(), format)) { 947 return true; 948 } 949 // local message format 950 format = new String[localMessageList.size()]; 951 for (int i = 0; i < localMessageList.size(); i++) { 952 JComboBox<?> cb = localMessageList.get(i); 953 format[i] = (String) cb.getSelectedItem(); 954 } 955 if (!Setup.getLocalPrefix().equals(this.localPrefix.getText()) || 956 !Arrays.equals(Setup.getLocalManifestMessageFormat(), format)) { 957 return true; 958 } 959 // switch list car pick up message format 960 format = new String[switchListCarPickupMessageList.size()]; 961 for (int i = 0; i < switchListCarPickupMessageList.size(); i++) { 962 JComboBox<?> cb = switchListCarPickupMessageList.get(i); 963 format[i] = (String) cb.getSelectedItem(); 964 } 965 if (!Setup.getSwitchListPickupCarPrefix().equals(this.switchListPickupCarPrefix.getText()) || 966 !Arrays.equals(Setup.getPickupSwitchListMessageFormat(), format)) { 967 return true; 968 } 969 // switch list car drop message format 970 format = new String[switchListCarDropMessageList.size()]; 971 for (int i = 0; i < switchListCarDropMessageList.size(); i++) { 972 JComboBox<?> cb = switchListCarDropMessageList.get(i); 973 format[i] = (String) cb.getSelectedItem(); 974 } 975 if (!Setup.getSwitchListDropCarPrefix().equals(this.switchListDropCarPrefix.getText()) || 976 !Arrays.equals(Setup.getDropSwitchListMessageFormat(), format)) { 977 return true; 978 } 979 // switch list local message format 980 format = new String[switchListLocalMessageList.size()]; 981 for (int i = 0; i < switchListLocalMessageList.size(); i++) { 982 JComboBox<?> cb = switchListLocalMessageList.get(i); 983 format[i] = (String) cb.getSelectedItem(); 984 } 985 return !Setup.getSwitchListLocalPrefix().equals(this.switchListLocalPrefix.getText()) || 986 !Arrays.equals(Setup.getLocalSwitchListMessageFormat(), format); 987 } 988 989 @Override 990 public void propertyChange(java.beans.PropertyChangeEvent e) { 991 if (Control.SHOW_PROPERTY) { 992 log.debug("Property change: ({}) old: ({}) new: ({})", e.getPropertyName(), e.getOldValue(), 993 e.getNewValue()); 994 } 995 if (e.getPropertyName().equals(Setup.REAL_TIME_PROPERTY_CHANGE)) { 996 trackSummaryCheckBox.setEnabled(Setup.isSwitchListRealTime()); 997 } 998 } 999 1000 private static final org.slf4j.Logger log = org.slf4j.LoggerFactory.getLogger(PrintOptionPanel.class); 1001 1002}