Struct icon_loader::Icon
source · [−]pub struct Icon { /* private fields */ }Expand description
Struct containing information about a themed icon.
Implementations
sourceimpl Icon
impl Icon
sourcepub fn theme_name(&self) -> &str
pub fn theme_name(&self) -> &str
Returns the associated icon’s theme name.
sourcepub fn file_for_size(&self, size: u16) -> &IconFile
pub fn file_for_size(&self, size: u16) -> &IconFile
Returns the file of the associated icon that fits the given size best and has a scale of 1. If there is no exact fit available, the next bigger one is chosen. If there is no bigger one, the next smaller one is returned. If that cannot be found, the scale restriction is ignored.
Arguments
size- The ideal size of the returned icon file.
Example
use icon_loader::IconLoader;
let loader = IconLoader::new();
if let Ok(icon) = loader.load_icon("minimum") {
let icon_file = icon.file_for_size(32);
}sourcepub fn file_for_size_scaled(&self, size: u16, scale: u16) -> &IconFile
pub fn file_for_size_scaled(&self, size: u16, scale: u16) -> &IconFile
Returns the file of the associated icon that fits the given size and scale best.
If there is no exact fit available, the next bigger size is chosen.
If there is no bigger fit with the given scale, the next smaller one is returned.
If no file with the preferred scale can be found, one with the size size * scale and scale 1 is looked for.
If that cannot be found, the scale restriction is ignored.
Arguments
size- The ideal size of the returned icon file.scale- The preferred scale of the returned icon file.
Example
use icon_loader::IconLoader;
let loader = IconLoader::new();
if let Ok(icon) = loader.load_icon("minimum") {
let icon_file = icon.file_for_size_scaled(32, 2);
}sourcepub fn file_for_size_filtered(
&self,
size: u16,
filter: impl Fn(&IconFile) -> bool
) -> Option<&IconFile>
pub fn file_for_size_filtered(
&self,
size: u16,
filter: impl Fn(&IconFile) -> bool
) -> Option<&IconFile>
Returns the file of the associated icon that fits the given size best and matches the provided filter. If there is no exact fit available, the next bigger one is chosen. If there is no bigger one, the next smaller one is returned. Use this, if you want only files of type PNG or anything like that.
Arguments
size- The ideal size of the returned icon file.filter- A function that takes a reference to anIconFileand returns true, if it passes the test and false otherwise.
Example
use icon_loader::{IconLoader, IconFileType};
let loader = IconLoader::new();
if let Ok(icon) = loader.load_icon("minimum") {
let icon_file = icon.file_for_size_filtered(32, |file| file.icon_type() == IconFileType::PNG);
}Trait Implementations
impl Eq for Icon
impl StructuralEq for Icon
impl StructuralPartialEq for Icon
Auto Trait Implementations
impl RefUnwindSafe for Icon
impl Send for Icon
impl Sync for Icon
impl Unpin for Icon
impl UnwindSafe for Icon
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more