[banshee] [AddinTile] Update style of labels to match the background colour (bgo#596076)
- From: Alexander Kojevnikov <alexk src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [banshee] [AddinTile] Update style of labels to match the background colour (bgo#596076)
- Date: Thu, 12 Nov 2009 07:28:37 +0000 (UTC)
commit f72bd62b084d6c16861ac6baed5a5b56d50a28f1
Author: Alexander Kojevnikov <alexander kojevnikov com>
Date: Thu Nov 12 18:27:39 2009 +1100
[AddinTile] Update style of labels to match the background colour (bgo#596076)
.../Banshee.Addins.Gui/AddinTile.cs | 28 +++++++++++++++++++-
1 files changed, 27 insertions(+), 1 deletions(-)
---
diff --git a/src/Core/Banshee.ThickClient/Banshee.Addins.Gui/AddinTile.cs b/src/Core/Banshee.ThickClient/Banshee.Addins.Gui/AddinTile.cs
index 5a111ad..07db555 100644
--- a/src/Core/Banshee.ThickClient/Banshee.Addins.Gui/AddinTile.cs
+++ b/src/Core/Banshee.ThickClient/Banshee.Addins.Gui/AddinTile.cs
@@ -74,6 +74,7 @@ namespace Banshee.Addins.Gui
Attach (image, 0, 1, 0, 3, AttachOptions.Shrink, AttachOptions.Fill | AttachOptions.Expand, 0, 0);
title = new Label ();
+ SetLabelStyle (title);
title.Show ();
title.Xalign = 0.0f;
title.Markup = String.Format ("<b>{0}</b>", GLib.Markup.EscapeText (addin.Name));
@@ -83,6 +84,7 @@ namespace Banshee.Addins.Gui
AttachOptions.Expand | AttachOptions.Fill, 0, 0);
description = new WrapLabel ();
+ SetLabelStyle (description);
description.Show ();
description.Text = addin.Description.Description;
description.Wrap = false;
@@ -92,6 +94,7 @@ namespace Banshee.Addins.Gui
AttachOptions.Expand | AttachOptions.Fill, 0, 0);
authors = new WrapLabel ();
+ SetLabelStyle (authors);
authors.Markup = String.Format (
"<small><b>{0}</b> <i>{1}</i></small>",
Catalog.GetString ("Authors:"),
@@ -131,7 +134,30 @@ namespace Banshee.Addins.Gui
UpdateState ();
}
-
+
+ private void SetLabelStyle (Widget label)
+ {
+ bool changing_styles = false;
+ label.StyleSet += delegate {
+ if (changing_styles) {
+ return;
+ }
+
+ changing_styles = true;
+ label.ModifyBg (StateType.Normal, label.Style.Base (StateType.Normal));
+ label.ModifyBg (StateType.Active, label.Style.Base (StateType.Active));
+ label.ModifyBg (StateType.Prelight, label.Style.Base (StateType.Prelight));
+ label.ModifyBg (StateType.Selected, label.Style.Base (StateType.Selected));
+ label.ModifyBg (StateType.Insensitive, label.Style.Base (StateType.Insensitive));
+ label.ModifyFg (StateType.Normal, label.Style.Text (StateType.Normal));
+ label.ModifyFg (StateType.Active, label.Style.Text (StateType.Active));
+ label.ModifyFg (StateType.Prelight, label.Style.Text (StateType.Prelight));
+ label.ModifyFg (StateType.Selected, label.Style.Text (StateType.Selected));
+ label.ModifyFg (StateType.Insensitive, label.Style.Text (StateType.Insensitive));
+ changing_styles = false;
+ };
+ }
+
protected override void OnRealized ()
{
WidgetFlags |= WidgetFlags.NoWindow;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]