1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448
|
// PropertyRegistration.cs - GObject property registration sample
//
// Author: Mike Kestner <mkestner@novell.com>
//
// Copyright (c) 2008 Novell, Inc.
namespace GtkSamples {
using System;
public class TestObject : GLib.Object {
public static int Main (string[] args)
{
GLib.GType.Init ();
TestObject obj = new TestObject ();
obj.TestInt ();
obj.TestUInt ();
obj.TestLong ();
obj.TestULong ();
obj.TestByte ();
obj.TestSByte ();
obj.TestBool ();
obj.TestFloat ();
obj.TestDouble ();
obj.TestString ();
//obj.TestIntPtr ();
//obj.TestBoxed ();
obj.TestGObject ();
Console.WriteLine ("All properties succeeded.");
return 0;
}
int my_int;
[GLib.Property ("my_int")]
public int MyInt {
get { return my_int; }
set { my_int = value; }
}
public void TestInt ()
{
GLib.Value val = new GLib.Value (42);
SetProperty ("my_int", val);
val.Dispose ();
if (MyInt != 42) {
Console.Error.WriteLine ("int Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_int");
if ((int)val2.Val != 42) {
Console.Error.WriteLine ("int Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("int succeeded.");
}
uint my_uint;
[GLib.Property ("my_uint")]
public uint MyUInt {
get { return my_uint; }
set { my_uint = value; }
}
public void TestUInt ()
{
GLib.Value val = new GLib.Value ((uint)42);
SetProperty ("my_uint", val);
val.Dispose ();
if (MyUInt != 42) {
Console.Error.WriteLine ("uint Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_uint");
if ((uint)val2.Val != 42) {
Console.Error.WriteLine ("uint Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("uint succeeded.");
}
long my_long;
[GLib.Property ("my_long")]
public long MyLong {
get { return my_long; }
set { my_long = value; }
}
public void TestLong ()
{
GLib.Value val = new GLib.Value ((long)42);
SetProperty ("my_long", val);
val.Dispose ();
if (MyLong != 42) {
Console.Error.WriteLine ("long Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_long");
if ((long)val2.Val != 42) {
Console.Error.WriteLine ("long Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("long succeeded.");
}
ulong my_ulong;
[GLib.Property ("my_ulong")]
public ulong MyULong {
get { return my_ulong; }
set { my_ulong = value; }
}
public void TestULong ()
{
GLib.Value val = new GLib.Value ((ulong)42);
SetProperty ("my_ulong", val);
val.Dispose ();
if (MyULong != 42) {
Console.Error.WriteLine ("ulong Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_ulong");
if ((ulong)val2.Val != 42) {
Console.Error.WriteLine ("ulong Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("ulong succeeded.");
}
byte my_byte;
[GLib.Property ("my_byte")]
public byte MyByte {
get { return my_byte; }
set { my_byte = value; }
}
public void TestByte ()
{
GLib.Value val = new GLib.Value ((byte)42);
SetProperty ("my_byte", val);
val.Dispose ();
if (MyByte != 42) {
Console.Error.WriteLine ("byte Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_byte");
if ((byte)val2.Val != 42) {
Console.Error.WriteLine ("byte Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("byte succeeded.");
}
sbyte my_sbyte;
[GLib.Property ("my_sbyte")]
public sbyte MySByte {
get { return my_sbyte; }
set { my_sbyte = value; }
}
public void TestSByte ()
{
GLib.Value val = new GLib.Value ((sbyte)42);
SetProperty ("my_sbyte", val);
val.Dispose ();
if (MySByte != 42) {
Console.Error.WriteLine ("sbyte Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_sbyte");
if ((sbyte)val2.Val != 42) {
Console.Error.WriteLine ("sbyte Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("sbyte succeeded.");
}
bool my_bool;
[GLib.Property ("my_bool")]
public bool MyBool {
get { return my_bool; }
set { my_bool = value; }
}
public void TestBool ()
{
GLib.Value val = new GLib.Value (true);
SetProperty ("my_bool", val);
val.Dispose ();
if (!MyBool) {
Console.Error.WriteLine ("bool Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_bool");
if (!((bool)val2.Val)) {
Console.Error.WriteLine ("bool Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("bool succeeded.");
}
float my_float;
[GLib.Property ("my_float")]
public float MyFloat {
get { return my_float; }
set { my_float = value; }
}
public void TestFloat ()
{
GLib.Value val = new GLib.Value (42.0f);
SetProperty ("my_float", val);
val.Dispose ();
if (MyFloat != 42.0f) {
Console.Error.WriteLine ("float Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_float");
if ((float)val2.Val != 42.0f) {
Console.Error.WriteLine ("float Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("float succeeded.");
}
double my_double;
[GLib.Property ("my_double")]
public double MyDouble {
get { return my_double; }
set { my_double = value; }
}
public void TestDouble ()
{
GLib.Value val = new GLib.Value (42.0);
SetProperty ("my_double", val);
val.Dispose ();
if (MyDouble != 42.0) {
Console.Error.WriteLine ("double Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_double");
if ((double)val2.Val != 42.0) {
Console.Error.WriteLine ("double Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("double succeeded.");
}
string my_string;
[GLib.Property ("my_string")]
public string MyString {
get { return my_string; }
set { my_string = value; }
}
public void TestString ()
{
GLib.Value val = new GLib.Value ("42");
SetProperty ("my_string", val);
val.Dispose ();
if (MyString != "42") {
Console.Error.WriteLine ("string Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_string");
if ((string)val2.Val != "42") {
Console.Error.WriteLine ("string Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("string succeeded.");
}
#if false
IntPtr my_intptr;
[GLib.Property ("my_intptr")]
public IntPtr MyIntPtr {
get { return my_intptr; }
set { my_intptr = value; }
}
public void TestIntPtr ()
{
IntPtr ptr = System.Runtime.InteropServices.Marshal.AllocHGlobal (4);
Console.WriteLine (ptr);
GLib.Value val = new GLib.Value (ptr);
SetProperty ("my_intptr", val);
val.Dispose ();
if (MyIntPtr != ptr) {
Console.Error.WriteLine ("IntPtr Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_intptr");
Console.WriteLine (val2.Val);
if (!val2.Val.Equals (ptr)) {
Console.Error.WriteLine ("IntPtr Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("IntPtr succeeded.");
}
Gdk.Color my_boxed;
[GLib.Property ("my_boxed")]
public Gdk.Color MyBoxed {
get { return my_boxed; }
set { my_boxed = value; }
}
public void TestBoxed ()
{
Gdk.Color color = new Gdk.Color (0, 0, 0);
GLib.Value val = (GLib.Value) color;
SetProperty ("my_boxed", val);
val.Dispose ();
if (!MyBoxed.Equals (color)) {
Console.Error.WriteLine ("boxed Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_boxed");
if (color.Equals ((Gdk.Color)val2.Val)) {
Console.Error.WriteLine ("boxed Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("boxed succeeded.");
}
#endif
GLib.Object my_object;
[GLib.Property ("my_object")]
public GLib.Object MyObject {
get { return my_object; }
set { my_object = value; }
}
public void TestGObject ()
{
Gtk.Window win = new Gtk.Window ("test");
GLib.Value val = new GLib.Value (win);
SetProperty ("my_object", val);
val.Dispose ();
if (MyObject != win) {
Console.Error.WriteLine ("GObject Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_object");
if ((GLib.Object)val2.Val != win) {
Console.Error.WriteLine ("GObject Property set/get roundtrip failed.");
Environment.Exit (1);
}
Console.WriteLine ("GObject succeeded.");
}
#if false
int my_int;
[GLib.Property ("my_int")]
public int MyInt {
get { return my_int; }
set { my_int = value; }
}
public void TestInt ()
{
GLib.Value val = new GLib.Value (42);
SetProperty ("my_int", val);
val.Dispose ();
if (MyInt != 42) {
Console.Error.WriteLine ("Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_int");
if ((int)val2.Val != 42) {
Console.Error.WriteLine ("Property set/get roundtrip failed.");
Environment.Exit (1);
}
}
int my_int;
[GLib.Property ("my_int")]
public int MyInt {
get { return my_int; }
set { my_int = value; }
}
public void TestInt ()
{
GLib.Value val = new GLib.Value (42);
SetProperty ("my_int", val);
val.Dispose ();
if (MyInt != 42) {
Console.Error.WriteLine ("Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_int");
if ((int)val2.Val != 42) {
Console.Error.WriteLine ("Property set/get roundtrip failed.");
Environment.Exit (1);
}
}
int my_int;
[GLib.Property ("my_int")]
public int MyInt {
get { return my_int; }
set { my_int = value; }
}
public void TestInt ()
{
GLib.Value val = new GLib.Value (42);
SetProperty ("my_int", val);
val.Dispose ();
if (MyInt != 42) {
Console.Error.WriteLine ("Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_int");
if ((int)val2.Val != 42) {
Console.Error.WriteLine ("Property set/get roundtrip failed.");
Environment.Exit (1);
}
}
int my_int;
[GLib.Property ("my_int")]
public int MyInt {
get { return my_int; }
set { my_int = value; }
}
public void TestInt ()
{
GLib.Value val = new GLib.Value (42);
SetProperty ("my_int", val);
val.Dispose ();
if (MyInt != 42) {
Console.Error.WriteLine ("Property setter did not run.");
Environment.Exit (1);
}
GLib.Value val2 = GetProperty ("my_int");
if ((int)val2.Val != 42) {
Console.Error.WriteLine ("Property set/get roundtrip failed.");
Environment.Exit (1);
}
}
#endif
}
}
|