mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 02:05:41 +00:00
f774796311
* gconf/GConf.PropertyEditors/PropertyEditorColorPicker.cs : nuke a GnomeSharp. * generator/Signal.cs : move eventhandlers and args into the base namespace instead of a *Sharp namespace. * sample/*.cs : nuke using *Sharp. svn path=/trunk/gtk-sharp/; revision=22956
74 lines
1.7 KiB
C#
74 lines
1.7 KiB
C#
using System;
|
|
using Gda;
|
|
using GnomeDb;
|
|
using Gtk;
|
|
|
|
class GnomeDbClient {
|
|
|
|
static Gtk.Window window;
|
|
static Toolbar toolbar;
|
|
static Browser browser;
|
|
static VBox box;
|
|
static Gda.Client client = null;
|
|
static Gda.Connection cnc = null;
|
|
|
|
static void Main (string [] args)
|
|
{
|
|
GnomeDb.Application.Init ();
|
|
|
|
/* create the UI */
|
|
window = new Gtk.Window ("GNOME-DB client");
|
|
window.DeleteEvent += new DeleteEventHandler (Window_Delete);
|
|
box = new VBox (false, 0);
|
|
window.Add (box);
|
|
|
|
toolbar = new Toolbar ();
|
|
toolbar.ToolbarStyle = ToolbarStyle.BothHoriz;
|
|
toolbar.AppendItem ("Change database", "Select another database to browse", String.Empty,
|
|
new Gtk.Image (Gtk.Stock.Add, IconSize.LargeToolbar),
|
|
new SignalFunc (DB_connect));
|
|
box.PackStart (toolbar, false, false, 0);
|
|
|
|
browser = new GnomeDb.Browser ();
|
|
box.PackStart (browser, true, true, 0);
|
|
|
|
window.ShowAll ();
|
|
GnomeDb.Application.Run ();
|
|
}
|
|
|
|
static void Client_Event (object o, EventNotificationArgs args)
|
|
{
|
|
switch (args.Event) {
|
|
case ClientEvent.Error :
|
|
System.Console.WriteLine ("There's been an error");
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void Window_Delete (object o, DeleteEventArgs args)
|
|
{
|
|
GnomeDb.Application.Quit ();
|
|
args.RetVal = true;
|
|
}
|
|
|
|
static void DB_connect ()
|
|
{
|
|
GnomeDb.LoginDialog dialog;
|
|
|
|
dialog = new GnomeDb.LoginDialog ("Select data source");
|
|
if (dialog.Run () == true) {
|
|
if (client == null) {
|
|
client = new Gda.Client ();
|
|
client.EventNotification += new Gda.EventNotificationHandler (Client_Event);
|
|
}
|
|
|
|
cnc = client.OpenConnection (dialog.Dsn, dialog.Username, dialog.Password,
|
|
Gda.ConnectionOptions.ReadOnly);
|
|
if (cnc != null)
|
|
browser.Connection = cnc;
|
|
}
|
|
dialog.Destroy ();
|
|
}
|
|
}
|
|
|