retrosaurus 0.1.0

A retro Windows 3.1-styled thesaurus and dictionary for your desktop, powered by the Open English WordNet
1
2
3
4
5
6
7
8
9
10
11
12
//! Dictionary-specific widgets layered on saudade's generic set.

pub mod definition_view;
pub mod layout;
pub mod search_bar;
pub mod shared;
pub mod shell;

pub use definition_view::{DefinitionView, Line, RunStyle, Span, build_document};
pub use search_bar::SearchBar;
pub use shared::Shared;
pub use shell::Shell;