[banshee/podcast-ng] [ColumnCell] Added 'Sensitive' property
- From: Michael C. Urbanski <murbanski src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [banshee/podcast-ng] [ColumnCell] Added 'Sensitive' property
- Date: Tue, 30 Mar 2010 03:43:00 +0000 (UTC)
commit a1acc1bb62b6d247034e2615d6075626d91c2fa7
Author: Mike Urbanski <michael c urbanski gmail com>
Date: Mon Mar 29 22:42:08 2010 -0500
[ColumnCell] Added 'Sensitive' property
.../Hyena.Gui/Hyena.Data.Gui/ColumnCell.cs | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
---
diff --git a/src/Libraries/Hyena.Gui/Hyena.Data.Gui/ColumnCell.cs b/src/Libraries/Hyena.Gui/Hyena.Data.Gui/ColumnCell.cs
index 20e8c57..1a66919 100644
--- a/src/Libraries/Hyena.Gui/Hyena.Data.Gui/ColumnCell.cs
+++ b/src/Libraries/Hyena.Gui/Hyena.Data.Gui/ColumnCell.cs
@@ -38,6 +38,7 @@ namespace Hyena.Data.Gui
public abstract class ColumnCell
{
private bool expand;
+ private bool sensitive;
private string property, sub_property;
private PropertyInfo property_info, sub_property_info;
private object bound_object;
@@ -57,6 +58,7 @@ namespace Hyena.Data.Gui
{
Property = property;
Expand = expand;
+ Sensitive = true;
}
public void BindListItem (object item)
@@ -150,6 +152,11 @@ namespace Hyena.Data.Gui
}
}
+ public bool Sensitive {
+ get { return sensitive; }
+ set { sensitive = value; }
+ }
+
public string SubProperty {
get { return sub_property; }
set { sub_property = value; }
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]