~alexlauni/do-plugins/twitter-api-fixes

« back to all changes in this revision

Viewing changes to WindowManager/src/Screen/ScreenCascadeAction.cs

  • Committer: Jason Smith
  • Date: 2009-04-04 02:38:33 UTC
  • mfrom: (584.1.12 do-plugins)
  • Revision ID: jassmith@gmail.com-20090404023833-g54l986f1a1ii9uj
Merge glitch-free-docky branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  
 
2
//  Copyright (C) 2009 GNOME Do
 
3
// 
 
4
//  This program is free software: you can redistribute it and/or modify
 
5
//  it under the terms of the GNU General Public License as published by
 
6
//  the Free Software Foundation, either version 3 of the License, or
 
7
//  (at your option) any later version.
 
8
// 
 
9
//  This program is distributed in the hope that it will be useful,
 
10
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
//  GNU General Public License for more details.
 
13
// 
 
14
//  You should have received a copy of the GNU General Public License
 
15
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
16
// 
 
17
 
 
18
using System;
 
19
using System.Collections.Generic;
 
20
using System.Linq;
 
21
using System.Diagnostics;
 
22
using System.Threading;
 
23
 
 
24
using Do.Universe;
 
25
using Do.Interface.Wink;
 
26
 
 
27
using Wnck;
 
28
using Mono.Unix;
 
29
 
 
30
namespace WindowManager
 
31
{
 
32
        
 
33
        
 
34
        public class ScreenCascadeAction : ScreenActionAction
 
35
        {
 
36
                public override string Name {
 
37
                        get { return Catalog.GetString ("Cascade Windows"); }
 
38
                }
 
39
                
 
40
                public override string Description {
 
41
                        get { return Catalog.GetString ("Cascade your Windows"); }
 
42
                }
 
43
                
 
44
                public override string Icon {
 
45
                        get { return "preferences-system-windows"; }
 
46
                }
 
47
 
 
48
                public override IEnumerable<Item> Perform (IEnumerable<Item> items, IEnumerable<Item> modItems)
 
49
                {
 
50
                        IScreenItem item = items.First () as IScreenItem;
 
51
                        item.Viewport.Cascade ();
 
52
 
 
53
                        return null;
 
54
                }
 
55
                
 
56
        }
 
57
}