Aggiunti tutti i file che mi ero dimenticato

Leonardo Robol [2010-02-06 22:35]
Aggiunti tutti i file che mi ero dimenticato
Filename
AuthDialog.cs
ErrorDialog.cs
sqlite3.dll
diff --git a/AuthDialog.cs b/AuthDialog.cs
new file mode 100644
index 0000000..0885129
--- /dev/null
+++ b/AuthDialog.cs
@@ -0,0 +1,24 @@
+
+using System;
+
+namespace Dizzy
+{
+
+
+	public partial class AuthDialog : Gtk.Dialog
+	{
+		GlobalConfig config;
+
+		protected virtual void OnOkClicked (object sender, System.EventArgs e)
+		{
+			this.config.password = passwordEntry.Text;
+			this.config.InsertValue("user", userEntry.Text);
+		}
+
+		public AuthDialog (ref GlobalConfig config)
+		{
+			this.config = config;
+			this.Build ();
+		}
+	}
+}
diff --git a/ErrorDialog.cs b/ErrorDialog.cs
new file mode 100644
index 0000000..659b009
--- /dev/null
+++ b/ErrorDialog.cs
@@ -0,0 +1,16 @@
+
+using System;
+
+namespace Dizzy
+{
+
+
+	public partial class ErrorDialog : Gtk.Dialog
+	{
+
+		public ErrorDialog ()
+		{
+			this.Build ();
+		}
+	}
+}
diff --git a/sqlite3.dll b/sqlite3.dll
new file mode 100755
index 0000000..ec15374
Binary files /dev/null and b/sqlite3.dll differ
ViewGit