mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 22:05:35 +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
68 lines
1.6 KiB
C#
68 lines
1.6 KiB
C#
//
|
|
// TestFileSelection.cs
|
|
//
|
|
// Author: Duncan Mak (duncan@ximian.com)
|
|
//
|
|
// Copyright (C) 2002, Duncan Mak, Ximian Inc.
|
|
//
|
|
|
|
using System;
|
|
|
|
using Gtk;
|
|
|
|
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)
|
|
{
|
|
Gtk.FileSelection.FSButton fsbutton = (Gtk.FileSelection.FSButton) o;
|
|
|
|
Console.WriteLine ("ok button clicked!");
|
|
|
|
fsbutton.FileSelection.Destroy ();
|
|
}
|
|
|
|
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 ();
|
|
}
|
|
}
|
|
}
|
|
|