| 1 | package be.nikiroo.fanfix.reader.tui; |
| 2 | |
| 3 | import jexer.TStatusBar; |
| 4 | import be.nikiroo.fanfix.Instance; |
| 5 | import be.nikiroo.fanfix.bundles.Config; |
| 6 | import be.nikiroo.fanfix.bundles.UiConfig; |
| 7 | |
| 8 | class TuiReaderOptionWindow extends TOptionWindow { |
| 9 | public TuiReaderOptionWindow(TuiReaderApplication reader, boolean uiOptions) { |
| 10 | super(reader, uiOptions ? UiConfig.class : Config.class, |
| 11 | uiOptions ? Instance.getUiConfig() : Instance.getConfig(), |
| 12 | "Options"); |
| 13 | |
| 14 | TStatusBar statusBar = reader.setStatusBar(this, "Options"); |
| 15 | } |
| 16 | } |