diff --git a/src/app/browser/window/tab/item/page/content/image.rs b/src/app/browser/window/tab/item/page/content/image.rs index e9b64bb7..df2bc204 100644 --- a/src/app/browser/window/tab/item/page/content/image.rs +++ b/src/app/browser/window/tab/item/page/content/image.rs @@ -1,23 +1,27 @@ use gtk::{gdk_pixbuf::Pixbuf, prelude::WidgetExt, Picture}; -const MARGIN: i32 = 6; - pub struct Image { gobject: Picture, } impl Image { - // Construct + // Defaults + + const DEFAULT_MARGIN: i32 = 6; + + // Constructors + pub fn new_from_pixbuf(buffer: &Pixbuf) -> Self { let gobject = Picture::for_pixbuf(buffer); - gobject.set_margin_end(MARGIN); - gobject.set_margin_start(MARGIN); + gobject.set_margin_end(Self::DEFAULT_MARGIN); + gobject.set_margin_start(Self::DEFAULT_MARGIN); Self { gobject } } // Getters + pub fn gobject(&self) -> &Picture { &self.gobject }