~ubuntu-branches/ubuntu/vivid/monodevelop/vivid-proposed

« back to all changes in this revision

Viewing changes to external/xwt/Xwt/Xwt.Backends/IListViewBackend.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2014-10-09 14:09:23 UTC
  • mfrom: (10.3.5)
  • Revision ID: package-import@ubuntu.com-20141009140923-s0d22u5f9kg8jvds
Tags: 5.5.0.227-1
* [b2c8331] Imported Upstream version 5.5.0.227 (Closes: #754316)
* [d210995] Delete obsolete patches
* [1b59ae1] Clear patch fizz, via quilt refresh
* [3dd147d] Fix error in configure.in which applies for tarball builds but 
  not git builds when running autoreconf
* [21c2a57] Remove Metacity references for good
* [3331661] Ensure NUnit 2.6.3 is installed
* [fd85c88] Build-depend on NuGet
* [a1ae116] Add WebKit to build dependencies, for Xwt moduleref resolution
* [9b4cf12] Since the GDB addin is integrated now, declare it in 
  debian/control
* [6231562] Correct NUnit links
* [3d2b693] Fix NuGet addin, by copying libs locally
* [74bf9a8] Don't symlink unused Mocks NUnit assembly
* [ade52b2] Ensure IKVM.Reflection is built with default (4.5) profile

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
                int[] SelectedRows { get; }
35
35
                void SelectRow (int pos);
36
36
                void UnselectRow (int pos);
 
37
                void ScrollToRow (int row);
37
38
 
38
39
                bool BorderVisible { get; set; }
 
40
                GridLines GridLinesVisible { get; set; }
39
41
                bool HeadersVisible { get; set; }
 
42
 
 
43
                int GetRowAtPosition (Point p);
 
44
                Rectangle GetCellBounds (int row, CellView cell, bool includeMargin);
40
45
        }
41
46
        
42
47
        public enum ListViewEvent