~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/mono-addins/Samples/TextEditor/TextEditorLib/Commands/OpenCommand.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
using System;
 
3
using System.IO;
 
4
 
 
5
namespace TextEditor
 
6
{
 
7
        public class OpenCommand: ICommand
 
8
        {
 
9
                public void Run ()
 
10
                {
 
11
                        Gtk.FileChooserDialog fcd = new Gtk.FileChooserDialog ("Open File", null, Gtk.FileChooserAction.Open);
 
12
                        fcd.AddButton (Gtk.Stock.Cancel, Gtk.ResponseType.Cancel);
 
13
                        fcd.AddButton (Gtk.Stock.Open, Gtk.ResponseType.Ok);
 
14
                        fcd.DefaultResponse = Gtk.ResponseType.Ok;
 
15
                        fcd.SelectMultiple = false;
 
16
 
 
17
                        Gtk.ResponseType response = (Gtk.ResponseType) fcd.Run ();
 
18
                        if (response == Gtk.ResponseType.Ok)
 
19
                                TextEditorApp.OpenFile (fcd.Filename);
 
20
                        fcd.Destroy ();
 
21
                }
 
22
        }
 
23
}