wolfhece 2.1.77__py3-none-any.whl → 2.1.79__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.
- wolfhece/PyDraw.py +8 -1
- wolfhece/acceptability/acceptability.py +563 -551
- wolfhece/acceptability/acceptability_gui.py +331 -328
- wolfhece/acceptability/func.py +1597 -1637
- wolfhece/apps/hydrometry.py +28 -0
- wolfhece/apps/version.py +1 -1
- wolfhece/cli.py +5 -0
- wolfhece/hydrometry/kiwis.py +131 -16
- wolfhece/hydrometry/kiwis_gui.py +38 -3
- {wolfhece-2.1.77.dist-info → wolfhece-2.1.79.dist-info}/METADATA +1 -1
- {wolfhece-2.1.77.dist-info → wolfhece-2.1.79.dist-info}/RECORD +14 -14
- {wolfhece-2.1.77.dist-info → wolfhece-2.1.79.dist-info}/WHEEL +1 -1
- {wolfhece-2.1.77.dist-info → wolfhece-2.1.79.dist-info}/entry_points.txt +2 -0
- wolfhece/hydrometry/kiwispie.py +0 -379
- {wolfhece-2.1.77.dist-info → wolfhece-2.1.79.dist-info}/top_level.txt +0 -0
wolfhece/PyDraw.py
CHANGED
@@ -175,7 +175,7 @@ class Colors_1to9(wx.Frame):
|
|
175
175
|
|
176
176
|
def change_colors(self, e):
|
177
177
|
|
178
|
-
super(Colors_1to9, self).__init__(self._parent, title=_('Colors 1 to 9'), size=(200, 400))
|
178
|
+
super(Colors_1to9, self).__init__(self._parent, title=_('Colors 1 to 9'), size=(200, 400), style = wx.DEFAULT_FRAME_STYLE & ~ (wx.RESIZE_BORDER | wx.MAXIMIZE_BOX | wx.MINIMIZE_BOX | wx.CLOSE_BOX))
|
179
179
|
panel = wx.Panel(self)
|
180
180
|
panel.SetBackgroundColour(wx.Colour(255, 255, 255))
|
181
181
|
|
@@ -213,6 +213,13 @@ class Colors_1to9(wx.Frame):
|
|
213
213
|
self.Bind(wx.EVT_BUTTON, self.OnSetDefault, cdmSetDefault)
|
214
214
|
self.Bind(wx.EVT_BUTTON, self.OnSave, cmdSave)
|
215
215
|
|
216
|
+
icon = wx.Icon()
|
217
|
+
icon_path = Path(__file__).parent / "apps/wolf_logo2.bmp"
|
218
|
+
icon.CopyFromBitmap(wx.Bitmap(str(icon_path), wx.BITMAP_TYPE_ANY))
|
219
|
+
self.SetIcon(icon)
|
220
|
+
|
221
|
+
self.CenterOnScreen()
|
222
|
+
|
216
223
|
self.Show()
|
217
224
|
|
218
225
|
def Apply(self):
|