(items in BGG are "things", not just games) some documentationpull/1/head
@@ -13,10 +13,10 @@ | |||||
</children> | </children> | ||||
<children xsi:type="basic:PartSashContainer" xmi:id="_AF1vQEqUEeqT5sxfmvJ5Tg" elementId="de.wt.bgg.ui.partsashcontainer.gamelist"> | <children xsi:type="basic:PartSashContainer" xmi:id="_AF1vQEqUEeqT5sxfmvJ5Tg" elementId="de.wt.bgg.ui.partsashcontainer.gamelist"> | ||||
<children xsi:type="basic:PartStack" xmi:id="_0MbRQEqTEeqT5sxfmvJ5Tg" elementId="de.wt.bgg.ui.partstack.gameslistconf"> | <children xsi:type="basic:PartStack" xmi:id="_0MbRQEqTEeqT5sxfmvJ5Tg" elementId="de.wt.bgg.ui.partstack.gameslistconf"> | ||||
<children xsi:type="basic:Part" xmi:id="_-Mdy0EqTEeqT5sxfmvJ5Tg" elementId="de.wt.bgg.ui.part.gamesconfig" contributionURI="bundleclass://de.wt.bgg.ui/de.wt.bgg.ui.parts.LoadGameDetailsPart" label="Load game details"/> | |||||
<children xsi:type="basic:Part" xmi:id="_-Mdy0EqTEeqT5sxfmvJ5Tg" elementId="de.wt.bgg.ui.part.gamesconfig" contributionURI="bundleclass://de.wt.bgg.ui/de.wt.bgg.ui.parts.LoadThingDetailsPart" label="Load game details"/> | |||||
</children> | </children> | ||||
<children xsi:type="basic:PartStack" xmi:id="_CS1yUEqUEeqT5sxfmvJ5Tg" elementId="de.wt.bgg.ui.partstack.gameslist"> | <children xsi:type="basic:PartStack" xmi:id="_CS1yUEqUEeqT5sxfmvJ5Tg" elementId="de.wt.bgg.ui.partstack.gameslist"> | ||||
<children xsi:type="basic:Part" xmi:id="_Ckm3wEqUEeqT5sxfmvJ5Tg" elementId="de.wt.bgg.ui.part.gamestable" contributionURI="bundleclass://de.wt.bgg.ui/de.wt.bgg.ui.parts.GamesListPart" label="Games list"/> | |||||
<children xsi:type="basic:Part" xmi:id="_Ckm3wEqUEeqT5sxfmvJ5Tg" elementId="de.wt.bgg.ui.part.gamestable" contributionURI="bundleclass://de.wt.bgg.ui/de.wt.bgg.ui.parts.ThingListPart" label="Games list"/> | |||||
</children> | </children> | ||||
</children> | </children> | ||||
</children> | </children> | ||||
@@ -66,7 +66,7 @@ public class SourceFilterBggUser extends Composite { | |||||
/// Create a control for a filter. | /// Create a control for a filter. | ||||
// Filters are tristate: include iff has flag, include iff it does not have the flag, | // Filters are tristate: include iff has flag, include iff it does not have the flag, | ||||
// don't care if it has that flag. | // don't care if it has that flag. | ||||
// TODO: are there more convenient widgets for this? drop-down needs two clicks to set... | |||||
// TODO: create a three-way toggle button instead. | |||||
private void makeFilter(Composite parent, String filterName, int defaultIdx) { | private void makeFilter(Composite parent, String filterName, int defaultIdx) { | ||||
Combo filterCombo = new Combo(parent, SWT.READ_ONLY); | Combo filterCombo = new Combo(parent, SWT.READ_ONLY); | ||||
filterCombo.add("ignored"); | filterCombo.add("ignored"); | ||||
@@ -1,5 +0,0 @@ | |||||
package de.wt.bgg.ui.parts; | |||||
public class GamesListPart { | |||||
} |
@@ -1,5 +0,0 @@ | |||||
package de.wt.bgg.ui.parts; | |||||
public class LoadGameDetailsPart { | |||||
} |
@@ -0,0 +1,5 @@ | |||||
package de.wt.bgg.ui.parts; | |||||
public class LoadThingDetailsPart { | |||||
} |
@@ -0,0 +1,5 @@ | |||||
package de.wt.bgg.ui.parts; | |||||
public class ThingListPart { | |||||
} |