2002-07-12 17:15:06 +00:00
|
|
|
//
|
|
|
|
// TestFileSelection.cs
|
|
|
|
//
|
|
|
|
// Author: Duncan Mak (duncan@ximian.com)
|
|
|
|
//
|
|
|
|
// Copyright (C) 2002, Duncan Mak, Ximian Inc.
|
|
|
|
//
|
|
|
|
|
2002-07-12 16:52:55 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
using Gtk;
|
|
|
|
using GtkSharp;
|
|
|
|
|
|
|
|
namespace WidgetViewer {
|
|
|
|
public class TestFileSelection
|
|
|
|
{
|
|
|
|
static FileSelection window = null;
|
|
|
|
static ToggleButton toggle_button = null;
|
|
|
|
static CheckButton check_button = null;
|
|
|
|
|
|
|
|
public static Gtk.Window Create ()
|
|
|
|
{
|
|
|
|
window = new FileSelection ("File Selection Dialog");
|
|
|
|
window.HideFileopButtons ();
|
|
|
|
window.OkButton.Clicked += new EventHandler (file_selection_ok);
|
|
|
|
window.CancelButton.Clicked += new EventHandler (file_selection_cancel);
|
|
|
|
|
|
|
|
check_button = new CheckButton ("Show Fileops");
|
|
|
|
check_button.Toggled += new EventHandler (show_fileops);
|
|
|
|
window.ActionArea.PackStart (check_button, false, false, 0);
|
|
|
|
|
|
|
|
toggle_button = new ToggleButton ("Select Multiple");
|
|
|
|
toggle_button.Clicked += new EventHandler (select_multiple);
|
|
|
|
window.ActionArea.PackStart (toggle_button, false, false, 0);
|
|
|
|
|
|
|
|
window.ShowAll ();
|
|
|
|
return window;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void file_selection_ok (object o, EventArgs args)
|
|
|
|
{
|
2003-02-20 04:03:15 +00:00
|
|
|
Gtk.FileSelection.FSButton fsbutton = (Gtk.FileSelection.FSButton) o;
|
2002-08-13 14:01:14 +00:00
|
|
|
|
|
|
|
Console.WriteLine ("ok button clicked!");
|
|
|
|
|
|
|
|
fsbutton.FileSelection.Destroy ();
|
2002-07-12 16:52:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void show_fileops (object o, EventArgs args)
|
|
|
|
{
|
|
|
|
if (((ToggleButton) o).Active)
|
|
|
|
window.ShowFileopButtons ();
|
|
|
|
else
|
|
|
|
window.HideFileopButtons ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void select_multiple (object o, EventArgs args)
|
|
|
|
{
|
|
|
|
window.SelectMultiple = toggle_button.Active;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void file_selection_cancel (object o, EventArgs args)
|
|
|
|
{
|
|
|
|
window.Destroy ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|