[f-spot/rubenv-gsoc-2009: 6/86] Add stub interface for	LibrawImageLoader.
- From: Ruben Vermeersch <rubenv src gnome org>
 
- To: commits-list gnome org
 
- Cc: 
 
- Subject: [f-spot/rubenv-gsoc-2009: 6/86] Add stub interface for	LibrawImageLoader.
 
- Date: Sun, 23 May 2010 12:32:27 +0000 (UTC)
 
commit 2131a2cb63aea7a8ee6ad692ba5159a9b8c83564
Author: Ruben Vermeersch <ruben savanne be>
Date:   Fri Jul 17 23:05:59 2009 +0200
    Add stub interface for LibrawImageLoader.
 src/Loaders/LibrawImageLoader.cs |   31 +++++++++++++++++++++++++++++--
 1 files changed, 29 insertions(+), 2 deletions(-)
---
diff --git a/src/Loaders/LibrawImageLoader.cs b/src/Loaders/LibrawImageLoader.cs
index 65d96aa..5177acb 100644
--- a/src/Loaders/LibrawImageLoader.cs
+++ b/src/Loaders/LibrawImageLoader.cs
@@ -9,11 +9,38 @@
 // This is free software. See COPYING for details
 //
 
+using Gdk;
+using System;
+using FSpot.Utils;
 using FSpot.Loaders.Native;
 
 namespace FSpot.Loaders {
-	public class LibrawImageLoader {
-		NativeLibrawLoader loader;
+	public class LibrawImageLoader : IImageLoader {
 
+		public void Load (Uri uri)
+		{
+
+		}
+
+		public event EventHandler<AreaPreparedEventArgs> AreaPrepared;
+		public event EventHandler<AreaUpdatedEventArgs> AreaUpdated;
+		public event EventHandler Completed;
+
+		public bool Loading {
+			get { throw new Exception ("Not implemented yet!"); }
+		}
+
+		public void Dispose ()
+		{
+
+		}
+
+		public Pixbuf Pixbuf {
+			get { throw new Exception ("Not implemented yet!"); }
+		}
+
+		public PixbufOrientation PixbufOrientation {
+			get { throw new Exception ("Not implemented yet!"); }
+		}
 	}
 }
[
Date Prev][
Date Next]   [
Thread Prev][
Thread Next]   
[
Thread Index]
[
Date Index]
[
Author Index]