~crisoagf/do-plugins/do-music

« back to all changes in this revision

Viewing changes to WindowManager/src/GenericWindowItem.cs

Start cleanup of WindowManager
Add riptide plugin.  Downloads dem torrents!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// GenericWindowItem.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 2 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, write to the Free Software
 
19
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
20
//
 
21
//
 
22
 
 
23
using System;
 
24
using Wnck;
 
25
using Do.Universe;
 
26
 
 
27
namespace WindowManager
 
28
{
 
29
        public enum GenericWindowType
 
30
        {
 
31
                CurrentWindow = 0,
 
32
                PreviousWindow = 1,
 
33
                CurrentApplication = 2,
 
34
                PreviousApplication = 3,
 
35
        }
 
36
        
 
37
        public class GenericWindowItem : IItem
 
38
        {
 
39
                string name, description, icon;
 
40
                GenericWindowType windowType;
 
41
                
 
42
                public GenericWindowItem (string name, string description, string icon, 
 
43
                                          GenericWindowType windowType) 
 
44
                {
 
45
                        this.name = name;
 
46
                        this.description = description;
 
47
                        this.icon = icon;
 
48
                        this.windowType = windowType;
 
49
                }
 
50
                
 
51
                public string Name {
 
52
                        get {
 
53
                                return name;
 
54
                        }
 
55
                }
 
56
 
 
57
                public string Description {
 
58
                        get {
 
59
                                return description;
 
60
                        }
 
61
                }
 
62
 
 
63
                public string Icon {
 
64
                        get {
 
65
                                return icon;
 
66
                        }
 
67
                }
 
68
 
 
69
                public GenericWindowType WindowType {
 
70
                        get {
 
71
                                return windowType;
 
72
                        }
 
73
                }
 
74
                
 
75
        }
 
76
}