~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric-updates

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Search/CurrentDocumentIterator.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-18 08:40:51 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090218084051-gh8m6ukvokbwj7cf
Tags: 1.9.2+dfsg-1ubuntu1
* Merge from Debian Experimental (LP: #330519), remaining Ubuntu changes:
  + debian/control:
    - Update for Gnome# 2.24
    - Add libmono-cairo1.0-cil to build-deps to fool pkg-config check

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//  CurrentDocumentIterator.cs
2
 
//
3
 
//  This file was derived from a file from #Develop. 
4
 
//
5
 
//  Copyright (C) 2001-2007 Mike Krüger <mkrueger@novell.com>
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
 
using System;
22
 
using System.Collections;
23
 
using MonoDevelop.Ide.Gui;
24
 
 
25
 
namespace MonoDevelop.Ide.Gui.Search
26
 
{
27
 
        internal class CurrentDocumentIterator : IDocumentIterator
28
 
        {
29
 
                bool didRead = false;
30
 
                
31
 
                public CurrentDocumentIterator() 
32
 
                {
33
 
                        Reset();
34
 
                }
35
 
                        
36
 
                public string CurrentFileName {
37
 
                        get {
38
 
                                if (!SearchReplaceUtilities.IsTextAreaSelected) {
39
 
                                        return null;
40
 
                                }
41
 
                                if (IdeApp.Workbench.ActiveDocument.FileName == null) {
42
 
                                        return IdeApp.Workbench.ActiveDocument.Window.ViewContent.UntitledName;
43
 
                                }
44
 
                                return IdeApp.Workbench.ActiveDocument.FileName;
45
 
                        }
46
 
                }
47
 
                
48
 
                public IDocumentInformation Current {
49
 
                        get {
50
 
                                if (!SearchReplaceUtilities.IsTextAreaSelected) {
51
 
                                        return null;
52
 
                                }
53
 
                                return IdeApp.Workbench.ActiveDocument.GetContent <IDocumentInformation> ();
54
 
                        }
55
 
                }
56
 
                        
57
 
                public bool MoveForward() 
58
 
                {
59
 
                        if (!SearchReplaceUtilities.IsTextAreaSelected) {
60
 
                                return false;
61
 
                        }
62
 
                        if (didRead) {
63
 
                                return false;
64
 
                        }
65
 
                        didRead = true;
66
 
                        
67
 
                        return true;
68
 
                }
69
 
                
70
 
                public bool MoveBackward()
71
 
                {
72
 
                        return MoveForward();
73
 
                }
74
 
                
75
 
                public void Reset() 
76
 
                {
77
 
                        didRead = false;
78
 
                }
79
 
        }
80
 
}