Skip to content

Commit 987c544

Browse files
MarijnS95elinorbgr
authored andcommitted
cursor: Rename set_callback() to set_fallback() to match intent
The intent of this function is to set a _fallback_ that `get_cursor()` uses when no cursor can be loaded. This fallback _is_ a _callback_ (or _closure_ / `Fn` in Rust terms) that calculates an optional fallback value based on the given name and size of the requested cursor. Also make sure this "fallback" setter is properly linked from `get_cursor()`, making it easier to find when users attempt to understand the docs.
1 parent c1a6269 commit 987c544

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

wayland-cursor/src/lib.rs

+8-6
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,9 @@ impl CursorTheme {
190190
///
191191
/// This method returns [`None`] if this cursor is not provided either by the theme, or by one of its parents.
192192
///
193-
/// If a fallback is set, it will use the data from fallback
193+
/// If a [fallback is set], it will use the data from fallback.
194+
///
195+
/// [fallback is set]: Self::set_fallback()
194196
pub fn get_cursor(&mut self, name: &str) -> Option<&Cursor> {
195197
match self.cursors.iter().position(|cursor| cursor.name == name) {
196198
Some(i) => Some(&self.cursors[i]),
@@ -211,24 +213,24 @@ impl CursorTheme {
211213
}
212214
}
213215

214-
/// Set a callback to load the cursor data, in case the system theme is missing a cursor that you need.
216+
/// Set a fallback to load the cursor data, in case the system theme is missing a cursor that you need.
215217
///
216-
/// Your callback will be invoked with he name and size of the requested cursor and should return a byte
217-
/// array with the contents of an `xcursor` file, or `None` if you don't provide a fallback for this cursor.
218+
/// Your fallback will be invoked with the name and size of the requested cursor and should return a byte
219+
/// array with the contents of an `xcursor` file, or [`None`] if you don't provide a fallback for this cursor.
218220
///
219221
/// For example, this defines a generic fallback cursor image and uses it for all missing cursors:
220222
/// ```ignore
221223
/// use wayland_cursor::CursorTheme;
222224
/// use wayland_client::{Connection, backend::InvalidId, protocol::wl_shm};
223225
/// fn example(conn: &Connection, shm: wl_shm::WlShm, size: u32) -> Result<CursorTheme, InvalidId> {
224226
/// let mut theme = CursorTheme::load_or(conn, shm, "default", size)?;
225-
/// theme.set_callback(|name, size| {
227+
/// theme.set_fallback(|name, size| {
226228
/// include_bytes!("./icons/default")
227229
/// });
228230
/// Ok(theme)
229231
/// }
230232
/// ```
231-
pub fn set_callback<F>(&mut self, fallback: F)
233+
pub fn set_fallback<F>(&mut self, fallback: F)
232234
where
233235
F: Fn(&str, u32) -> Option<Cow<'static, [u8]>> + 'static,
234236
{

0 commit comments

Comments
 (0)