pub struct TrayIconBuilder { /* private fields */ }
Expand description
TrayIcon
builder struct and associated methods.
Implementations§
Source§impl TrayIconBuilder
impl TrayIconBuilder
Sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new TrayIconBuilder
with default TrayIconAttributes
.
See TrayIcon::new
for more info.
Sourcepub fn with_id<I: Into<TrayIconId>>(self, id: I) -> Self
pub fn with_id<I: Into<TrayIconId>>(self, id: I) -> Self
Sets the unique id to build the tray icon with.
Set the a menu for this tray icon.
§Platform-specific:
- Linux: once a menu is set, it cannot be removed or replaced but you can change its content.
Sourcepub fn with_tooltip<S: AsRef<str>>(self, s: S) -> Self
pub fn with_tooltip<S: AsRef<str>>(self, s: S) -> Self
Sourcepub fn with_title<S: AsRef<str>>(self, title: S) -> Self
pub fn with_title<S: AsRef<str>>(self, title: S) -> Self
Set the tray icon title.
§Platform-specific
- Linux: The title will not be shown unless there is an icon as well. The title is useful for numerical and other frequently updated information. In general, it shouldn’t be shown unless a user requests it as it can take up a significant amount of space on the user’s panel. This may not be shown in all visualizations.
- Windows: Unsupported.
Sourcepub fn with_temp_dir_path<P: AsRef<Path>>(self, s: P) -> Self
pub fn with_temp_dir_path<P: AsRef<Path>>(self, s: P) -> Self
Set tray icon temp dir path. Linux only.
On Linux, we need to write the icon to the disk and usually it will
be $XDG_RUNTIME_DIR/tray-icon
or $TEMP/tray-icon
.
Sourcepub fn with_icon_as_template(self, is_template: bool) -> Self
pub fn with_icon_as_template(self, is_template: bool) -> Self
Use the icon as a template. macOS only.
Whether to show the tray menu on left click or not, default is true
. macOS only.
Sourcepub fn id(&self) -> &TrayIconId
pub fn id(&self) -> &TrayIconId
Access the unique id that will be assigned to the tray icon this builder will create.
Trait Implementations§
Source§impl Default for TrayIconBuilder
impl Default for TrayIconBuilder
Source§fn default() -> TrayIconBuilder
fn default() -> TrayIconBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TrayIconBuilder
impl !RefUnwindSafe for TrayIconBuilder
impl !Send for TrayIconBuilder
impl !Sync for TrayIconBuilder
impl Unpin for TrayIconBuilder
impl !UnwindSafe for TrayIconBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more