An Eclipse RCP reimplementation of bgg1tool by Nand. See http://www.nand.it/nandeck/ for the original tool.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

337 Zeilen
12KB

  1. package xyz.veronie.bgg.ui.parts;
  2. import java.util.List;
  3. import javax.annotation.PostConstruct;
  4. import javax.inject.Inject;
  5. import org.eclipse.core.commands.ParameterizedCommand;
  6. import org.eclipse.e4.core.commands.ECommandService;
  7. import org.eclipse.e4.core.commands.EHandlerService;
  8. import org.eclipse.e4.core.di.annotations.Optional;
  9. import org.eclipse.e4.core.services.events.IEventBroker;
  10. import org.eclipse.e4.ui.di.UIEventTopic;
  11. import org.eclipse.e4.ui.model.application.MApplication;
  12. import org.eclipse.e4.ui.model.application.ui.basic.MPart;
  13. import org.eclipse.e4.ui.workbench.modeling.EModelService;
  14. import org.eclipse.e4.ui.workbench.modeling.EPartService;
  15. import org.eclipse.e4.ui.workbench.modeling.EPartService.PartState;
  16. import org.eclipse.jface.viewers.ArrayContentProvider;
  17. import org.eclipse.jface.viewers.ColumnLabelProvider;
  18. import org.eclipse.jface.viewers.ISelectionChangedListener;
  19. import org.eclipse.jface.viewers.IStructuredSelection;
  20. import org.eclipse.jface.viewers.SelectionChangedEvent;
  21. import org.eclipse.jface.viewers.TableViewer;
  22. import org.eclipse.jface.viewers.TableViewerColumn;
  23. import org.eclipse.swt.SWT;
  24. import org.eclipse.swt.events.MouseAdapter;
  25. import org.eclipse.swt.events.MouseEvent;
  26. import org.eclipse.swt.graphics.Image;
  27. import org.eclipse.swt.layout.GridData;
  28. import org.eclipse.swt.layout.GridLayout;
  29. import org.eclipse.swt.widgets.Button;
  30. import org.eclipse.swt.widgets.Composite;
  31. import org.eclipse.swt.widgets.Label;
  32. import org.eclipse.swt.widgets.Table;
  33. import org.eclipse.swt.widgets.TableColumn;
  34. import org.eclipse.wb.swt.ResourceManager;
  35. import org.eclipse.wb.swt.SWTResourceManager;
  36. import xyz.veronie.bgg.result.Thing;
  37. import xyz.veronie.bgg.result.ThingProvider;
  38. import xyz.veronie.bgg.types.EventConstants;
  39. import xyz.veronie.bgg.ui.helpers.BatColors;
  40. import xyz.veronie.bgg.ui.helpers.BatLayouts;
  41. // TODO: import result.txt from bggtool
  42. // TODO: image sizes in result table
  43. // TODO: fix encoding
  44. // TODO: fetch details from BGG
  45. // TODO: export to results.txt format
  46. // TODO: generate PDF with nandeck
  47. // TODO: handle thing list overwrite
  48. // TODO: Display selection details on game
  49. // TODO: cache family/geeklist descriptions
  50. // TODO: allow different screen scalings
  51. // TODO: handle existing name
  52. @SuppressWarnings("restriction")
  53. public class BatMain {
  54. private static final String UNNAMED_LIST = "(unsaved list)";
  55. private Table tableGameList;
  56. private TableViewer tableViewer;
  57. @Inject
  58. private ThingProvider thingProvider;
  59. @Inject
  60. private IEventBroker eventBroker;
  61. private Label lblResultStatus;
  62. private Button btnSave;
  63. private Button btnUndo;
  64. private Button btnExport;
  65. private Label lblListName;
  66. @Inject
  67. public BatMain() {}
  68. @PostConstruct
  69. public void postConstruct(Composite parent, MApplication application,
  70. EPartService partService, EModelService modelService,
  71. ECommandService commandService, EHandlerService handlerService)
  72. {
  73. parent.setBackground(BatColors.getBackgroundColor());
  74. parent.setBackgroundMode(SWT.INHERIT_FORCE);
  75. parent.setLayout(new GridLayout(1, false));
  76. Composite main = new Composite(parent, SWT.NONE);
  77. GridData gd_main = new GridData(SWT.LEFT, SWT.TOP, true, true, 1, 1);
  78. gd_main.minimumHeight = 192;
  79. gd_main.minimumWidth = 348;
  80. main.setLayoutData(gd_main);
  81. GridLayout gl_main = new GridLayout(1, false);
  82. BatLayouts.applyStandardSpacing(gl_main);
  83. main.setLayout(gl_main);
  84. Composite buttonRow = new Composite(main, SWT.NONE);
  85. GridLayout gl_buttonRow = new GridLayout(5, false);
  86. BatLayouts.applyStandardSpacing(gl_buttonRow);
  87. buttonRow.setLayout(gl_buttonRow);
  88. buttonRow.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, true, false, 1, 1));
  89. Button btnFetch = new Button(buttonRow, SWT.NONE);
  90. btnFetch.addMouseListener(new MouseAdapter() {
  91. @Override
  92. public void mouseUp(MouseEvent e) {
  93. List<MPart> parts = modelService.findElements(application, "xyz.veronie.bgg.ui.part.fetch", MPart.class);
  94. if(parts != null && parts.size() >= 1) {
  95. MPart fetchPart = parts.get(0);
  96. // partService.showPart(fetchPart, PartState.CREATE);
  97. fetchPart.setVisible(true);
  98. partService.showPart(fetchPart, PartState.ACTIVATE);
  99. // modelService.detach(fetchPart, x, y, width, height);
  100. }
  101. }
  102. });
  103. btnFetch.setToolTipText("Fetch games from BGG");
  104. btnFetch.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/noun_Download_60x60.png"));
  105. btnSave = new Button(buttonRow, SWT.NONE);
  106. btnSave.addMouseListener(new MouseAdapter() {
  107. @Override
  108. public void mouseUp(MouseEvent e) {
  109. ParameterizedCommand cmd =
  110. commandService.createCommand("xyz.veronie.bgg.ui.command.save", null);
  111. if (handlerService.canExecute(cmd)){
  112. handlerService.executeHandler(cmd);
  113. }
  114. }
  115. });
  116. btnSave.setToolTipText("Save list of games");
  117. btnSave.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/noun_Save_60x60.png"));
  118. btnSave.setEnabled(false);
  119. Button btnLoad = new Button(buttonRow, SWT.NONE);
  120. btnLoad.addMouseListener(new MouseAdapter() {
  121. @Override
  122. public void mouseUp(MouseEvent e) {
  123. ParameterizedCommand cmd =
  124. commandService.createCommand("xyz.veronie.bgg.ui.command.load", null);
  125. if (handlerService.canExecute(cmd)){
  126. handlerService.executeHandler(cmd);
  127. }
  128. }
  129. });
  130. btnLoad.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/noun_open_60x60.png"));
  131. btnLoad.setToolTipText("Load list of games");
  132. btnUndo = new Button(buttonRow, SWT.NONE);
  133. btnUndo.setToolTipText("Undo game list operation");
  134. btnUndo.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/noun_Undo_60x60.png"));
  135. btnUndo.setEnabled(false);
  136. btnExport = new Button(buttonRow, SWT.NONE);
  137. btnExport.setImage(ResourceManager.getPluginImage("xyz.veronie.bgg.ui", "icons/export_nandeck_60x60.png"));
  138. btnExport.setToolTipText("Export for nanDeck");
  139. btnExport.setEnabled(false);
  140. Composite centerComposite = new Composite(main, SWT.NONE);
  141. GridLayout gl_centerComposite = new GridLayout(1, false);
  142. BatLayouts.applyStandardSpacing(gl_centerComposite);
  143. centerComposite.setLayout(gl_centerComposite);
  144. centerComposite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
  145. lblListName = new Label(centerComposite, SWT.NONE);
  146. lblListName.setText(UNNAMED_LIST);
  147. lblListName.setFont(SWTResourceManager.getFont("Segoe UI", 11, SWT.NORMAL));
  148. lblListName.setLayoutData(new GridData(SWT.FILL, SWT.TOP, true, false, 1, 1));
  149. Composite tableComposite = new Composite(centerComposite, SWT.NONE);
  150. tableComposite.setBackground(SWTResourceManager.getColor(SWT.COLOR_WHITE));
  151. GridLayout gl_tableComposite = new GridLayout(1, false);
  152. BatLayouts.applyZeroSpacing(gl_tableComposite);
  153. tableComposite.setLayout(gl_tableComposite);
  154. tableComposite.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true, 1, 1));
  155. tableViewer = new TableViewer(tableComposite, SWT.BORDER | SWT.FULL_SELECTION | SWT.MULTI);
  156. tableGameList = tableViewer.getTable();
  157. tableGameList.setLinesVisible(true);
  158. tableGameList.setHeaderVisible(true);
  159. GridData gd_tableGameList = new GridData(SWT.LEFT, SWT.FILL, true, true, 1, 1);
  160. gd_tableGameList.heightHint = 466;
  161. tableGameList.setLayoutData(gd_tableGameList);
  162. tableGameList.setFont(SWTResourceManager.getFont("Segoe UI", 10, SWT.NORMAL));
  163. createColumns(tableViewer);
  164. tableViewer.setContentProvider(new ArrayContentProvider());
  165. // Get the content for the viewer, setInput will call getElements in the
  166. // contentProvider
  167. tableViewer.setInput(thingProvider.getThings());
  168. // make the selection available to other views
  169. // TODO: getSite().setSelectionProvider(viewer);
  170. // Set the sorter for the table
  171. tableViewer.addSelectionChangedListener(new ISelectionChangedListener() {
  172. @Override
  173. public void selectionChanged(SelectionChangedEvent event) {
  174. IStructuredSelection selection = tableViewer.getStructuredSelection();
  175. Thing thing = (Thing)selection.getFirstElement();
  176. eventBroker.send(EventConstants.TOPIC_THING_SELECTION, thing);
  177. }
  178. });
  179. Composite statusRow = new Composite(main, SWT.NONE);
  180. statusRow.setLayoutData(new GridData(SWT.LEFT, SWT.TOP, false, false, 1, 1));
  181. GridLayout gl_statusRow = new GridLayout(1, false);
  182. BatLayouts.applyStandardSpacing(gl_statusRow);
  183. statusRow.setLayout(gl_statusRow);
  184. lblResultStatus = new Label(statusRow, SWT.NONE);
  185. lblResultStatus.setText("0 items");
  186. }
  187. public TableViewer getViewer() {
  188. return tableViewer;
  189. }
  190. // This will create the columns for the table
  191. private void createColumns(final TableViewer viewer) {
  192. TableViewerColumn colThumbnail = createTableViewerColumn(Thing.ThumbHeader, 120, 0);
  193. colThumbnail.setLabelProvider(new ColumnLabelProvider() {
  194. @Override
  195. public Image getImage(Object element) {
  196. Thing t = (Thing) element;
  197. Image img = t.getThumbnail();
  198. return img;
  199. }
  200. @Override
  201. public String getText(Object element) {
  202. return "";
  203. }
  204. });
  205. TableViewerColumn colName = createTableViewerColumn(Thing.NameHeader, 400, 1);
  206. colName.setLabelProvider(new ColumnLabelProvider() {
  207. @Override
  208. public String getText(Object element) {
  209. Thing t = (Thing) element;
  210. return t.getField((int)colName.getColumn().getData());
  211. }
  212. });
  213. // https://stackoverflow.com/questions/12641354/putting-an-image-in-to-a-jface-table-cell-is-causing-gap-for-image-to-appear-in
  214. TableViewerColumn colId = createTableViewerColumn(Thing.IdHeader, 100, 2);
  215. colId.setLabelProvider(new ColumnLabelProvider() {
  216. @Override
  217. public String getText(Object element) {
  218. Thing t = (Thing) element;
  219. return t.getField((int)colId.getColumn().getData());
  220. }
  221. });
  222. }
  223. private TableViewerColumn createTableViewerColumn(String title, int bound, final int colNumber) {
  224. final TableViewerColumn viewerColumn = new TableViewerColumn(tableViewer,
  225. SWT.NONE);
  226. final TableColumn column = viewerColumn.getColumn();
  227. column.setText(title);
  228. column.setWidth(bound);
  229. column.setAlignment(SWT.LEFT);
  230. column.setResizable(true);
  231. column.setMoveable(true);
  232. column.setData(colNumber);
  233. return viewerColumn;
  234. }
  235. /**
  236. * Passing the focus request to the viewer's control.
  237. */
  238. public void setFocus() {
  239. tableViewer.getControl().setFocus();
  240. }
  241. @Inject
  242. @Optional
  243. private void subscribeTopicResultChanged
  244. (@UIEventTopic(EventConstants.TOPIC_RESULT_CHANGED)
  245. String listName) {
  246. System.out.println("TOPIC_RESULT_CHANGED");
  247. List<Thing> things = thingProvider.getThings();
  248. tableViewer.setInput(things);
  249. for (TableColumn column : tableViewer.getTable().getColumns()) {
  250. column.pack();
  251. }
  252. tableViewer.refresh(true);
  253. if(things != null) {
  254. if(!things.isEmpty()) {
  255. tableViewer.getTable().setTopIndex(0);
  256. }
  257. btnSave.setEnabled(things.size() != 0);
  258. btnExport.setEnabled(things.size() != 0);
  259. lblResultStatus.setText(Integer.toString(things.size()) + " items");
  260. lblResultStatus.redraw();
  261. lblResultStatus.getParent().layout();
  262. if(listName != null && !listName.isEmpty()) {
  263. lblListName.setText("\"" + listName + "\"");
  264. } else {
  265. lblListName.setText(UNNAMED_LIST);
  266. }
  267. }
  268. }
  269. @Inject
  270. @Optional
  271. private void subscribeTopicThingsSaved
  272. (@UIEventTopic(EventConstants.TOPIC_THINGS_SAVED)
  273. String listName) {
  274. System.out.println("TOPIC_THINGS_SAVED for game list '" + listName + "'.");
  275. btnSave.setEnabled(false);
  276. lblListName.setText(listName);
  277. // TODO: implement undo
  278. }
  279. }