~ubuntu-branches/ubuntu/lucid/monodevelop/lucid

« back to all changes in this revision

Viewing changes to src/core/Mono.Texteditor/Mono.TextEditor/IconMargin.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-01-10 14:25:59 UTC
  • mfrom: (1.2.5 upstream) (1.3.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100110142559-sorji5exvk9tyknr
Tags: 2.2+dfsg-2
* debian/rules/remove_support_for_non_debian_functionality.patch:
  + Also fix monodevelop-core-addins.pc to remove links to the
    addins we remove in Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
        
130
130
        public class BookmarkMarginDrawEventArgs : EventArgs
131
131
        {
132
 
                TextEditor editor;
133
 
                Gdk.Drawable win;
134
 
                LineSegment lineSegment;
135
 
                int line;
136
 
                int x;
137
 
                int y;
138
 
                
139
132
                public TextEditor Editor {
140
 
                        get {
141
 
                                return editor;
142
 
                        }
 
133
                        get;
 
134
                        private set;
143
135
                }
144
136
 
145
137
                public Drawable Win {
146
 
                        get {
147
 
                                return win;
148
 
                        }
 
138
                        get;
 
139
                        private set;
149
140
                }
150
141
 
151
142
                public int Line {
152
 
                        get {
153
 
                                return line;
154
 
                        }
 
143
                        get;
 
144
                        private set;
155
145
                }
156
146
 
157
147
                public int X {
158
 
                        get {
159
 
                                return x;
160
 
                        }
 
148
                        get;
 
149
                        private set;
161
150
                }
162
151
 
163
152
                public int Y {
164
 
                        get {
165
 
                                return y;
166
 
                        }
 
153
                        get;
 
154
                        private set;
167
155
                }
168
156
 
169
157
                public LineSegment LineSegment {
170
 
                        get {
171
 
                                return lineSegment;
172
 
                        }
 
158
                        get;
 
159
                        private set;
173
160
                }
174
161
                
175
162
                public BookmarkMarginDrawEventArgs (TextEditor editor, Gdk.Drawable win, LineSegment line, int lineNumber, int xPos, int yPos)
176
163
                {
177
 
                        this.editor = editor;
178
 
                        this.win    = win;
179
 
                        this.lineSegment = line;
180
 
                        this.line   = lineNumber;
181
 
                        this.x      = xPos;
182
 
                        this.y      = yPos;
 
164
                        this.Editor = editor;
 
165
                        this.Win    = win;
 
166
                        this.LineSegment = line;
 
167
                        this.Line   = lineNumber;
 
168
                        this.X      = xPos;
 
169
                        this.Y      = yPos;
183
170
                }
184
171
        }
185
172