[631] | 1 | package net.oni2.aeinstaller.gui.modtable;
|
---|
| 2 |
|
---|
[1018] | 3 | import java.awt.Component;
|
---|
[631] | 4 | import java.awt.Desktop;
|
---|
[639] | 5 | import java.awt.Rectangle;
|
---|
[631] | 6 | import java.awt.event.ActionEvent;
|
---|
| 7 | import java.awt.event.ActionListener;
|
---|
[639] | 8 | import java.awt.event.KeyAdapter;
|
---|
| 9 | import java.awt.event.KeyEvent;
|
---|
[631] | 10 | import java.awt.event.MouseAdapter;
|
---|
| 11 | import java.awt.event.MouseEvent;
|
---|
| 12 | import java.io.File;
|
---|
| 13 | import java.io.IOException;
|
---|
| 14 | import java.util.ArrayList;
|
---|
| 15 | import java.util.HashSet;
|
---|
| 16 | import java.util.List;
|
---|
| 17 | import java.util.ResourceBundle;
|
---|
| 18 | import java.util.TreeSet;
|
---|
[659] | 19 | import java.util.Vector;
|
---|
[631] | 20 |
|
---|
[659] | 21 | import javax.swing.JCheckBoxMenuItem;
|
---|
[631] | 22 | import javax.swing.JComponent;
|
---|
| 23 | import javax.swing.JMenuItem;
|
---|
[657] | 24 | import javax.swing.JOptionPane;
|
---|
[631] | 25 | import javax.swing.JPopupMenu;
|
---|
| 26 | import javax.swing.JTable;
|
---|
[639] | 27 | import javax.swing.JViewport;
|
---|
[631] | 28 | import javax.swing.ListSelectionModel;
|
---|
| 29 | import javax.swing.RowSorter;
|
---|
| 30 | import javax.swing.SortOrder;
|
---|
| 31 | import javax.swing.event.ListSelectionEvent;
|
---|
[645] | 32 | import javax.swing.event.RowSorterEvent;
|
---|
[659] | 33 | import javax.swing.table.JTableHeader;
|
---|
| 34 | import javax.swing.table.TableColumn;
|
---|
| 35 | import javax.swing.table.TableColumnModel;
|
---|
[631] | 36 | import javax.swing.table.TableRowSorter;
|
---|
| 37 |
|
---|
[720] | 38 | import net.oni2.SettingsManager;
|
---|
[648] | 39 | import net.oni2.aeinstaller.backend.packages.Package;
|
---|
| 40 | import net.oni2.aeinstaller.backend.packages.Type;
|
---|
[673] | 41 | import net.oni2.aeinstaller.gui.downloadwindow.Downloader;
|
---|
[840] | 42 | import net.oni2.resourcebundle.UTF8ResourceBundleLoader;
|
---|
[631] | 43 |
|
---|
| 44 | /**
|
---|
| 45 | * @author Christian Illy
|
---|
| 46 | */
|
---|
| 47 | public class ModTable extends JTable {
|
---|
| 48 | private static final long serialVersionUID = 1L;
|
---|
| 49 |
|
---|
[840] | 50 | private ResourceBundle bundle = UTF8ResourceBundleLoader
|
---|
[631] | 51 | .getBundle("net.oni2.aeinstaller.localization.ModTable");
|
---|
| 52 |
|
---|
[657] | 53 | /**
|
---|
| 54 | * @author Christian Illy
|
---|
| 55 | */
|
---|
| 56 | public enum ETableContentType {
|
---|
| 57 | /**
|
---|
| 58 | * Table showing mods
|
---|
| 59 | */
|
---|
| 60 | MODS,
|
---|
| 61 | /**
|
---|
| 62 | * Table showing tools
|
---|
| 63 | */
|
---|
| 64 | TOOLS,
|
---|
| 65 | /**
|
---|
| 66 | * Table showing core packages
|
---|
| 67 | */
|
---|
| 68 | CORE
|
---|
| 69 | };
|
---|
| 70 |
|
---|
[631] | 71 | private HashSet<ModSelectionListener> modSelListeners = new HashSet<ModSelectionListener>();
|
---|
| 72 |
|
---|
| 73 | private ModTableModel model;
|
---|
| 74 | private TableRowSorter<ModTableModel> sorter;
|
---|
| 75 |
|
---|
[657] | 76 | private ETableContentType contentType = ETableContentType.MODS;
|
---|
| 77 |
|
---|
[631] | 78 | /**
|
---|
| 79 | * Create a new ModTable
|
---|
[658] | 80 | *
|
---|
| 81 | * @param contentType
|
---|
| 82 | * Content to show
|
---|
[631] | 83 | */
|
---|
[658] | 84 | public ModTable(ETableContentType contentType) {
|
---|
[631] | 85 | super();
|
---|
| 86 |
|
---|
[658] | 87 | this.contentType = contentType;
|
---|
| 88 |
|
---|
[631] | 89 | setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
|
---|
[639] | 90 | getSelectionModel().addListSelectionListener(this);
|
---|
[1018] | 91 | addMouseListener(new MouseEventHandler(this));
|
---|
[639] | 92 | addKeyListener(new KeyEventHandler());
|
---|
[631] | 93 | // To get checkbox-cells with background of row
|
---|
| 94 | ((JComponent) getDefaultRenderer(Boolean.class)).setOpaque(true);
|
---|
| 95 |
|
---|
[658] | 96 | model = new ModTableModel(contentType);
|
---|
[631] | 97 |
|
---|
| 98 | setModel(model);
|
---|
| 99 |
|
---|
| 100 | sorter = new TableRowSorter<ModTableModel>(model);
|
---|
| 101 | setRowSorter(sorter);
|
---|
| 102 |
|
---|
[660] | 103 | setFilter(null, 0, null, EApplyFilterTo.ALL);
|
---|
[631] | 104 |
|
---|
| 105 | List<RowSorter.SortKey> sortKeys = new ArrayList<RowSorter.SortKey>();
|
---|
[645] | 106 |
|
---|
[720] | 107 | int sortCol = SettingsManager.getInstance().get("modSortColumn", 1);
|
---|
[805] | 108 | SortOrder sortOrder = SortOrder.valueOf(SettingsManager.getInstance()
|
---|
| 109 | .get("modSortOrder", "ASCENDING"));
|
---|
[645] | 110 |
|
---|
| 111 | sortKeys.add(new RowSorter.SortKey(sortCol, sortOrder));
|
---|
[631] | 112 | sorter.setSortKeys(sortKeys);
|
---|
| 113 |
|
---|
| 114 | for (int i = 0; i < model.getColumnCount(); i++) {
|
---|
| 115 | model.setColumnConstraints(i, getColumnModel().getColumn(i));
|
---|
| 116 | }
|
---|
[658] | 117 |
|
---|
[659] | 118 | getTableHeader().addMouseListener(new HeaderMouseEventHandler());
|
---|
| 119 |
|
---|
[658] | 120 | if (contentType != ETableContentType.MODS) {
|
---|
| 121 | getColumnModel().removeColumn(getColumnModel().getColumn(0));
|
---|
| 122 | }
|
---|
[631] | 123 | }
|
---|
| 124 |
|
---|
| 125 | @Override
|
---|
| 126 | public String getToolTipText(MouseEvent e) {
|
---|
| 127 | int r = rowAtPoint(e.getPoint());
|
---|
| 128 | int c = columnAtPoint(e.getPoint());
|
---|
| 129 | if (r >= 0 && r < getRowCount()) {
|
---|
| 130 | int modelCol = convertColumnIndexToModel(c);
|
---|
| 131 | if (modelCol == 4) {
|
---|
[648] | 132 | final Package mod = (Package) getValueAt(r, -1);
|
---|
[631] | 133 |
|
---|
| 134 | String tt = "<html>";
|
---|
| 135 | tt += String.format("%s: %s<br>",
|
---|
| 136 | bundle.getString("state.installed"),
|
---|
| 137 | bundle.getString((mod.isInstalled() ? "yes" : "no")));
|
---|
| 138 | tt += String.format(
|
---|
| 139 | "%s: %s<br>",
|
---|
| 140 | bundle.getString("state.updatable"),
|
---|
| 141 | bundle.getString((mod.isLocalAvailable()
|
---|
| 142 | && mod.isNewerAvailable() ? "yes" : "no")));
|
---|
| 143 | tt += String.format("%s: %s</html>", bundle
|
---|
| 144 | .getString("state.downloaded"), bundle.getString((mod
|
---|
| 145 | .isLocalAvailable() ? "yes" : "no")));
|
---|
| 146 | return tt;
|
---|
| 147 | }
|
---|
| 148 | }
|
---|
| 149 | return super.getToolTipText(e);
|
---|
| 150 | }
|
---|
| 151 |
|
---|
| 152 | /**
|
---|
| 153 | * @param listener
|
---|
| 154 | * Listener to add
|
---|
| 155 | */
|
---|
| 156 | public void addModSelectionListener(ModSelectionListener listener) {
|
---|
| 157 | modSelListeners.add(listener);
|
---|
| 158 | }
|
---|
| 159 |
|
---|
| 160 | /**
|
---|
| 161 | * @param listener
|
---|
| 162 | * Listener to remove
|
---|
| 163 | */
|
---|
| 164 | public void removeModSelectionListener(ModSelectionListener listener) {
|
---|
| 165 | modSelListeners.remove(listener);
|
---|
| 166 | }
|
---|
| 167 |
|
---|
[648] | 168 | private void notifyModSelectionListeners(Package m) {
|
---|
[631] | 169 | for (ModSelectionListener l : modSelListeners) {
|
---|
| 170 | l.modSelectionChanged(this, m);
|
---|
| 171 | }
|
---|
| 172 | }
|
---|
| 173 |
|
---|
| 174 | /**
|
---|
| 175 | * @param listener
|
---|
| 176 | * Listener to add
|
---|
| 177 | */
|
---|
[673] | 178 | public void addDownloadSizeListener(ModInstallSelectionListener listener) {
|
---|
[631] | 179 | model.addDownloadSizeListener(listener);
|
---|
| 180 | }
|
---|
| 181 |
|
---|
| 182 | /**
|
---|
| 183 | * @param listener
|
---|
| 184 | * Listener to remove
|
---|
| 185 | */
|
---|
[673] | 186 | public void removeDownloadSizeListener(ModInstallSelectionListener listener) {
|
---|
[631] | 187 | model.removeDownloadSizeListener(listener);
|
---|
| 188 | }
|
---|
| 189 |
|
---|
| 190 | /**
|
---|
| 191 | * Reload the nodes data after an update to the cache
|
---|
| 192 | */
|
---|
| 193 | public void reloadData() {
|
---|
| 194 | model.reloadData();
|
---|
| 195 | }
|
---|
| 196 |
|
---|
| 197 | /**
|
---|
| 198 | * Revert the selection to the mods that are currently installed
|
---|
| 199 | */
|
---|
| 200 | public void revertSelection() {
|
---|
| 201 | model.revertSelection();
|
---|
| 202 | }
|
---|
| 203 |
|
---|
| 204 | /**
|
---|
| 205 | * Reload the selection after a config was loaded
|
---|
| 206 | *
|
---|
| 207 | * @param config
|
---|
| 208 | * Config to load
|
---|
| 209 | */
|
---|
| 210 | public void reloadSelection(File config) {
|
---|
| 211 | model.reloadSelection(config);
|
---|
| 212 | }
|
---|
| 213 |
|
---|
| 214 | /**
|
---|
| 215 | * @return Mods selected for installation
|
---|
| 216 | */
|
---|
[648] | 217 | public TreeSet<Package> getSelectedMods() {
|
---|
[631] | 218 | return model.getSelectedMods();
|
---|
| 219 | }
|
---|
| 220 |
|
---|
| 221 | /**
|
---|
| 222 | * @param type
|
---|
| 223 | * Type of mods to show (null for all)
|
---|
| 224 | * @param downloadState
|
---|
[805] | 225 | * Show only: 0 = all, 1 = online, 2 = downloaded, 3 = installed
|
---|
[660] | 226 | * @param filterString
|
---|
| 227 | * String to filter on
|
---|
| 228 | * @param filterTo
|
---|
| 229 | * Fields to use string filter on
|
---|
[631] | 230 | */
|
---|
[660] | 231 | public void setFilter(Type type, int downloadState, String filterString,
|
---|
| 232 | EApplyFilterTo filterTo) {
|
---|
[657] | 233 | sorter.setRowFilter(new ModTableFilter(type, downloadState,
|
---|
[660] | 234 | filterString, filterTo, contentType == ETableContentType.CORE,
|
---|
| 235 | false));
|
---|
[631] | 236 | }
|
---|
[639] | 237 |
|
---|
| 238 | @Override
|
---|
[645] | 239 | public void sorterChanged(RowSorterEvent evt) {
|
---|
| 240 | super.sorterChanged(evt);
|
---|
| 241 | if (evt.getType() == RowSorterEvent.Type.SORT_ORDER_CHANGED) {
|
---|
| 242 | @SuppressWarnings("unchecked")
|
---|
| 243 | RowSorter<ModTableModel> rs = (RowSorter<ModTableModel>) getRowSorter();
|
---|
| 244 | List<? extends RowSorter.SortKey> keys = rs.getSortKeys();
|
---|
| 245 | if (keys.size() > 0) {
|
---|
| 246 | int col = keys.get(0).getColumn();
|
---|
| 247 | SortOrder so = keys.get(0).getSortOrder();
|
---|
[720] | 248 | SettingsManager.getInstance().put("modSortColumn", col);
|
---|
[805] | 249 | SettingsManager.getInstance()
|
---|
| 250 | .put("modSortOrder", so.toString());
|
---|
[645] | 251 | }
|
---|
| 252 | }
|
---|
| 253 | }
|
---|
| 254 |
|
---|
[657] | 255 | /**
|
---|
| 256 | * Select/Unselect all currently visible items depending on the current
|
---|
| 257 | * state of selection
|
---|
| 258 | */
|
---|
| 259 | public void unSelectAll() {
|
---|
| 260 | boolean isAll = true;
|
---|
| 261 | for (int i = 0; i < getRowCount(); i++) {
|
---|
| 262 | int modRow = convertRowIndexToModel(i);
|
---|
| 263 | boolean inst = (Boolean) model.getValueAt(modRow, 0);
|
---|
| 264 | if (!inst) {
|
---|
| 265 | isAll = false;
|
---|
| 266 | break;
|
---|
| 267 | }
|
---|
| 268 | }
|
---|
| 269 |
|
---|
| 270 | for (int i = 0; i < getRowCount(); i++) {
|
---|
| 271 | int modRow = convertRowIndexToModel(i);
|
---|
[752] | 272 | model.selectPackage(modRow, !isAll);
|
---|
[657] | 273 | }
|
---|
[752] | 274 | model.updateDownloadSize();
|
---|
[657] | 275 | invalidate();
|
---|
| 276 | repaint();
|
---|
| 277 | }
|
---|
| 278 |
|
---|
[645] | 279 | @Override
|
---|
[639] | 280 | public void valueChanged(ListSelectionEvent e) {
|
---|
| 281 | super.valueChanged(e);
|
---|
| 282 | int viewRow = getSelectedRow();
|
---|
| 283 | if (viewRow < 0) {
|
---|
| 284 | notifyModSelectionListeners(null);
|
---|
| 285 | } else {
|
---|
[648] | 286 | Package mod = (Package) getValueAt(viewRow, -1);
|
---|
[639] | 287 | notifyModSelectionListeners(mod);
|
---|
| 288 | }
|
---|
| 289 | }
|
---|
| 290 |
|
---|
| 291 | private class MouseEventHandler extends MouseAdapter {
|
---|
[1018] | 292 | private final Component parent;
|
---|
| 293 |
|
---|
| 294 | public MouseEventHandler(Component parent) {
|
---|
| 295 | this.parent = parent;
|
---|
| 296 | }
|
---|
| 297 |
|
---|
[639] | 298 | private void mouseEventProcessing(MouseEvent e) {
|
---|
| 299 | int r = rowAtPoint(e.getPoint());
|
---|
| 300 | if (r >= 0 && r < getRowCount())
|
---|
| 301 | setRowSelectionInterval(r, r);
|
---|
| 302 | else
|
---|
| 303 | clearSelection();
|
---|
| 304 |
|
---|
| 305 | int rowindex = getSelectedRow();
|
---|
| 306 | if (rowindex >= 0) {
|
---|
| 307 | if (e.isPopupTrigger() && e.getComponent() instanceof JTable) {
|
---|
[648] | 308 | final Package mod = (Package) getValueAt(rowindex, -1);
|
---|
[639] | 309 |
|
---|
| 310 | JPopupMenu popup = new JPopupMenu();
|
---|
| 311 |
|
---|
| 312 | if (mod.isLocalAvailable()) {
|
---|
| 313 | // Open package folder item
|
---|
| 314 | JMenuItem openModFolder = new JMenuItem(
|
---|
| 315 | bundle.getString("openModFolder.text"));
|
---|
| 316 | openModFolder.addActionListener(new ActionListener() {
|
---|
| 317 | @Override
|
---|
| 318 | public void actionPerformed(ActionEvent arg0) {
|
---|
| 319 | try {
|
---|
| 320 | Desktop.getDesktop().open(
|
---|
| 321 | mod.getLocalPath());
|
---|
| 322 | } catch (IOException e) {
|
---|
| 323 | e.printStackTrace();
|
---|
| 324 | }
|
---|
| 325 | }
|
---|
| 326 | });
|
---|
| 327 | popup.add(openModFolder);
|
---|
| 328 | }
|
---|
| 329 |
|
---|
| 330 | if (mod.getUrl() != null) {
|
---|
| 331 | // Open Depot page item
|
---|
| 332 | JMenuItem openDepotPage = new JMenuItem(
|
---|
| 333 | bundle.getString("openDepotPage.text"));
|
---|
| 334 | openDepotPage.addActionListener(new ActionListener() {
|
---|
| 335 | @Override
|
---|
| 336 | public void actionPerformed(ActionEvent arg0) {
|
---|
| 337 | try {
|
---|
| 338 | Desktop.getDesktop().browse(mod.getUrl());
|
---|
| 339 | } catch (IOException e) {
|
---|
| 340 | e.printStackTrace();
|
---|
| 341 | }
|
---|
| 342 | }
|
---|
| 343 | });
|
---|
| 344 | popup.add(openDepotPage);
|
---|
| 345 | }
|
---|
| 346 |
|
---|
[857] | 347 | if (!mod.isLocalOnly()) {
|
---|
[673] | 348 | // Download package
|
---|
| 349 | JMenuItem downloadPackage = new JMenuItem(
|
---|
| 350 | bundle.getString("downloadPackage.text"));
|
---|
| 351 | downloadPackage.addActionListener(new ActionListener() {
|
---|
| 352 | @Override
|
---|
| 353 | public void actionPerformed(ActionEvent arg0) {
|
---|
| 354 | TreeSet<Package> toDo = new TreeSet<Package>();
|
---|
| 355 | TreeSet<Package> deps = new TreeSet<Package>();
|
---|
| 356 | toDo.add(mod);
|
---|
[805] | 357 | Downloader dl = new Downloader(toDo, deps,
|
---|
[1018] | 358 | false, parent);
|
---|
[673] | 359 | try {
|
---|
| 360 | dl.setVisible(true);
|
---|
| 361 | } finally {
|
---|
| 362 | dl.dispose();
|
---|
| 363 | }
|
---|
[863] | 364 | model.fireTableDataChanged();
|
---|
[673] | 365 | invalidate();
|
---|
| 366 | repaint();
|
---|
| 367 | }
|
---|
| 368 | });
|
---|
| 369 | popup.add(downloadPackage);
|
---|
| 370 | }
|
---|
| 371 |
|
---|
[657] | 372 | if (mod.isLocalAvailable()
|
---|
| 373 | && contentType != ETableContentType.CORE) {
|
---|
| 374 | // Delete package folder item
|
---|
| 375 | JMenuItem deleteModFolder = new JMenuItem(
|
---|
| 376 | bundle.getString("deletePackage.text"));
|
---|
| 377 | deleteModFolder.addActionListener(new ActionListener() {
|
---|
| 378 | @Override
|
---|
| 379 | public void actionPerformed(ActionEvent arg0) {
|
---|
[857] | 380 | if (mod.isLocalOnly()) {
|
---|
[657] | 381 | JOptionPane.showMessageDialog(
|
---|
| 382 | null,
|
---|
| 383 | bundle.getString("deletePackageLocalOnly.text"),
|
---|
| 384 | bundle.getString("deletePackageLocalOnly.title"),
|
---|
| 385 | JOptionPane.INFORMATION_MESSAGE);
|
---|
| 386 | } else {
|
---|
| 387 | int res = JOptionPane.showConfirmDialog(
|
---|
| 388 | null,
|
---|
| 389 | bundle.getString("deletePackageConfirm.text"),
|
---|
| 390 | bundle.getString("deletePackageConfirm.title"),
|
---|
| 391 | JOptionPane.YES_NO_OPTION,
|
---|
| 392 | JOptionPane.WARNING_MESSAGE);
|
---|
| 393 | if (res == JOptionPane.YES_OPTION) {
|
---|
| 394 | mod.deleteLocalPackage();
|
---|
[863] | 395 | model.fireTableDataChanged();
|
---|
[657] | 396 | invalidate();
|
---|
| 397 | repaint();
|
---|
| 398 | }
|
---|
| 399 | }
|
---|
| 400 | }
|
---|
| 401 | });
|
---|
| 402 | popup.add(deleteModFolder);
|
---|
| 403 | }
|
---|
| 404 |
|
---|
[639] | 405 | if (popup.getSubElements().length > 0)
|
---|
| 406 | popup.show(e.getComponent(), e.getX(), e.getY());
|
---|
| 407 | }
|
---|
| 408 | }
|
---|
| 409 | }
|
---|
| 410 |
|
---|
| 411 | @Override
|
---|
| 412 | public void mousePressed(MouseEvent e) {
|
---|
| 413 | mouseEventProcessing(e);
|
---|
| 414 | }
|
---|
| 415 |
|
---|
| 416 | @Override
|
---|
| 417 | public void mouseReleased(MouseEvent e) {
|
---|
| 418 | mouseEventProcessing(e);
|
---|
| 419 | }
|
---|
| 420 | }
|
---|
| 421 |
|
---|
| 422 | private class KeyEventHandler extends KeyAdapter {
|
---|
[660] | 423 | private void goToRow(int row) {
|
---|
| 424 | setRowSelectionInterval(row, row);
|
---|
| 425 | JViewport viewport = (JViewport) getParent();
|
---|
| 426 | Rectangle rect = getCellRect(row, 0, true);
|
---|
| 427 | Rectangle r2 = viewport.getVisibleRect();
|
---|
| 428 | scrollRectToVisible(new Rectangle(rect.x, rect.y,
|
---|
| 429 | (int) r2.getWidth(), (int) r2.getHeight()));
|
---|
| 430 | }
|
---|
| 431 |
|
---|
[639] | 432 | @Override
|
---|
| 433 | public void keyTyped(KeyEvent e) {
|
---|
| 434 | super.keyTyped(e);
|
---|
| 435 |
|
---|
| 436 | if (e.getModifiers() == 0) {
|
---|
| 437 | String key = String.valueOf(e.getKeyChar()).toLowerCase();
|
---|
[660] | 438 | int row = getSelectedRow();
|
---|
| 439 | if (row == (getRowCount() - 1))
|
---|
| 440 | row = -1;
|
---|
| 441 | for (int i = row + 1; i < getRowCount(); i++) {
|
---|
[648] | 442 | Package m = (Package) getValueAt(i, -1);
|
---|
[639] | 443 | if (m.getName().toLowerCase().startsWith(key)) {
|
---|
[660] | 444 | goToRow(i);
|
---|
| 445 | return;
|
---|
[639] | 446 | }
|
---|
| 447 | }
|
---|
[660] | 448 | if (row > 0) {
|
---|
| 449 | for (int i = 0; i < row; i++) {
|
---|
| 450 | Package m = (Package) getValueAt(i, -1);
|
---|
| 451 | if (m.getName().toLowerCase().startsWith(key)) {
|
---|
| 452 | goToRow(i);
|
---|
| 453 | return;
|
---|
| 454 | }
|
---|
| 455 | }
|
---|
| 456 | }
|
---|
[639] | 457 | }
|
---|
| 458 | }
|
---|
| 459 | }
|
---|
[659] | 460 |
|
---|
| 461 | private class HeaderMouseEventHandler extends MouseAdapter {
|
---|
| 462 | private Vector<TableColumn> columns = new Vector<TableColumn>();
|
---|
| 463 | private TableColumnModel tcm = getColumnModel();
|
---|
| 464 |
|
---|
| 465 | public HeaderMouseEventHandler() {
|
---|
| 466 | super();
|
---|
| 467 |
|
---|
| 468 | for (int i = 1; i < tcm.getColumnCount(); i++) {
|
---|
| 469 | columns.add(tcm.getColumn(i));
|
---|
| 470 | }
|
---|
| 471 |
|
---|
| 472 | for (int i = 1; i < columns.size(); i++) {
|
---|
| 473 | TableColumn tc = columns.get(i);
|
---|
[720] | 474 | if (!SettingsManager.getInstance().get(
|
---|
[659] | 475 | String.format("modShowColumn%02d", tc.getModelIndex()),
|
---|
| 476 | true))
|
---|
| 477 | tcm.removeColumn(tc);
|
---|
| 478 | }
|
---|
| 479 | }
|
---|
| 480 |
|
---|
| 481 | private TableColumn getColumn(String name) {
|
---|
| 482 | for (TableColumn tc : columns) {
|
---|
| 483 | if (tc.getHeaderValue().equals(name)) {
|
---|
| 484 | return tc;
|
---|
| 485 | }
|
---|
| 486 | }
|
---|
| 487 | return null;
|
---|
| 488 | }
|
---|
| 489 |
|
---|
| 490 | private int headerContains(TableColumn tc) {
|
---|
| 491 | for (int col = 0; col < tcm.getColumnCount(); col++) {
|
---|
| 492 | if (tcm.getColumn(col).equals(tc))
|
---|
| 493 | return col;
|
---|
| 494 | }
|
---|
| 495 | return -1;
|
---|
| 496 | }
|
---|
| 497 |
|
---|
| 498 | private void mouseEventProcessing(MouseEvent e) {
|
---|
| 499 | if (e.isPopupTrigger() && e.getComponent() instanceof JTableHeader) {
|
---|
| 500 | JPopupMenu popup = new JPopupMenu();
|
---|
| 501 |
|
---|
| 502 | ActionListener al = new ActionListener() {
|
---|
| 503 | @Override
|
---|
| 504 | public void actionPerformed(ActionEvent e) {
|
---|
| 505 | JCheckBoxMenuItem itm = (JCheckBoxMenuItem) e
|
---|
| 506 | .getSource();
|
---|
| 507 | TableColumn col = getColumn(itm.getText());
|
---|
| 508 | if (itm.isSelected()) {
|
---|
| 509 | tcm.addColumn(col);
|
---|
| 510 | for (int i = columns.indexOf(col) - 1; i >= 0; i--) {
|
---|
| 511 | int pos = headerContains(columns.get(i));
|
---|
| 512 | if (pos >= 0) {
|
---|
| 513 | tcm.moveColumn(tcm.getColumnCount() - 1,
|
---|
| 514 | pos + 1);
|
---|
| 515 | break;
|
---|
| 516 | }
|
---|
| 517 | }
|
---|
| 518 | } else {
|
---|
| 519 | tcm.removeColumn(col);
|
---|
| 520 | }
|
---|
[720] | 521 | SettingsManager.getInstance().put(
|
---|
[659] | 522 | String.format("modShowColumn%02d",
|
---|
| 523 | col.getModelIndex()), itm.isSelected());
|
---|
| 524 | }
|
---|
| 525 | };
|
---|
| 526 |
|
---|
| 527 | for (int i = 1; i < columns.size(); i++) {
|
---|
| 528 | JCheckBoxMenuItem itm = new JCheckBoxMenuItem(
|
---|
| 529 | (String) columns.get(i).getHeaderValue());
|
---|
| 530 | itm.setSelected(headerContains(columns.get(i)) >= 0);
|
---|
| 531 |
|
---|
| 532 | itm.addActionListener(al);
|
---|
| 533 | popup.add(itm);
|
---|
| 534 | }
|
---|
| 535 |
|
---|
| 536 | if (popup.getSubElements().length > 0)
|
---|
| 537 | popup.show(e.getComponent(), e.getX(), e.getY());
|
---|
| 538 | }
|
---|
| 539 | }
|
---|
| 540 |
|
---|
| 541 | @Override
|
---|
| 542 | public void mousePressed(MouseEvent e) {
|
---|
| 543 | mouseEventProcessing(e);
|
---|
| 544 | }
|
---|
| 545 |
|
---|
| 546 | @Override
|
---|
| 547 | public void mouseReleased(MouseEvent e) {
|
---|
| 548 | mouseEventProcessing(e);
|
---|
| 549 | }
|
---|
| 550 | }
|
---|
| 551 |
|
---|
[631] | 552 | }
|
---|