MonoDevelop Addins: hello world, license and AnyCPU
[CSharpForFun/.git] / MonoDevelop / addins / MonoDevelop.HelloWorld / MonoDevelop.HelloWorld / ShowFilesDialog.cs
1 /**
2 * Copyright 2015 Gustavo Martin Morcuende
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 using System;
17 using MonoDevelop.Projects;
18 using System.Text;
19
20 namespace MonoDevelop.HelloWorld
21 {
22         public partial class ShowFilesDialog : Gtk.Dialog
23         {
24                 readonly Project project;
25
26                 public ShowFilesDialog (Project project)
27                 {
28                         this.project = project;
29                         this.Build ();
30                 }
31
32                 protected void OnButtonShowFilesClickEvent (object sender, EventArgs e)
33                 {
34                         var fileNames = new StringBuilder ();
35                         fileNames.Append ("Project name: " + project.Name);
36                         fileNames.Append (Environment.NewLine);
37                         foreach (var file in project.Files)
38                         {
39                                 fileNames.Append(file.Name);
40                                 fileNames.Append (Environment.NewLine);
41                         }
42                         this.ShowFilesTextView.Buffer.Text = fileNames.ToString ();
43                 }
44         }
45 }
46