~ubuntu-branches/debian/experimental/geany/experimental

« back to all changes in this revision

Viewing changes to scintilla/DocumentAccessor.h

  • Committer: Bazaar Package Importer
  • Author(s): Damián Viano
  • Date: 2008-05-02 11:37:45 UTC
  • mfrom: (1.2.1 upstream) (3.1.6 hardy)
  • Revision ID: james.westby@ubuntu.com-20080502113745-xzp4g6dmovrpoj17
Tags: 0.14-1
New upstream release (Closes: #478126)

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
// Copyright 1998-2001 by Neil Hodgson <neilh@scintilla.org>
7
7
// The License.txt file describes the conditions under which this software may be distributed.
8
8
 
 
9
#ifdef SCI_NAMESPACE
 
10
namespace Scintilla {
 
11
#endif
 
12
 
9
13
class Document;
10
14
 
11
15
/**
64
68
        void ColourTo(unsigned int pos, int chAttr);
65
69
        void SetLevel(int line, int level);
66
70
        int IndentAmount(int line, int *flags, PFNIsCommentLeader pfnIsCommentLeader = 0);
 
71
        void IndicatorFill(int start, int end, int indicator, int value);
67
72
};
 
73
 
 
74
#ifdef SCI_NAMESPACE
 
75
}
 
76
#endif