KlippyGtk: fix style arguments
This commit is contained in:
parent
3361c243b7
commit
54fc0458e0
@ -109,7 +109,7 @@ class KlippyGtk:
|
|||||||
|
|
||||||
def Label(self, label, style=None):
|
def Label(self, label, style=None):
|
||||||
la = Gtk.Label(label)
|
la = Gtk.Label(label)
|
||||||
if style is not None and style is not False:
|
if style is not None:
|
||||||
la.get_style_context().add_class(style)
|
la.get_style_context().add_class(style)
|
||||||
return la
|
return la
|
||||||
|
|
||||||
@ -125,14 +125,14 @@ class KlippyGtk:
|
|||||||
logging.error("Unable to find image %s", filename)
|
logging.error("Unable to find image %s", filename)
|
||||||
return Gtk.Image()
|
return Gtk.Image()
|
||||||
|
|
||||||
def PixbufFromFile(self, filename, style=False, width_scale=1, height_scale=1):
|
def PixbufFromFile(self, filename, width_scale=1, height_scale=1):
|
||||||
pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_scale(filename,
|
pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_scale(filename,
|
||||||
int(round(self.img_width * width_scale)),
|
int(round(self.img_width * width_scale)),
|
||||||
int(round(self.img_height * height_scale)),
|
int(round(self.img_height * height_scale)),
|
||||||
True)
|
True)
|
||||||
return pixbuf
|
return pixbuf
|
||||||
|
|
||||||
def PixbufFromHttp(self, resource, style=False, width_scale=1, height_scale=1):
|
def PixbufFromHttp(self, resource, width_scale=1, height_scale=1):
|
||||||
response = self.screen.apiclient.get_thumbnail_stream(resource)
|
response = self.screen.apiclient.get_thumbnail_stream(resource)
|
||||||
if response is False:
|
if response is False:
|
||||||
return None
|
return None
|
||||||
@ -143,10 +143,10 @@ class KlippyGtk:
|
|||||||
True)
|
True)
|
||||||
return pixbuf
|
return pixbuf
|
||||||
|
|
||||||
def ProgressBar(self, style=False):
|
def ProgressBar(self, style=None):
|
||||||
bar = Gtk.ProgressBar()
|
bar = Gtk.ProgressBar()
|
||||||
|
|
||||||
if style is not False:
|
if style is not None:
|
||||||
ctx = bar.get_style_context()
|
ctx = bar.get_style_context()
|
||||||
ctx.add_class(style)
|
ctx.add_class(style)
|
||||||
|
|
||||||
@ -222,7 +222,7 @@ class KlippyGtk:
|
|||||||
|
|
||||||
return dialog
|
return dialog
|
||||||
|
|
||||||
def ToggleButtonImage(self, image_name, label, style=False, scale=1.38):
|
def ToggleButtonImage(self, image_name, label, style=None, scale=1.38):
|
||||||
|
|
||||||
b = Gtk.ToggleButton(label=label)
|
b = Gtk.ToggleButton(label=label)
|
||||||
b.set_hexpand(True)
|
b.set_hexpand(True)
|
||||||
@ -232,7 +232,7 @@ class KlippyGtk:
|
|||||||
b.set_image_position(Gtk.PositionType.TOP)
|
b.set_image_position(Gtk.PositionType.TOP)
|
||||||
b.set_always_show_image(True)
|
b.set_always_show_image(True)
|
||||||
|
|
||||||
if style is not False:
|
if style is not None:
|
||||||
ctx = b.get_style_context()
|
ctx = b.get_style_context()
|
||||||
ctx.add_class(style)
|
ctx.add_class(style)
|
||||||
|
|
||||||
|
@ -67,9 +67,9 @@ class ScreenPanel:
|
|||||||
if loc is None:
|
if loc is None:
|
||||||
return None
|
return None
|
||||||
if loc[0] == "file":
|
if loc[0] == "file":
|
||||||
return self._gtk.PixbufFromFile(loc[1], None, width, height)
|
return self._gtk.PixbufFromFile(loc[1], width, height)
|
||||||
if loc[0] == "http":
|
if loc[0] == "http":
|
||||||
return self._gtk.PixbufFromHttp(loc[1], None, width, height)
|
return self._gtk.PixbufFromHttp(loc[1], width, height)
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def get_title(self):
|
def get_title(self):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user