forked from diffpy/diffpy.utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgridutils.py
169 lines (148 loc) · 5.05 KB
/
gridutils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#!/usr/bin/env python
##############################################################################
#
# diffpy.utils by DANSE Diffraction group
# Simon J. L. Billinge
# (c) 2006 trustees of the Michigan State University.
# All rights reserved.
#
# File coded by: Chris Farrow, Pavol Juhas
#
# See AUTHORS.txt for a list of people who contributed.
# See LICENSE_DANSE.txt for license information.
#
##############################################################################
"""Common functions for manipulating wx.grid.Grid.
"""
import wx
def getSelectionRows(grid):
"""Indices of the rows that have any cell selected.
"""
rows = grid.GetNumberRows()
rset = set()
if grid.GetSelectedCols():
rset.update(range(rows))
rset.update(grid.GetSelectedRows())
for r, c in grid.GetSelectedCells():
rset.add(r)
blocks = zip(grid.GetSelectionBlockTopLeft(),
grid.GetSelectionBlockBottomRight())
for tl, br in blocks:
rset.update(range(tl[0], br[0] + 1))
rv = sorted(rset)
return rv
def getSelectionColumns(grid):
"""Indices of columns that have any cell selected.
"""
cols = grid.GetNumberCols()
cset = set()
if grid.GetSelectedRows():
cset.update(range(cols))
cset.update(grid.GetSelectedCols())
for r, c in grid.GetSelectedCells():
cset.add(c)
blocks = zip(grid.GetSelectionBlockTopLeft(),
grid.GetSelectionBlockBottomRight())
for tl, br in blocks:
cset.update(range(tl[1], br[1] + 1))
rv = sorted(cset)
return rv
def getSelectedCells(grid):
"""Get list of (row, col) pairs of all selected cells.
Unlike grid.GetSelectedCells this returns them all no matter how they were selected.
"""
rows = grid.GetNumberRows()
cols = grid.GetNumberCols()
allrows = range(rows)
allcols = range(cols)
rcset = set()
for r in grid.GetSelectedRows():
rcset.update(zip(cols * [r], allcols))
for c in grid.GetSelectedCols():
rcset.update(zip(allrows, rows * [c]))
blocks = zip(grid.GetSelectionBlockTopLeft(),
grid.GetSelectionBlockBottomRight())
for tl, br in blocks:
brows = range(tl[0], br[0] + 1)
bcols = range(tl[1], br[1] + 1)
rcset.update((r, c) for r in brows for c in bcols)
rcset.update(grid.GetSelectedCells())
rv = sorted(rcset)
return rv
def limitSelectionToRows(grid, indices):
'''Limit selection to the specified row indices.
No action for empty indices.
Parameters
----------
grid
instance of wx.grid.Grid
indices: list
Row indices to be selected, must be sorted and unique.
Returns
-------
No return value.
'''
import bisect
if not indices:
return
rowblocks = _indicesToBlocks(indices)
cindices = getSelectionColumns(grid) or [grid.GetGridCursorCol()]
colblocks = _indicesToBlocks(cindices)
grid.ClearSelection()
for rlo, rhi in rowblocks:
for clo, chi in colblocks:
grid.SelectBlock(rlo, clo, rhi, chi, True)
# move cursor to the selected area
krow = bisect.bisect_left(indices, grid.GetGridCursorRow())
krow = min(krow, len(indices) - 1)
kcol = bisect.bisect_left(cindices, grid.GetGridCursorCol())
kcol = min(kcol, len(cindices) - 1)
grid.SetGridCursor(indices[krow], cindices[kcol])
return
def quickResizeColumns(grid, indices):
"""Resize the columns that were recently affected by cell changes.
This is faster than the normal grid AutoSizeColumns, since the latter loops
over the entire grid. In addition, this will not cause a
EVT_GRID_CMD_CELL_CHANGE event to be thrown, which can cause recursion.
This method will only increase column size.
"""
# Get the columns and maximum text width in each one
dc = wx.ScreenDC()
maxSize = {}
for (i, j) in indices:
if j not in maxSize:
renderer = grid.GetCellRenderer(i, j)
attr = grid.GetOrCreateCellAttr(i, j)
size = renderer.GetBestSize(grid, attr, dc, i, j).width
size += 10 # Need a small buffer
maxSize[j] = size
grid.BeginBatch()
for (j, size) in maxSize.items():
if size > grid.GetColSize(j):
grid.SetColSize(j, size)
grid.EndBatch()
return
# Local Helpers --------------------------------------------------------------
def _indicesToBlocks(indices):
"""Convert a list of integer indices to a list of (start, stop) tuples.
The (start, stop) tuple defines a continuous block, where the stop index is included in the block.
Parameters
----------
indices: list
Integer indices, must be unique and sorted.
Returns
-------
list:
A list of (start, stop) tuples.
"""
rngs = []
i0 = indices[0] - 2 # Ensure i0 + 1 < i for first step
for i in indices:
if i > i0 + 1:
rngs.append([i, i])
else:
rngs[-1][-1] = i
i0 = i
rv = [tuple(ij) for ij in rngs]
return rv
# End of file