private static final long serialVersionUID = 1L;
private BookActionListener action;
private Color backgroundColor;
+ private Color backgroundColorDef;
+ private Color backgroundColorDefPane;
private GuiReader reader;
private List<GuiReaderBookInfo> infos;
private List<GuiReaderBook> books;
*/
public GuiReaderGroup(GuiReader reader, String title, Color backgroundColor) {
this.reader = reader;
- this.backgroundColor = backgroundColor;
this.pane = new JPanel();
-
pane.setLayout(new WrapLayout(WrapLayout.LEADING, 5, 5));
- if (backgroundColor != null) {
- pane.setBackground(backgroundColor);
- setBackground(backgroundColor);
- }
+
+ this.backgroundColorDef = getBackground();
+ this.backgroundColorDefPane = pane.getBackground();
+ setBackground(backgroundColor);
setLayout(new BorderLayout(0, 10));
});
}
+ /**
+ * Note: this class supports NULL as a background color, which will revert
+ * it to its default state.
+ * <p>
+ * Note: this class' implementation will also set the main pane background
+ * color at the same time.
+ * <p>
+ * Sets the background color of this component. The background color is used
+ * only if the component is opaque, and only by subclasses of
+ * <code>JComponent</code> or <code>ComponentUI</code> implementations.
+ * Direct subclasses of <code>JComponent</code> must override
+ * <code>paintComponent</code> to honor this property.
+ * <p>
+ * It is up to the look and feel to honor this property, some may choose to
+ * ignore it.
+ *
+ * @param bg
+ * the desired background <code>Color</code>
+ * @see java.awt.Component#getBackground
+ * @see #setOpaque
+ *
+ * @beaninfo preferred: true bound: true attribute: visualUpdate true
+ * description: The background color of the component.
+ */
+ @Override
+ public void setBackground(Color backgroundColor) {
+ Color cme = backgroundColor == null ? backgroundColorDef
+ : backgroundColor;
+ Color cpane = backgroundColor == null ? backgroundColorDefPane
+ : backgroundColor;
+
+ if (pane != null) { // can happen at theme setup time
+ pane.setBackground(cpane);
+ }
+ super.setBackground(cme);
+ }
+
/**
* The title of this group (can be NULL for "no title", an empty
* {@link String} will trigger a default title for empty groups)
package be.nikiroo.fanfix.reader.ui;
import java.awt.BorderLayout;
+import java.awt.Color;
import java.awt.Component;
import java.awt.EventQueue;
import java.awt.event.ActionEvent;
}
private void updateBooks(final List<GuiReaderBookInfo> infos) {
+ setWaitingScreen(true);
inUi(new Runnable() {
@Override
public void run() {
books.refreshBooks(infos, seeWordcount);
+ setWaitingScreen(false);
}
});
}
}).start();
}
- public void searchTag(SupportType searchOn, int page, int item,
- SearchableTag tag) {
+ public void searchTag(final SupportType searchOn, final int page,
+ final int item, final SearchableTag tag) {
+
+ setWaitingScreen(true);
updateSupportType(searchOn);
updateSearchBy(true);
updateTags(tag);
updatePages(page, maxPage);
- BasicSearchable search = BasicSearchable.getSearchable(searchOn);
-
- if (tag != null) {
- int maxPage = 0;
- try {
- maxPage = search.searchPages(tag);
- } catch (IOException e) {
- Instance.getTraceHandler().error(e);
- }
-
- updatePages(page, maxPage);
-
- if (page > 0) {
- List<MetaData> metas = null;
- List<SearchableTag> subtags = null;
- int count;
+ new Thread(new Runnable() {
+ @Override
+ public void run() {
+ BasicSearchable search = BasicSearchable
+ .getSearchable(searchOn);
- if (tag.isLeaf()) {
+ if (tag != null) {
+ int maxPage = 0;
try {
- metas = search.search(tag, page);
+ maxPage = search.searchPages(tag);
} catch (IOException e) {
- metas = new ArrayList<MetaData>();
Instance.getTraceHandler().error(e);
}
- count = metas.size();
- } else {
- subtags = tag.getChildren();
- count = subtags.size();
- }
- if (item > 0) {
- if (item <= count) {
- if (metas != null) {
- MetaData meta = metas.get(item - 1);
- // TODO: select story
+ updatePages(page, maxPage);
+
+ if (page > 0) {
+ List<MetaData> metas = null;
+ List<SearchableTag> subtags = null;
+ int count;
+
+ if (tag.isLeaf()) {
+ try {
+ metas = search.search(tag, page);
+ } catch (IOException e) {
+ metas = new ArrayList<MetaData>();
+ Instance.getTraceHandler().error(e);
+ }
+ count = metas.size();
} else {
- SearchableTag subtag = subtags.get(item - 1);
- // TODO: search on tag
+ subtags = tag.getChildren();
+ count = subtags.size();
+ }
+
+ if (item > 0) {
+ if (item <= count) {
+ if (metas != null) {
+ MetaData meta = metas.get(item - 1);
+ // TODO: select story
+ } else {
+ SearchableTag subtag = subtags
+ .get(item - 1);
+ // TODO: search on tag
+ }
+ }
}
}
}
+ setWaitingScreen(false);
}
- }
+ }).start();
}
/**
* @param run
* the action to run
*/
- public void inUi(final Runnable run) {
+ private void inUi(final Runnable run) {
if (EventQueue.isDispatchThread()) {
run.run();
} else {
}
}
}
+
+ private void setWaitingScreen(final boolean waiting) {
+ inUi(new Runnable() {
+ @Override
+ public void run() {
+ GuiReaderSearch.this.setEnabled(!waiting);
+ // TODO: this is just an example of something to do
+ if (waiting) {
+ books.setBackground(Color.RED);
+ } else {
+ books.setBackground(null);
+ }
+ }
+ });
+ }
}