[monet/vala: 5/5] [widgets] add a text property to various widgets



commit 366b56ac3acf321807ed76027c02a59cf8c4919b
Author: Thomas Wood <thos gnome org>
Date:   Mon Dec 21 23:06:48 2009 +0000

    [widgets] add a text property to various widgets

 monet/mn-widgets.vala |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)
---
diff --git a/monet/mn-widgets.vala b/monet/mn-widgets.vala
index 79b39aa..faef405 100644
--- a/monet/mn-widgets.vala
+++ b/monet/mn-widgets.vala
@@ -40,14 +40,17 @@ namespace Monet
   public class Button : Widget
   {
     public bool is_default { get; set; }
+    public string text { get; set; }
   }
 
   public class CheckBox : Widget
   {
+    public string text { get; set; }
   }
 
   public class RadioButton : Widget
   {
+    public string text { get; set; }
   }
 
   public class Entry : Widget
@@ -68,6 +71,7 @@ namespace Monet
 
   public class Tooltip : Widget
   {
+    public string text { get; set; }
   }
 
   public class ResizeSeparator : Widget
@@ -79,5 +83,7 @@ namespace Monet
   {
     public double progress { get; set; }
     public Orientation orientation { get; set; }
+
+    public string text { get; set; }
   }
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]