use of org.magic.api.beans.MagicEdition in project MtgDesktopCompanion by nicho92.
the class CardSearchPanel method initGUI.
private void initGUI() {
logger.info("init search GUI");
JPanel panelResultsCards;
JPanel panelFilters;
JPanel panelmana;
JPanel editionDetailPanel;
JPanel panneauHaut;
JPanel panneauCard;
JPanel panneauStat;
JTextField txtFilter;
JComboBox<MagicEdition> cboEdition;
TableFilterHeader filterHeader;
JButton btnClear;
JButton btnSearch;
JButton btnFilter;
DefaultRowSorter<DefaultTableModel, Integer> sorterCards;
DefaultRowSorter<DefaultTableModel, Integer> sorterPrice = new TableRowSorter<>(priceModel);
sorterCards = new TableRowSorter<>(cardsModeltable);
sorterCards.setComparator(7, (String num1, String num2) -> {
try {
num1 = num1.replaceAll("a", "").replaceAll("b", "").trim();
num2 = num2.replaceAll("a", "").replaceAll("b", "").trim();
if (Integer.parseInt(num1) > Integer.parseInt(num2))
return 1;
else
return -1;
} catch (NumberFormatException e) {
return -1;
}
});
List<MagicEdition> li = new ArrayList<>();
try {
li = MTGControler.getInstance().getEnabledProviders().loadEditions();
Collections.sort(li);
} catch (Exception e2) {
logger.error("error no edition loaded", e2);
}
// //////INIT COMPONENTS
JScrollPane scrollEditions = new JScrollPane();
JScrollPane scrollThumbnails = new JScrollPane();
JScrollPane scrollPaneRules = new JScrollPane();
JScrollPane scrollPanePrices = new JScrollPane();
JScrollPane scrollCards = new JScrollPane();
JSplitPane panneauCentral = new JSplitPane();
panneauStat = new JPanel();
panneauHaut = new JPanel();
panneauCard = new JPanel();
editionDetailPanel = new JPanel();
panelResultsCards = new JPanel();
cmcChart = new CmcChartPanel();
manaRepartitionPanel = new ManaRepartitionPanel();
typeRepartitionPanel = new TypeRepartitionPanel();
historyChartPanel = new HistoryPricesPanel();
cardsPicPanel = new CardsPicPanel();
rarityRepartitionPanel = new RarityRepartitionPanel();
detailCardPanel = new MagicCardDetailPanel(new MagicCard());
panelmana = new JPanel();
panelFilters = new JPanel();
ManaPanel pan = new ManaPanel();
panelJson = new JSONPanel();
tabbedCardsView = new JTabbedPane(JTabbedPane.TOP);
tabbedCardsInfo = new JTabbedPane(JTabbedPane.TOP);
thumbnailPanel = new HandPanel();
thumbnailPanel.setBackground(MTGConstants.THUMBNAIL_BACKGROUND_COLOR);
btnSearch = new JButton(MTGConstants.ICON_SEARCH);
btnExport = new JButton(MTGConstants.ICON_EXPORT);
btnFilter = new JButton(MTGConstants.ICON_FILTER);
btnClear = new JButton(MTGConstants.ICON_CLEAR);
cboQuereableItems = new JComboBox<>(new DefaultComboBoxModel<String>(MTGControler.getInstance().getEnabledProviders().getQueryableAttributs()));
try {
cboCollections = new JComboBox<>(new DefaultComboBoxModel<MagicCollection>(MTGControler.getInstance().getEnabledDAO().getCollections().toArray(new MagicCollection[MTGControler.getInstance().getEnabledDAO().getCollections().size()])));
} catch (SQLException e2) {
logger.error("could not load collections combobox", e2);
}
cboLanguages = new JComboBox<>();
tablePrice = new JXTable();
tableCards = new JXTable();
lblLoading = new JLabel(MTGConstants.ICON_LOADING);
JLabel lblFilter = new JLabel();
listEdition = new JList<>();
txtMagicSearch = new JTextField();
txtRulesArea = new JTextArea();
txtFilter = new JTextField();
filterHeader = new TableFilterHeader(tableCards, AutoChoices.ENABLED);
cboEdition = new JComboBox<>(new DefaultComboBoxModel<MagicEdition>(li.toArray(new MagicEdition[li.size()])));
// //////MODELS
listEdition.setModel(new DefaultListModel<MagicEdition>());
tablePrice.setModel(priceModel);
tableCards.setModel(cardsModeltable);
// //////RENDERER
tableCards.getColumnModel().getColumn(2).setCellRenderer(new ManaCellRenderer());
tableCards.getColumnModel().getColumn(6).setCellRenderer(new EditionCellRenderer());
cboEdition.setRenderer(new MagicEditionListRenderer());
listEdition.setCellRenderer(new MagicEditionListRenderer());
// ///////CONFIGURE COMPONENTS
txtRulesArea.setLineWrap(true);
txtRulesArea.setWrapStyleWord(true);
txtRulesArea.setEditable(false);
btnFilter.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("FILTER"));
btnExport.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("EXPORT_RESULTS"));
btnExport.setEnabled(false);
filterHeader.setSelectionBackground(Color.LIGHT_GRAY);
cboQuereableItems.addItem("collections");
tablePrice.setRowSorter(sorterPrice);
listEdition.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
thumbnailPanel.enableDragging(false);
panneauCentral.setOrientation(JSplitPane.VERTICAL_SPLIT);
panneauCentral.setRightComponent(tabbedCardsInfo);
panneauCentral.setLeftComponent(tabbedCardsView);
tableCards.setRowHeight(MTGConstants.TABLE_ROW_HEIGHT);
tableCards.setRowSorter(sorterCards);
// /////LAYOUT
setLayout(new BorderLayout());
panneauStat.setLayout(new GridLayout(2, 2, 0, 0));
panneauCard.setLayout(new BorderLayout());
editionDetailPanel.setLayout(new BorderLayout());
panelResultsCards.setLayout(new BorderLayout(0, 0));
panelmana.setLayout(new GridLayout(1, 0, 2, 2));
FlowLayout flpanelFilters = (FlowLayout) panelFilters.getLayout();
flpanelFilters.setAlignment(FlowLayout.LEFT);
FlowLayout flowLayout = (FlowLayout) panneauHaut.getLayout();
flowLayout.setAlignment(FlowLayout.LEFT);
// /////DIMENSION
thumbnailPanel.setThumbnailSize(new Dimension(179, 240));
tabbedCardsInfo.setPreferredSize(new Dimension(0, 350));
historyChartPanel.setPreferredSize(new Dimension(400, 10));
cardsPicPanel.setPreferredSize(new Dimension(400, 10));
tabbedCardsInfo.setMinimumSize(new Dimension(23, 200));
scrollCards.setMinimumSize(new Dimension(0, 0));
scrollThumbnails.getVerticalScrollBar().setUnitIncrement(10);
txtFilter.setColumns(25);
txtMagicSearch.setColumns(35);
// /////VISIBILITY
tableCards.setColumnControlVisible(true);
filterHeader.setVisible(false);
panelFilters.setVisible(false);
lblLoading.setVisible(false);
cboCollections.setVisible(false);
tableCards.setShowVerticalLines(false);
cboEdition.setVisible(false);
// ////ADD PANELS
for (String s : new String[] { "W", "U", "B", "R", "G", "C", "1" }) {
final JButton btnG = new JButton();
btnG.setToolTipText(s);
if (s.equals("1"))
btnG.setToolTipText("[0-9]*");
btnG.setIcon(new ImageIcon(pan.getManaSymbol(s).getScaledInstance(15, 15, Image.SCALE_SMOOTH)));
btnG.setForeground(btnG.getBackground());
btnG.addActionListener(e -> {
txtFilter.setText("\\{" + btnG.getToolTipText() + "}");
sorterCards.setRowFilter(RowFilter.regexFilter(txtFilter.getText()));
});
panelmana.add(btnG);
}
scrollEditions.setViewportView(listEdition);
scrollPanePrices.setViewportView(tablePrice);
scrollCards.setViewportView(tableCards);
scrollPaneRules.setViewportView(txtRulesArea);
scrollThumbnails.setViewportView(thumbnailPanel);
panneauHaut.add(cboQuereableItems);
panneauHaut.add(cboCollections);
panneauHaut.add(txtMagicSearch);
panneauHaut.add(cboEdition);
panneauHaut.add(btnSearch);
panneauHaut.add(btnFilter);
panneauHaut.add(btnExport);
panneauHaut.add(lblLoading);
panneauCard.add(cboLanguages, BorderLayout.NORTH);
panneauCard.add(scrollEditions, BorderLayout.SOUTH);
panneauCard.add(cardsPicPanel, BorderLayout.CENTER);
panelResultsCards.add(panelFilters, BorderLayout.NORTH);
panelResultsCards.add(scrollCards);
magicEditionDetailPanel = new MagicEditionDetailPanel();
editionDetailPanel.add(magicEditionDetailPanel, BorderLayout.CENTER);
panelFilters.add(lblFilter);
panelFilters.add(txtFilter);
panelFilters.add(btnClear);
panelFilters.add(panelmana);
tabbedCardsInfo.addTab(MTGControler.getInstance().getLangService().getCapitalize("DETAILS"), null, detailCardPanel, null);
tabbedCardsInfo.addTab(MTGControler.getInstance().getLangService().getCapitalize("EDITION"), null, editionDetailPanel, null);
tabbedCardsInfo.addTab(MTGControler.getInstance().getLangService().getCapitalize("PRICES"), null, scrollPanePrices, null);
tabbedCardsInfo.addTab(MTGControler.getInstance().getLangService().getCapitalize("RULES"), null, scrollPaneRules, null);
tabbedCardsInfo.addTab(MTGControler.getInstance().getLangService().getCapitalize("PRICE_VARIATIONS"), null, historyChartPanel, null);
if (MTGControler.getInstance().get("debug-json-panel").equalsIgnoreCase("true"))
tabbedCardsInfo.addTab("Json", null, panelJson, null);
panneauStat.add(cmcChart);
panneauStat.add(manaRepartitionPanel);
panneauStat.add(typeRepartitionPanel);
panneauStat.add(rarityRepartitionPanel);
tabbedCardsView.addTab(MTGControler.getInstance().getLangService().getCapitalize("RESULTS"), null, panelResultsCards, null);
tabbedCardsView.addTab(MTGControler.getInstance().getLangService().getCapitalize("THUMBNAIL"), null, scrollThumbnails, null);
tabbedCardsView.addTab(MTGControler.getInstance().getLangService().getCapitalize("STATS"), null, panneauStat, null);
add(panneauHaut, BorderLayout.NORTH);
add(panneauCard, BorderLayout.EAST);
add(panneauCentral, BorderLayout.CENTER);
// /////Right click
try {
initPopupCollection();
} catch (Exception e2) {
MTGLogger.printStackTrace(e2);
}
// /////Action listners
cboEdition.addActionListener(ae -> txtMagicSearch.setText(((MagicEdition) cboEdition.getSelectedItem()).getId()));
btnClear.addActionListener(ae -> {
txtFilter.setText("");
sorterCards.setRowFilter(null);
});
btnFilter.addActionListener(ae -> {
if (panelFilters.isVisible()) {
panelFilters.setVisible(false);
filterHeader.setVisible(false);
} else {
panelFilters.setVisible(true);
filterHeader.setVisible(true);
}
});
cboQuereableItems.addActionListener(e -> {
if (cboQuereableItems.getSelectedItem().toString().equalsIgnoreCase("set")) {
txtMagicSearch.setVisible(false);
cboEdition.setVisible(true);
cboCollections.setVisible(false);
} else if (cboQuereableItems.getSelectedItem().toString().equalsIgnoreCase("collections")) {
txtMagicSearch.setVisible(false);
cboEdition.setVisible(false);
cboCollections.setVisible(true);
} else {
txtMagicSearch.setVisible(true);
cboEdition.setVisible(false);
cboCollections.setVisible(false);
}
});
btnSearch.addActionListener(ae -> {
Observer ob = new Observer() {
@Override
public void update(Observable o, Object arg) {
cardsModeltable.addCard((MagicCard) arg);
}
};
selectedEdition = null;
if (txtMagicSearch.getText().equals("") && !cboCollections.isVisible())
return;
cardsModeltable.clear();
new SwingWorker<Object, Object>() {
protected Void doInBackground() {
loading(true, MTGControler.getInstance().getLangService().getCapitalize("SEARCHING"));
String searchName = txtMagicSearch.getText();
try {
MTGControler.getInstance().getEnabledProviders().addObserver(ob);
if (cboCollections.isVisible())
cards = MTGControler.getInstance().getEnabledDAO().listCardsFromCollection((MagicCollection) cboCollections.getSelectedItem());
else
cards = MTGControler.getInstance().getEnabledProviders().searchCardByCriteria(cboQuereableItems.getSelectedItem().toString(), searchName, null, false);
if (cards.size() < 50)
Collections.sort(cards, new MagicCardComparator());
open(cards);
return null;
} catch (Exception e) {
logger.error("Erreur search", e);
return null;
}
}
@Override
protected void done() {
super.done();
loading(false, "");
cardsModeltable.fireTableDataChanged();
btnExport.setEnabled(tableCards.getRowCount() > 0);
MTGControler.getInstance().getEnabledProviders().removeObserver(ob);
}
}.execute();
});
tableCards.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent evt) {
if (SwingUtilities.isRightMouseButton(evt)) {
Point point = evt.getPoint();
popupMenu.show(tableCards, (int) point.getX(), (int) point.getY());
} else {
try {
selectedCard = (MagicCard) tableCards.getValueAt(tableCards.getSelectedRow(), 0);
selectedEdition = selectedCard.getEditions().get(0);
updateCards();
} catch (Exception e) {
logger.error(e);
}
}
}
});
listEdition.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent mev) {
selectedEdition = listEdition.getSelectedValue();
ThreadManager.getInstance().execute(() -> {
loading(true, MTGControler.getInstance().getLangService().getCapitalize("LOADING_EDITIONS"));
try {
selectedCard = MTGControler.getInstance().getEnabledProviders().searchCardByCriteria("name", selectedCard.getName(), selectedEdition, false).get(0);
detailCardPanel.setMagicCard(selectedCard);
magicEditionDetailPanel.setMagicEdition(selectedEdition);
} catch (Exception e) {
MTGLogger.printStackTrace(e);
}
// backcard
cardsPicPanel.showPhoto(selectedCard);
historyChartPanel.init(selectedCard, selectedEdition, selectedCard.getName());
if (tabbedCardsInfo.getSelectedIndex() == INDEX_PRICES)
updatePrices();
loading(false, "");
}, "changeEdition");
}
});
tablePrice.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent ev) {
if (ev.getClickCount() == 2 && !ev.isConsumed()) {
ev.consume();
try {
String url = tablePrice.getValueAt(tablePrice.getSelectedRow(), CardsPriceTableModel.ROW_URL).toString();
Desktop.getDesktop().browse(new URI(url));
} catch (Exception e) {
logger.error(e);
}
}
}
});
cboLanguages.addItemListener(e -> {
MagicCardNames selLang = (MagicCardNames) cboLanguages.getSelectedItem();
try {
if (e.getStateChange() == ItemEvent.SELECTED && selLang != null) {
MagicEdition ed = (MagicEdition) BeanUtils.cloneBean(selectedEdition);
ed.setMultiverse_id("" + selLang.getGathererId());
logger.debug("change lang to " + selLang + " for " + ed);
cardsPicPanel.showPhoto(selectedCard, ed);
}
} catch (Exception e1) {
logger.error(e1);
}
});
btnExport.addActionListener(ae -> {
JPopupMenu menu = new JPopupMenu();
for (final MTGCardsExport exp : MTGControler.getInstance().getEnabledDeckExports()) {
JMenuItem it = new JMenuItem();
it.setIcon(exp.getIcon());
it.setText(exp.getName());
it.addActionListener(exportEvent -> {
JFileChooser jf = new JFileChooser(".");
jf.setSelectedFile(new File("search" + exp.getFileExtension()));
int result = jf.showSaveDialog(null);
final File f = jf.getSelectedFile();
if (result == JFileChooser.APPROVE_OPTION)
ThreadManager.getInstance().execute(() -> {
try {
loading(true, "export " + exp);
List<MagicCard> export = ((MagicCardTableModel) tableCards.getRowSorter().getModel()).getListCards();
exp.export(export, f);
loading(false, "");
JOptionPane.showMessageDialog(null, MTGControler.getInstance().getLangService().combine("EXPORT", "FINISHED"), exp.getName() + " " + MTGControler.getInstance().getLangService().get("FINISHED"), JOptionPane.INFORMATION_MESSAGE);
} catch (Exception e) {
logger.error(e);
loading(false, "");
JOptionPane.showMessageDialog(null, e, MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
}, "export search " + exp);
});
menu.add(it);
}
Component b = (Component) ae.getSource();
Point p = b.getLocationOnScreen();
menu.show(b, 0, 0);
menu.setLocation(p.x, p.y + b.getHeight());
});
tabbedCardsInfo.addChangeListener(e -> {
if (tabbedCardsInfo.getSelectedIndex() == INDEX_PRICES)
updatePrices();
});
txtFilter.addActionListener(ae -> {
String text = txtFilter.getText();
if (text.length() == 0) {
sorterCards.setRowFilter(null);
} else {
sorterCards.setRowFilter(RowFilter.regexFilter(text));
}
});
thumbnailPanel.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
DisplayableCard lab = (DisplayableCard) thumbnailPanel.getComponentAt(new Point(e.getX(), e.getY()));
selectedCard = lab.getMagicCard();
selectedEdition = lab.getMagicCard().getEditions().get(0);
cardsPicPanel.showPhoto(selectedCard);
updateCards();
}
});
txtMagicSearch.addActionListener(e -> btnSearch.doClick());
}
use of org.magic.api.beans.MagicEdition in project MtgDesktopCompanion by nicho92.
the class CollectionPanelGUI method initGUI.
public void initGUI() throws IOException, SQLException, ClassNotFoundException {
logger.info("init collection GUI");
MagicEditionsTableModel model;
JProgressBar progressBar;
JTabbedPane tabbedPane;
TypeRepartitionPanel typeRepartitionPanel;
ManaRepartitionPanel manaRepartitionPanel;
RarityRepartitionPanel rarityRepartitionPanel;
MagicCardDetailPanel magicCardDetailPanel;
CardStockPanel statsPanel;
JLabel lblTotal;
// //////INIT COMPONENTS
JPanel panneauHaut = new JPanel();
JButton btnAdd = new JButton(MTGConstants.ICON_NEW);
JButton btnRefresh = new JButton(MTGConstants.ICON_REFRESH);
JButton btnRemove = new JButton(MTGConstants.ICON_DELETE);
JButton btnAddAllSet = new JButton(MTGConstants.ICON_CHECK);
JButton btnExport = new JButton(MTGConstants.ICON_EXPORT);
JButton btnMassCollection = new JButton(MTGConstants.ICON_IMPORT);
JButton btnExportPriceCatalog = new JButton(MTGConstants.ICON_EURO);
JButton btnGenerateWebSite = new JButton(MTGConstants.ICON_WEBSITE);
JScrollPane scrollPaneCollections = new JScrollPane();
JScrollPane scrollPrices = new JScrollPane();
JSplitPane splitListPanel = new JSplitPane();
JSplitPane splitPane = new JSplitPane();
JPanel panneauGauche = new JPanel();
JScrollPane scrollPane = new JScrollPane();
JPanel panelTotal = new JPanel();
JPanel panneauDroite = new JPanel();
MagicCollectionTableCellRenderer render = new MagicCollectionTableCellRenderer();
tabbedPane = new JTabbedPane(JTabbedPane.TOP);
progressBar = new JProgressBar();
lblTotal = new JLabel();
magicEditionDetailPanel = new MagicEditionDetailPanel(true, false);
magicCardDetailPanel = new MagicCardDetailPanel();
typeRepartitionPanel = new TypeRepartitionPanel();
manaRepartitionPanel = new ManaRepartitionPanel();
rarityRepartitionPanel = new RarityRepartitionPanel();
statsPanel = new CardStockPanel();
historyPricesPanel = new HistoryPricesPanel();
jsonPanel = new JSONPanel();
tree = new LazyLoadingTree();
tableEditions = new JXTable();
// //////MODELS
model = new MagicEditionsTableModel();
DefaultRowSorter sorterEditions = new TableRowSorter<DefaultTableModel>(model);
modelPrices = new CardsPriceTableModel();
tablePrices = new JXTable(modelPrices);
model.init(provider.loadEditions());
tableEditions.setModel(model);
new TableFilterHeader(tableEditions, AutoChoices.ENABLED);
// ///////CONFIGURE COMPONENTS
splitListPanel.setDividerLocation(0.5);
splitListPanel.setResizeWeight(0.5);
progressBar.setVisible(false);
btnRemove.setEnabled(true);
btnExport.setEnabled(false);
btnExportPriceCatalog.setEnabled(false);
splitPane.setResizeWeight(0.5);
splitPane.setOrientation(JSplitPane.VERTICAL_SPLIT);
scrollPaneCollections.setMinimumSize(new Dimension(0, 0));
tree.setCellRenderer(new MagicCardsTreeCellRenderer());
tablePrices.setColumnControlVisible(true);
magicCardDetailPanel.setPreferredSize(new Dimension(0, 0));
magicCardDetailPanel.enableThumbnail(true);
tableEditions.setDefaultRenderer(Object.class, render);
tableEditions.setDefaultRenderer(String.class, render);
tableEditions.setDefaultRenderer(Integer.class, render);
tableEditions.setDefaultRenderer(double.class, render);
tableEditions.setRowHeight(25);
tableEditions.setRowSorter(sorterEditions);
// ///////LAYOUT
setLayout(new BorderLayout(0, 0));
panneauDroite.setLayout(new BorderLayout());
panneauGauche.setLayout(new BorderLayout(0, 0));
// ///////ADD PANELS
add(panneauHaut, BorderLayout.NORTH);
panneauHaut.add(btnAdd);
panneauHaut.add(btnRefresh);
panneauHaut.add(btnRemove);
panneauHaut.add(btnAddAllSet);
panneauHaut.add(btnMassCollection);
panneauHaut.add(btnExport);
panneauHaut.add(btnExportPriceCatalog);
panneauHaut.add(btnGenerateWebSite);
panneauHaut.add(progressBar);
add(splitListPanel, BorderLayout.CENTER);
splitListPanel.setRightComponent(panneauDroite);
panneauDroite.add(splitPane, BorderLayout.CENTER);
splitPane.setLeftComponent(scrollPaneCollections);
scrollPaneCollections.setViewportView(tree);
splitPane.setRightComponent(tabbedPane);
scrollPrices.setViewportView(tablePrices);
splitListPanel.setLeftComponent(panneauGauche);
panneauGauche.add(scrollPane);
scrollPane.setViewportView(tableEditions);
panneauGauche.add(panelTotal, BorderLayout.SOUTH);
panelTotal.add(lblTotal);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("DETAILS"), null, magicCardDetailPanel, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("CARD_EDITIONS"), null, magicEditionDetailPanel, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("PRICES"), null, scrollPrices, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("CARD_TYPES"), null, typeRepartitionPanel, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("CARD_MANA"), null, manaRepartitionPanel, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("CARD_RARITY"), null, rarityRepartitionPanel, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("STOCK_MODULE"), null, statsPanel, null);
tabbedPane.addTab(MTGControler.getInstance().getLangService().getCapitalize("PRICE_VARIATIONS"), null, historyPricesPanel, null);
if (MTGControler.getInstance().get("debug-json-panel").equalsIgnoreCase("true"))
tabbedPane.addTab("Json", null, jsonPanel, null);
// ///////Labels
lblTotal.setText("Total : " + model.getCountDefaultLibrary() + "/" + model.getCountTotal());
btnAdd.setToolTipText(MTGControler.getInstance().getLangService().get("COLLECTION_ADD"));
btnRefresh.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("COLLECTION_REFRESH"));
btnRemove.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("ITEM_SELECTED_REMOVE"));
btnAddAllSet.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("COLLECTION_SET_FULL"));
btnExport.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("EXPORT_AS"));
btnMassCollection.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("COLLECTION_IMPORT"));
btnExportPriceCatalog.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("COLLECTION_EXPORT_PRICES"));
btnGenerateWebSite.setToolTipText(MTGControler.getInstance().getLangService().getCapitalize("GENERATE_WEBSITE"));
List<SortKey> keys = new ArrayList<>();
// column index 2
SortKey sortKey = new SortKey(3, SortOrder.DESCENDING);
keys.add(sortKey);
sorterEditions.setSortKeys(keys);
tableEditions.packAll();
initPopupCollection();
tableEditions.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent arg0) {
int row = tableEditions.getSelectedRow();
MagicEdition ed = (MagicEdition) tableEditions.getValueAt(row, 1);
magicEditionDetailPanel.setMagicEdition(ed);
historyPricesPanel.init(null, ed, ed.getSet());
jsonPanel.show(ed);
}
});
btnAdd.addActionListener(e -> {
String name = JOptionPane.showInputDialog(MTGControler.getInstance().getLangService().getCapitalize("NAME") + " ?");
MagicCollection collectionAdd = new MagicCollection();
collectionAdd.setName(name);
try {
dao.saveCollection(collectionAdd);
((LazyLoadingTree.MyNode) getJTree().getModel().getRoot()).add(new DefaultMutableTreeNode(collectionAdd));
getJTree().refresh();
initPopupCollection();
} catch (Exception ex) {
logger.error(ex);
JOptionPane.showMessageDialog(null, ex, MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
});
btnRefresh.addActionListener(e -> ThreadManager.getInstance().execute(() -> {
progressBar.setVisible(true);
tree.refresh();
try {
model.calculate();
lblTotal.setText("Total : " + model.getCountDefaultLibrary() + "/" + model.getCountTotal());
} catch (Exception ex) {
logger.error(ex);
}
model.fireTableDataChanged();
progressBar.setVisible(false);
}, "update Tree"));
btnExport.addActionListener(ae -> {
JPopupMenu menu = new JPopupMenu();
for (final MTGCardsExport exp : MTGControler.getInstance().getEnabledDeckExports()) {
JMenuItem it = new JMenuItem();
it.setIcon(exp.getIcon());
it.setText(exp.getName());
it.addActionListener(arg0 -> ThreadManager.getInstance().execute(() -> {
try {
DefaultMutableTreeNode curr = (DefaultMutableTreeNode) path.getLastPathComponent();
JFileChooser jf = new JFileChooser();
MagicCollection mc = null;
MagicEdition ed = null;
if (curr.getUserObject() instanceof MagicEdition) {
ed = (MagicEdition) curr.getUserObject();
mc = (MagicCollection) ((DefaultMutableTreeNode) curr.getParent()).getUserObject();
} else {
mc = (MagicCollection) curr.getUserObject();
}
jf.setSelectedFile(new File(mc.getName() + exp.getFileExtension()));
int result = jf.showSaveDialog(null);
File f = jf.getSelectedFile();
exp.addObserver((Observable o, Object arg) -> progressBar.setValue((int) arg));
if (result == JFileChooser.APPROVE_OPTION) {
progressBar.setVisible(true);
if (ed == null)
exp.export(dao.listCardsFromCollection(mc), f);
else
exp.export(dao.listCardsFromCollection(mc, ed), f);
progressBar.setVisible(false);
JOptionPane.showMessageDialog(null, MTGControler.getInstance().getLangService().combine("EXPORT", "FINISHED"), MTGControler.getInstance().getLangService().getCapitalize("FINISHED"), JOptionPane.INFORMATION_MESSAGE);
}
} catch (Exception e) {
logger.error(e);
progressBar.setVisible(false);
JOptionPane.showMessageDialog(null, e, MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
}, "export collection with " + exp));
menu.add(it);
}
Component b = (Component) ae.getSource();
Point p = b.getLocationOnScreen();
menu.show(b, 0, 0);
menu.setLocation(p.x, p.y + b.getHeight());
});
splitPane.addComponentListener(new ComponentAdapter() {
@Override
public void componentShown(ComponentEvent componentEvent) {
splitPane.setDividerLocation(.5);
removeComponentListener(this);
}
});
tablePrices.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent ev) {
if (ev.getClickCount() == 2 && !ev.isConsumed()) {
ev.consume();
try {
String url = tablePrices.getValueAt(tablePrices.getSelectedRow(), CardsPriceTableModel.ROW_URL).toString();
Desktop.getDesktop().browse(new URI(url));
} catch (Exception e) {
logger.error(e);
}
}
}
});
tree.addTreeSelectionListener(tse -> {
path = tse.getPath();
final DefaultMutableTreeNode curr = (DefaultMutableTreeNode) path.getLastPathComponent();
if (curr.getUserObject() instanceof String) {
btnExport.setEnabled(false);
btnExportPriceCatalog.setEnabled(false);
statsPanel.enabledAdd(false);
}
if (curr.getUserObject() instanceof MagicCollection) {
btnExport.setEnabled(true);
btnExportPriceCatalog.setEnabled(true);
selectedcol = (MagicCollection) curr.getUserObject();
statsPanel.enabledAdd(false);
btnExport.setEnabled(true);
btnExportPriceCatalog.setEnabled(true);
}
if (curr.getUserObject() instanceof MagicEdition) {
magicEditionDetailPanel.setMagicEdition((MagicEdition) curr.getUserObject());
btnExport.setEnabled(true);
btnExportPriceCatalog.setEnabled(false);
statsPanel.enabledAdd(false);
ThreadManager.getInstance().execute(() -> {
try {
MagicCollection collec = (MagicCollection) ((DefaultMutableTreeNode) curr.getParent()).getUserObject();
List<MagicCard> list = dao.listCardsFromCollection(collec, (MagicEdition) curr.getUserObject());
rarityRepartitionPanel.init(list);
typeRepartitionPanel.init(list);
manaRepartitionPanel.init(list);
historyPricesPanel.init(null, (MagicEdition) curr.getUserObject(), curr.getUserObject().toString());
jsonPanel.show(curr.getUserObject());
} catch (Exception e) {
logger.error(e);
}
}, "Refresh Collection");
}
if (curr.getUserObject() instanceof MagicCard) {
final MagicCard card = (MagicCard) ((DefaultMutableTreeNode) path.getLastPathComponent()).getUserObject();
btnExport.setEnabled(false);
btnExportPriceCatalog.setEnabled(false);
magicCardDetailPanel.setMagicCard((MagicCard) curr.getUserObject());
magicEditionDetailPanel.setMagicEdition(card.getEditions().get(0));
magicCardDetailPanel.enableThumbnail(true);
jsonPanel.show(curr.getUserObject());
ThreadManager.getInstance().execute(() -> {
statsPanel.initMagicCardStock(card, (MagicCollection) ((DefaultMutableTreeNode) curr.getParent().getParent()).getUserObject());
statsPanel.enabledAdd(true);
}, "Update Collection");
if (tabbedPane.getSelectedIndex() == 2) {
loadPrices(card);
}
ThreadManager.getInstance().execute(() -> {
try {
historyPricesPanel.init(card, null, card.getName());
} catch (Exception e) {
logger.error(e);
}
}, "update history");
}
});
tabbedPane.addChangeListener(e -> {
if ((tabbedPane.getSelectedIndex() == 2) && ((DefaultMutableTreeNode) tree.getLastSelectedPathComponent()).getUserObject() instanceof MagicCard)
loadPrices((MagicCard) ((DefaultMutableTreeNode) tree.getLastSelectedPathComponent()).getUserObject());
});
tree.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
if (SwingUtilities.isRightMouseButton(e)) {
int row = tree.getClosestRowForLocation(e.getX(), e.getY());
tree.setSelectionRow(row);
final DefaultMutableTreeNode node = (DefaultMutableTreeNode) tree.getLastSelectedPathComponent();
if (node.getUserObject() instanceof MagicEdition) {
popupMenuEdition.show(e.getComponent(), e.getX(), e.getY());
}
if (node.getUserObject() instanceof MagicCard) {
popupMenuCards.show(e.getComponent(), e.getX(), e.getY());
}
if (node.getUserObject() instanceof MagicCollection) {
JPopupMenu p = new JPopupMenu();
JMenuItem it = new JMenuItem("Mass movement");
p.add(it);
it.addActionListener(ae -> {
MassMoverDialog d = new MassMoverDialog((MagicCollection) node.getUserObject(), null);
d.setVisible(true);
logger.debug("closing mass import with change =" + d.hasChange());
});
p.show(e.getComponent(), e.getX(), e.getY());
}
}
}
});
btnMassCollection.addActionListener(ae -> {
MassCollectionImporterDialog diag = new MassCollectionImporterDialog();
diag.setVisible(true);
try {
model.calculate();
} catch (Exception e) {
logger.error(e);
}
model.fireTableDataChanged();
});
btnExportPriceCatalog.addActionListener(ae -> ThreadManager.getInstance().execute(() -> {
try {
PriceCatalogExportDialog diag = new PriceCatalogExportDialog(selectedcol);
diag.setVisible(true);
if (diag.value()) {
progressBar.setVisible(true);
progressBar.setStringPainted(true);
progressBar.setMinimum(0);
progressBar.setMaximum(dao.getCardsCount(selectedcol, null));
CSVExport exp = new CSVExport();
exp.addObserver((Observable o, Object arg) -> progressBar.setValue((int) arg));
exp.exportPriceCatalog(dao.listCardsFromCollection(selectedcol), diag.getDest(), diag.getPriceProviders());
JOptionPane.showMessageDialog(null, MTGControler.getInstance().getLangService().combine("EXPORT", "FINISHED"));
progressBar.setVisible(false);
}
} catch (Exception e) {
logger.error(e);
}
}, "btnExportPriceCatalog export Prices"));
btnGenerateWebSite.addActionListener(ae -> ThreadManager.getInstance().execute(() -> {
try {
WebSiteGeneratorDialog diag = new WebSiteGeneratorDialog(dao.getCollections());
diag.setVisible(true);
if (diag.value()) {
progressBar.setVisible(true);
progressBar.setStringPainted(true);
progressBar.setMinimum(0);
int max = 0;
for (MagicCollection col : diag.getSelectedCollections()) max += dao.getCardsCount(col, null);
progressBar.setMaximum(max);
progressBar.setValue(0);
MagicWebSiteGenerator gen = new MagicWebSiteGenerator(diag.getTemplate(), diag.getDest().getAbsolutePath());
gen.addObserver((Observable o, Object arg) -> progressBar.setValue((int) arg));
gen.generate(diag.getSelectedCollections(), diag.getPriceProviders());
int res = JOptionPane.showConfirmDialog(null, MTGControler.getInstance().getLangService().getCapitalize("WEBSITE_CONFIRMATION_VIEW"));
if (res == JOptionPane.YES_OPTION) {
Path p = Paths.get(diag.getDest().getAbsolutePath() + "/index.htm");
Desktop.getDesktop().browse(p.toUri());
}
progressBar.setVisible(false);
}
} catch (Exception e) {
logger.error("error generating website", e);
progressBar.setVisible(false);
JOptionPane.showMessageDialog(null, e, MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
}, "btnGenerateWebSite generate website"));
btnAddAllSet.addActionListener(evt -> {
MagicEdition ed = (MagicEdition) tableEditions.getValueAt(tableEditions.getSelectedRow(), 1);
int res = JOptionPane.showConfirmDialog(null, MTGControler.getInstance().getLangService().getCapitalize("CONFIRM_COLLECTION_ITEM_ADDITION", ed, MTGControler.getInstance().get("default-library")));
if (res == JOptionPane.YES_OPTION)
try {
List<MagicCard> list = provider.searchCardByCriteria("set", ed.getId(), null, false);
logger.debug("save " + list.size() + " cards from " + ed.getId());
for (MagicCard mc : list) {
MagicCollection col = new MagicCollection();
col.setName(MTGControler.getInstance().get("default-library"));
dao.saveCard(mc, col);
}
model.calculate();
model.fireTableDataChanged();
} catch (Exception e) {
JOptionPane.showMessageDialog(null, e.getMessage(), MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
logger.error(e);
}
});
btnRemove.addActionListener(evt -> {
MagicCollection col = (MagicCollection) ((DefaultMutableTreeNode) path.getPathComponent(1)).getUserObject();
int res = 0;
DefaultMutableTreeNode curr = (DefaultMutableTreeNode) path.getLastPathComponent();
if (curr.getUserObject() instanceof MagicCard) {
MagicCard card = (MagicCard) ((DefaultMutableTreeNode) path.getLastPathComponent()).getUserObject();
try {
res = JOptionPane.showConfirmDialog(null, MTGControler.getInstance().getLangService().getCapitalize("CONFIRM_COLLECTION_ITEM_DELETE", card, col));
if (res == JOptionPane.YES_OPTION) {
dao.removeCard(card, col);
curr.removeFromParent();
}
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, e.getMessage(), MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
}
if (curr.getUserObject() instanceof MagicEdition) {
MagicEdition me = (MagicEdition) ((DefaultMutableTreeNode) path.getPathComponent(2)).getUserObject();
try {
res = JOptionPane.showConfirmDialog(null, MTGControler.getInstance().getLangService().getCapitalize("CONFIRM_COLLECTION_ITEM_DELETE", me, col));
if (res == JOptionPane.YES_OPTION) {
dao.removeEdition(me, col);
curr.removeFromParent();
}
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, e.getMessage(), MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
}
if (curr.getUserObject() instanceof MagicCollection) {
try {
res = JOptionPane.showConfirmDialog(null, MTGControler.getInstance().getLangService().getCapitalize("CONFIRM_COLLECTION_DELETE", col, dao.getCardsCount(col, null)));
if (res == JOptionPane.YES_OPTION) {
dao.removeCollection(col);
curr.removeFromParent();
}
} catch (SQLException e) {
JOptionPane.showMessageDialog(null, e.getMessage(), MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
}
if (res == JOptionPane.YES_OPTION) {
try {
model.calculate();
} catch (Exception e) {
JOptionPane.showMessageDialog(null, e.getMessage(), MTGControler.getInstance().getLangService().getError(), JOptionPane.ERROR_MESSAGE);
}
tree.refresh();
}
});
}
use of org.magic.api.beans.MagicEdition in project MtgDesktopCompanion by nicho92.
the class MagicEditionDetailPanel method initDataBindings.
protected BindingGroup initDataBindings() {
BeanProperty<MagicEdition, String> borderProperty = BeanProperty.create("border");
BeanProperty<JTextField, String> textProperty2 = BeanProperty.create("text");
AutoBinding<MagicEdition, String, JTextField, String> autoBinding2 = Bindings.createAutoBinding(UpdateStrategy.READ_WRITE, magicEdition, borderProperty, borderJTextField, textProperty2);
autoBinding2.bind();
//
BeanProperty<MagicEdition, Integer> cardCountProperty = BeanProperty.create("cardCount");
BeanProperty<JTextField, String> valueProperty = BeanProperty.create("text");
AutoBinding<MagicEdition, Integer, JTextField, String> autoBinding3 = Bindings.createAutoBinding(UpdateStrategy.READ_WRITE, magicEdition, cardCountProperty, cardCountTextField, valueProperty);
autoBinding3.bind();
//
BeanProperty<MagicEdition, String> releaseDateProperty = BeanProperty.create("releaseDate");
BeanProperty<JTextField, String> textProperty6 = BeanProperty.create("text");
AutoBinding<MagicEdition, String, JTextField, String> autoBinding7 = Bindings.createAutoBinding(UpdateStrategy.READ_WRITE, magicEdition, releaseDateProperty, releaseDateJTextField, textProperty6);
autoBinding7.bind();
//
BeanProperty<MagicEdition, String> setProperty = BeanProperty.create("set");
BeanProperty<JTextField, String> textProperty7 = BeanProperty.create("text");
AutoBinding<MagicEdition, String, JTextField, String> autoBinding8 = Bindings.createAutoBinding(UpdateStrategy.READ_WRITE, magicEdition, setProperty, setJTextField, textProperty7);
autoBinding8.bind();
//
BeanProperty<MagicEdition, String> typeProperty = BeanProperty.create("type");
BeanProperty<JTextField, String> textProperty10 = BeanProperty.create("text");
AutoBinding<MagicEdition, String, JTextField, String> autoBinding11 = Bindings.createAutoBinding(UpdateStrategy.READ_WRITE, magicEdition, typeProperty, typeJTextField, textProperty10);
autoBinding11.bind();
BeanProperty<MagicEdition, String> blockProperty = BeanProperty.create("block");
BeanProperty<JTextField, String> textProperty11 = BeanProperty.create("text");
AutoBinding<MagicEdition, String, JTextField, String> autoBinding12 = Bindings.createAutoBinding(UpdateStrategy.READ_WRITE, magicEdition, blockProperty, blockJTextField, textProperty11);
autoBinding12.bind();
BeanProperty<MagicEdition, String> idProperty = BeanProperty.create("id");
BeanProperty<JTextField, String> textProperty12 = BeanProperty.create("text");
AutoBinding<MagicEdition, String, JTextField, String> autoBinding13 = Bindings.createAutoBinding(UpdateStrategy.READ_WRITE, magicEdition, idProperty, idJtextField, textProperty12);
autoBinding13.bind();
BeanProperty<MagicEdition, Boolean> onlineProperty = BeanProperty.create("onlineOnly");
BeanProperty<JCheckBox, Boolean> chkProperty13 = BeanProperty.create("selected");
AutoBinding<MagicEdition, Boolean, JCheckBox, Boolean> autoBinding14 = Bindings.createAutoBinding(UpdateStrategy.READ_WRITE, magicEdition, onlineProperty, chkOnline, chkProperty13);
autoBinding14.bind();
//
BindingGroup bindingGroup = new BindingGroup();
//
bindingGroup.addBinding(autoBinding2);
bindingGroup.addBinding(autoBinding3);
bindingGroup.addBinding(autoBinding7);
bindingGroup.addBinding(autoBinding8);
bindingGroup.addBinding(autoBinding11);
bindingGroup.addBinding(autoBinding12);
bindingGroup.addBinding(autoBinding13);
bindingGroup.addBinding(autoBinding14);
return bindingGroup;
}
use of org.magic.api.beans.MagicEdition in project MtgDesktopCompanion by nicho92.
the class SealedPanel method open.
protected void open() {
deck = new MagicDeck();
deck.setDateCreation(new Date());
deck.setDescription("Sealed from " + model.getSealedPack());
deck.setName("sealed from " + model.getSealedPack().toList().size() + " boosters");
panelOpenedBooster.clear();
panelDeck.removeAll();
panelDeck.revalidate();
panelDeck.repaint();
ThreadManager.getInstance().execute(() -> {
int column = 0;
list = new ArrayList<>();
lblLoading.setVisible(true);
for (Entry<MagicEdition, Integer> ed : model.getSealedPack().getEntries()) {
try {
for (int i = 0; i < ed.getValue(); i++) {
Booster b = MTGControler.getInstance().getEnabledProviders().generateBooster(ed.getKey());
column++;
for (MagicCard mc : b.getCards()) {
list.add(mc);
DisplayableCard c = createCard(mc);
panelOpenedBooster.addComponent(c, column);
}
}
} catch (IOException e) {
MTGLogger.printStackTrace(e);
lblLoading.setVisible(false);
}
}
panelOpenedBooster.setList(list);
refreshStats();
lblLoading.setVisible(false);
});
}
use of org.magic.api.beans.MagicEdition in project MtgDesktopCompanion by nicho92.
the class SealedPanel method addLands.
private void addLands() {
int qte = Integer.parseInt(txtNumberLand.getText());
String land = cboLands.getSelectedItem().toString();
MagicEdition ed = new MagicEdition();
ed.setId(MTGControler.getInstance().get("default-land-deck"));
try {
MagicCard mc = MTGControler.getInstance().getEnabledProviders().searchCardByCriteria("name", land, ed, true).get(0);
for (int i = 0; i < qte; i++) {
deck.add(mc);
DisplayableCard c = createCard(mc);
panelDeck.addComponent(c);
panelDeck.postTreatment(c);
}
refreshStats();
} catch (IOException e) {
MTGLogger.printStackTrace(e);
}
}
Aggregations