~cszikszoy/do-plugins/pastebin

« back to all changes in this revision

Viewing changes to SimplePlugins/src/AppendTextAction.cs

  • Committer: Christopher Halse Rogers
  • Date: 2008-08-24 08:44:24 UTC
  • mfrom: (244.1.2 do-plugins)
  • Revision ID: raof@ubuntu.com-20080824084424-8gp5ff6v9nku9z21
Merge in the tip of 0.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* AppendTextAction.cs
2
 
 *
3
 
 * GNOME Do is the legal property of its developers. Please refer to the
4
 
 * COPYRIGHT file distributed with this
5
 
 * source distribution.
6
 
 *
7
 
 * This program is free software: you can redistribute it and/or modify
8
 
 * it under the terms of the GNU General Public License as published by
9
 
 * the Free Software Foundation, either version 3 of the License, or
10
 
 * (at your option) any later version.
11
 
 *
12
 
 * This program is distributed in the hope that it will be useful,
13
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
 
 * GNU General Public License for more details.
16
 
 *
17
 
 * You should have received a copy of the GNU General Public License
18
 
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19
 
 */
20
 
 
21
 
using System;
22
 
using System.IO;
23
 
 
24
 
using Do.Universe;
25
 
 
26
 
namespace GnomeDoAppendText {   
27
 
        public class AppendTextAction : IAction {
28
 
 
29
 
                public string Name { get { return "Append to..."; } }
30
 
                public string Description { get { return "Appends text to a selected file."; } }
31
 
                public string Icon { get { return "text-editor"; } }
32
 
 
33
 
                public Type[] SupportedItemTypes {
34
 
                        get {
35
 
                                return new Type[] { typeof (ITextItem) };
36
 
                        }
37
 
                }
38
 
                
39
 
                public Type[] SupportedModifierItemTypes {
40
 
                        get {
41
 
                                return new Type[] { typeof (FileItem), typeof(ITextItem) };
42
 
                        }
43
 
                }
44
 
                
45
 
                public bool ModifierItemsOptional {
46
 
                        get { return false; }
47
 
                }
48
 
                
49
 
 
50
 
                public bool SupportsItem (IItem item)
51
 
                {
52
 
                        return true;
53
 
                }
54
 
                
55
 
                public bool SupportsModifierItemForItems (IItem[] items, IItem modItem)
56
 
                {
57
 
                        if (modItem is FileItem) {
58
 
                                string mime = (modItem as FileItem).MimeType;
59
 
                                return mime == "x-directory/normal" || mime.StartsWith ("text/");
60
 
                        }
61
 
                        return modItem is ITextItem;
62
 
                }
63
 
                
64
 
                public IItem[] DynamicModifierItemsForItem (IItem item)
65
 
                {
66
 
                        return null;
67
 
                }
68
 
 
69
 
                public IItem[] Perform (IItem[] items, IItem[] modItems)
70
 
                {
71
 
                        if (modItems [0] is FileItem) {
72
 
                                string text = (items [0] as ITextItem).Text;
73
 
                                string mime = (modItems [0] as FileItem).MimeType;
74
 
                                string file = (modItems [0] as FileItem).Path;
75
 
                                
76
 
                                if (mime == "x-directory/normal") return null;
77
 
                                
78
 
                                using (StreamWriter w = File.AppendText (file)) {
79
 
                                        w.WriteLine (text);
80
 
                                        w.Close ();
81
 
                                }
82
 
 
83
 
                                return null;
84
 
                        }
85
 
                        else {
86
 
                                string text = (items [0] as ITextItem).Text;
87
 
                                string text2 = (modItems [0] as ITextItem).Text;
88
 
                                return new IItem[] { new TextItem (text + text2) };
89
 
                        }
90
 
                }
91
 
        }
92
 
}
93