mwxlib 0.95.8__py3-none-any.whl → 0.95.9__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mwxlib might be problematic. Click here for more details.

mwx/controls.py CHANGED
@@ -1225,7 +1225,7 @@ class Indicator(wx.Control):
1225
1225
  self.Refresh()
1226
1226
 
1227
1227
  def update_design(self, **kwargs):
1228
- """Update design attributes.
1228
+ """Update multiple design properties at once.
1229
1229
 
1230
1230
  This method is useful for changing colors, spacing, radius, etc.
1231
1231
  The best size will be automatically invalidated and re-calculated.
mwx/framework.py CHANGED
@@ -1,7 +1,7 @@
1
1
  #! python3
2
2
  """mwxlib framework.
3
3
  """
4
- __version__ = "0.95.8"
4
+ __version__ = "0.95.9"
5
5
  __author__ = "Kazuya O'moto <komoto@jeol.co.jp>"
6
6
 
7
7
  from functools import wraps, partial
mwx/matplot2lg.py CHANGED
@@ -57,6 +57,9 @@ class LinePlot(MatplotPanel):
57
57
  self.__region = None
58
58
  self.__annotations = []
59
59
 
60
+ ## Note for matplotlib >= 3.9.0:
61
+ ## axhspan and axvspan now return Rectangles, not Polygons.
62
+ #<matplotlib.patches.Rectangle>
60
63
  #<matplotlib.patches.Polygon>
61
64
  self.__vspan = self.axes.axvspan(0, 0,
62
65
  color='none', ls='dashed', lw=1, ec='black', visible=0, zorder=2)
@@ -81,7 +84,11 @@ class LinePlot(MatplotPanel):
81
84
  elif b > r: b = r
82
85
  v = np.array((a, b))
83
86
  self.__vspan.set_visible(1)
84
- self.__vspan.set_xy(((a,0), (a,1), (b,1), (b,0)))
87
+ try:
88
+ self.__vspan.set_x(a)
89
+ self.__vspan.set_width(b-a)
90
+ except AttributeError:
91
+ self.__vspan.set_xy(((a,0), (a,1), (b,1), (b,0)))
85
92
  self.handler('region_set', self.frame)
86
93
  else:
87
94
  self.__vspan.set_visible(0)
@@ -299,11 +306,9 @@ class Histogram(LinePlot):
299
306
  self.__frame = frame # update reference of the frame
300
307
  if frame:
301
308
  try:
302
- image = self.frmae.image
303
- h, w = image.shape
304
- x, y = frame.__data # reuse the data unless,
309
+ x, y = frame.__data # reuse cached data
305
310
  except Exception:
306
- x, y = frame.__data = self.calc(frame) # histogram_data buffer
311
+ x, y = frame.__data = self.calc(frame) # new histogram_data buffer
307
312
 
308
313
  self.__plot.set_data(x, y)
309
314
  self.xlim = x.min(), x.max()
mwx/nutshell.py CHANGED
@@ -867,7 +867,7 @@ class EditorInterface(CtrlInterface):
867
867
  self.Overtype = mode if mode is not None else not self.Overtype
868
868
 
869
869
  def wrap(self, mode=1):
870
- """Sets whether text is word wrapped.
870
+ """Set whether text is word wrapped.
871
871
 
872
872
  (override) mode in {0:no-wrap, 1:word-wrap, 2:char-wrap,
873
873
  3:whitespace-wrap, None:toggle}
@@ -1800,8 +1800,7 @@ class EditorBook(AuiNotebook, CtrlInterface):
1800
1800
  evt.Skip()
1801
1801
 
1802
1802
  def set_attributes(self, buf=None, **kwargs):
1803
- """Sets attributes and defaultBufferStyle
1804
- that apply to all buffers contained in the EditorBook.
1803
+ """Set multiple properties at once to the buffer(s).
1805
1804
 
1806
1805
  Args:
1807
1806
  buf : a buffer to apply (if None, applies to all buffers).
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mwxlib
3
- Version: 0.95.8
3
+ Version: 0.95.9
4
4
  Summary: A wrapper of matplotlib and wxPython (phoenix)
5
5
  Home-page: https://github.com/komoto48g/mwxlib
6
6
  Author: Kazuya O'moto
@@ -1,14 +1,14 @@
1
1
  mwx/__init__.py,sha256=nN62CGTWjME7Zz2h-jIRB8MxwuErIkHPGrlBzydkF0o,643
2
2
  mwx/bookshelf.py,sha256=DAhMQk3_J4rdE50adBMFu5wNz3WdMh_zzJ37O9ncceo,5103
3
- mwx/controls.py,sha256=ejttyU7pC50tr71cOWQj9ImN_AMeTKtQWozPD8pLwhE,48183
4
- mwx/framework.py,sha256=ITmjul_u4gp9jAJ_qbCDUVhlLI02cFhLLABCbYS-13k,75669
3
+ mwx/controls.py,sha256=IAT3l3-azlPFtMc2VGNMiQhI390ExW0S4CgjEOKFI4s,48200
4
+ mwx/framework.py,sha256=OVFv_5c-vrXRuvWm9YN8cHWmvN-svodmMAnlOAPBwQ4,75669
5
5
  mwx/graphman.py,sha256=NBe58KdAstFNPqyEmpPMMmWwjtNgJB7HumSI7-gjw54,70533
6
6
  mwx/images.py,sha256=gyvqW4TLWdJMKmsaWiPiV_PuHJM1GbHgeELERLwGzg8,45291
7
7
  mwx/matplot2.py,sha256=1ISXVwqlu1EJKe5JXmBC2tuecsRoFzJrMZsqQMxdC50,33432
8
8
  mwx/matplot2g.py,sha256=KIuownEsF7t2RgHn3kOxjBXbKOdfS99X_CtQweG_FrM,65471
9
- mwx/matplot2lg.py,sha256=gI_L_GofQrg5TIgZFMgYu8-7IRoe6VCRG3Ub35ChSpQ,27177
9
+ mwx/matplot2lg.py,sha256=pcu1oDPE_BlpFqNGPPKf9vpTuDs_h_u3OTRAJx5-Sds,27392
10
10
  mwx/mgplt.py,sha256=ITzxA97yDwr_35BUk5OqnyskSuKVDbpf2AQCKY1jHTI,5671
11
- mwx/nutshell.py,sha256=xI5o9os0wxgkY5LFz1wztM36l-4nl2j1iAdzJ11BMv0,137104
11
+ mwx/nutshell.py,sha256=pbsQATwt906lOXGFWJmuwZIwU_ve78o46I2g5zNjvG4,137050
12
12
  mwx/utilus.py,sha256=Uwj6vbNUUztwOswPG75xtsT2y_PZqh3QiJraxmA9iT0,37401
13
13
  mwx/wxmon.py,sha256=6es-jVz9Ht7vZnG7VBJcaNYLHY0PnZtij60SXcZRTeY,12727
14
14
  mwx/wxpdb.py,sha256=lLowkkAgMhPFHAfklD7wZHq0qbSMjRxnBFtSajmVgME,19133
@@ -21,8 +21,8 @@ mwx/plugins/frame_listview.py,sha256=RaYOj-YKrpLqhT8TkBRDX1TQnSPv90V185j8OjrWJTs
21
21
  mwx/plugins/line_profile.py,sha256=--9NIc3x5EfRB3L59JvD7rzENQHyiYfu7wWJo6AuMkA,820
22
22
  mwx/py/__init__.py,sha256=xykgfOytOwNuvXsfkLoumFZSTN-iBsHOjczYXngjmUE,12
23
23
  mwx/py/filling.py,sha256=KaHooM32hrGGgqw75Cbt8lAvACwC6RXadob9LGgNnEc,16806
24
- mwxlib-0.95.8.dist-info/LICENSE,sha256=PGtRKCaTkmUDlBQwpptJAxJtdqxIUtAmdBsaT9nUVkA,1091
25
- mwxlib-0.95.8.dist-info/METADATA,sha256=_rLSaOpBEIzfQxz1acUok9ODoGNNth0lRqmIOLZv0Xs,1925
26
- mwxlib-0.95.8.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
27
- mwxlib-0.95.8.dist-info/top_level.txt,sha256=SI1Mh118AstnUFGPNq5aMNKiAnVNmZk1S9Ij-OwAEpY,4
28
- mwxlib-0.95.8.dist-info/RECORD,,
24
+ mwxlib-0.95.9.dist-info/LICENSE,sha256=PGtRKCaTkmUDlBQwpptJAxJtdqxIUtAmdBsaT9nUVkA,1091
25
+ mwxlib-0.95.9.dist-info/METADATA,sha256=TpQuGm-jesDFI2I-g8nwPcIqT7Edpv4_pM1ZFBb3gwo,1925
26
+ mwxlib-0.95.9.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
27
+ mwxlib-0.95.9.dist-info/top_level.txt,sha256=SI1Mh118AstnUFGPNq5aMNKiAnVNmZk1S9Ij-OwAEpY,4
28
+ mwxlib-0.95.9.dist-info/RECORD,,