Merge tag 'wxPython-4.0.2' into wxPy-4.0.x

(cherry picked from commit 4c56c39e52)
This commit is contained in:
Robin Dunn
2018-06-17 21:32:08 -07:00
parent 9221cbef4b
commit b77c88a280
298 changed files with 450 additions and 332 deletions

View File

@@ -42,11 +42,11 @@ Other changes in this release:
4.0.2
-----
* (not yet released)
4.0.2 "Cute as a June bug!"
---------------------------
* 16-June-2018
PyPI: https://pypi.python.org/pypi/wxPython/4.0.2
PyPI: https://pypi.org/project/wxPython/4.0.2
Extras: https://extras.wxPython.org/wxPython4/extras/
Pip: ``pip install wxPython==4.0.2``
@@ -62,10 +62,10 @@ Changes in this release include the following:
* Fix leaking image list in CheckListCtrlMixin (#752)
* All items marked as deprecated in the wxWidgets interface files will now
throw a DeprecationWarning when used from wxPython. Many of these items are
disappearing in 4.1 so it's important to ensure they are deprecated at
runtime too instead of just in the docs. (#749)
* All items marked as deprecated in the wxWidgets interface (documentation)
files will now throw a DeprecationWarning when used from wxPython. Many of
these items are disappearing in 4.1 so it's important to ensure they are
deprecated at runtime too instead of just in the docs. (#749)
* Ensure that the attribute list given to the GLCanvas constructor is
zero-terminated like it was in Classic. (#770)
@@ -79,13 +79,13 @@ Changes in this release include the following:
since otherwise it would be caught when child windows are destroyed too,
which causes problems in this case. (#778)
* Fixed a problem where wx.TreeCtrl.OnCompareItems is not being called in
* Fixed a problem where wx.TreeCtrl.OnCompareItems was not being called in
derived classes on Windows. This was due to an optimization that wasn't
compatible with how the classes are wrapped. (#774)
* Added wrappers for wx.ClassInfo and exposed wx.Object.GetClassInfo. This
class is part of wxWidgets' internal type information system abd although
it is not very useful for Python applications but it is useful for debugging
class is part of wxWidgets' internal type information system and although
it is not very useful for Python applications it is useful for debugging
some internal wxPython issues.
* Removed the wx.lib.pubsub package, and replaced it with code that imports
@@ -132,7 +132,7 @@ Changes in this release include the following:
* Fixed crashing bug when using client data with items in
wx.dataview.DataViewTreeCtrl. (#856)
* Detach wxControl in AuiToolbar from current sizer before attach to a new
* Detach wx.Control in AuiToolbar from current sizer before attach to a new
one. (#843)
* Fixed a problem in wx.lib.mixins.listctrl.TextEditMixin where the height of
@@ -1250,8 +1250,8 @@ it will do the dialog.Destroy() call for you. This means that you can
use code like this::
with MyDialog(self, foo, bar) as dlg:
if dlg.ShowModal() == wx.ID_OK:
# do something with dlg values
if dlg.ShowModal() == wx.ID_OK:
# do something with dlg values
The list of wx classes that can now be used as context managers is:

View File

@@ -4,7 +4,7 @@
# Author: Kevin Ollivier
#
# Created: 24-Sept-2011
# Copyright: (c) 2015 by Kevin Ollivier, Robin Dunn
# Copyright: (c) 2015-2018 by Kevin Ollivier, Robin Dunn
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -4,7 +4,7 @@
# Author: Robin Dunn
#
# Created: 12-July-2012
# Copyright: (c) 2013 by Robin Dunn
# Copyright: (c) 2013-2018 by Robin Dunn
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -9,7 +9,7 @@
# Author: Robin Dunn
#
# Created: 3-Dec-2010
# Copyright: (c) 2010-2017 by Total Control Software
# Copyright: (c) 2010-2018 by Total Control Software
# License: wxWindows License
#----------------------------------------------------------------------

View File

@@ -7,7 +7,7 @@
# Author: Robin Dunn
#
# Created: 3-Nov-2010
# Copyright: (c) 2013-2017 by Total Control Software
# Copyright: (c) 2013-2018 by Total Control Software
# License: wxWindows License
#----------------------------------------------------------------------

View File

@@ -6,7 +6,7 @@
# Author: Robin Dunn
#
# Created: 3-Nov-2010
# Copyright: (c) 2013-2017 by Total Control Software
# Copyright: (c) 2013-2018 by Total Control Software
# License: wxWindows License
#----------------------------------------------------------------------

View File

@@ -7,7 +7,7 @@
# Author: Robin Dunn
#
# Created: 3-Nov-2010
# Copyright: (c) 2010-2017 by Total Control Software
# Copyright: (c) 2010-2018 by Total Control Software
# License: wxWindows License
#----------------------------------------------------------------------
@@ -26,7 +26,7 @@ VER_MAJOR = 4
VER_MINOR = 1
VER_RELEASE = 0
VER_FLAGS = "a1" # wxPython release flags
VER_FLAGS = "" # wxPython release flags
# The VER_FLAGS value is appended to the version number constructed from the
# first 3 components and should be set according to the following patterns.

View File

@@ -32,7 +32,7 @@ sit back and enjoy. Be sure to take a peek at the source code for each
demo item so you can learn how to use the classes yourself.</p>
<p><b>wxPython</b> is brought to you by <b>Robin Dunn</b> and<br>
<b>Total Control Software,</b> Copyright (c) 1997-2017.</p>
<b>Total Control Software,</b> Copyright (c) 1997-2018.</p>
<p>
<font size="-1">Please see <i>license.txt</i> for licensing information.</font>

View File

@@ -20,7 +20,7 @@ class TestPanel(wx.Panel):
info = wx.adv.AboutDialogInfo()
info.Name = "Hello World"
info.Version = "1.2.3"
info.Copyright = "(c) 2013-2017 Programmers and Coders Everywhere"
info.Copyright = "(c) 2013-2018 Programmers and Coders Everywhere"
info.Description = wordwrap(
"A \"hello world\" program is a software program that prints out "
"\"Hello world!\" on a display device. It is used in many introductory "

View File

@@ -7,7 +7,7 @@
# Author: Robin Dunn
#
# Created: A long time ago, in a galaxy far, far away...
# Copyright: (c) 1998-2017 by Total Control Software
# Copyright: (c) 1998-2018 by Total Control Software
# Licence: wxWindows license
#----------------------------------------------------------------------------

View File

@@ -7,7 +7,7 @@
# Author: Robb Shecter (robb@acm.org)
#
# Created: 16-December-2002
# Copyright: (c) 2002-2017 by Robb Shecter (robb@acm.org),
# Copyright: (c) 2002-2018 by Robb Shecter (robb@acm.org) and
# Total Control Software
# Licence: wxWindows license
#---------------------------------------------------------------------------

View File

@@ -7,7 +7,7 @@
# Author: Robin Dunn & Gary Dumer
#
# Created:
# Copyright: (c) 1998-2017 by Total Control Software
# Copyright: (c) 1998-2018 by Total Control Software
# Licence: wxWindows license
#----------------------------------------------------------------------------

View File

@@ -6,7 +6,7 @@
# Author: Robin Dunn
#
# Created: A long time ago, in a galaxy far, far away...
# Copyright: (c) 1999-2017 by Total Control Software
# Copyright: (c) 1999-2018 by Total Control Software
# Licence: wxWindows license
# Tags: phoenix-port, py3-port
#----------------------------------------------------------------------------

View File

@@ -21,7 +21,7 @@
<font color="#0000ff">//</font>
<font color="#0000ff">// Created: 13-Jan-2000</font>
<font color="#0000ff">// RCS-ID: $Id$</font>
<font color="#0000ff">// Copyright: (c) 2000-2017 by Total Control Software</font>
<font color="#0000ff">// Copyright: (c) 2000-2018 by Total Control Software</font>
<font color="#0000ff">// Licence: wxWindows license</font>
<font color="#0000ff">/////////////////////////////////////////////////////////////////////////////</font>

View File

@@ -7,7 +7,7 @@
# Author: Robin Dunn
#
# Created: 6-March-2000
# Copyright: (c) 2000-2017 by Total Control Software
# Copyright: (c) 2000-2018 by Total Control Software
# Licence: wxWindows license
#----------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 25-Oct-2016
# Copyright: (c) 2016-2017 by Total Control Software
# Copyright: (c) 2016-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 8-Nov-2010
# Copyright: (c) 2010-2017 by Total Control Software
# Copyright: (c) 2010-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -5,7 +5,7 @@
#
# Created: 12-Sept-2011
# Copyright: (c) 2011 by Kevin Ollivier
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 3-Nov-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 20-Nov-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Dietmar Schwertberger
#
# Created: 13-Nov-2015
# Copyright: (c) 2015-2017 by Total Control Software
# Copyright: (c) 2015-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Dietmar Schwertberger
#
# Created: 13-Nov-2015
# Copyright: (c) 2015-2017 by Total Control Software
# Copyright: (c) 2015-2018 by Total Control Software
# License: wxWindows License
# ---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 23-Feb-2015
# Copyright: (c) 2015-2017 by Total Control Software
# Copyright: (c) 2015-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 20-Jun-2016
# Copyright: (c) 2016-2017 by Total Control Software
# Copyright: (c) 2016-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 27-Oct-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 24-Oct-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 22-Aug-2013
# Copyright: (c) 2013-2017 by Total Control Software
# Copyright: (c) 2013-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 28-Nov-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 28-Nov-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 22-Mar-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 21-May-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 03-Nov-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 22-Nov-2010
# Copyright: (c) 2010-2017 by Total Control Software
# Copyright: (c) 2010-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 26-Oct-2016
# Copyright: (c) 2016-2017 by Total Control Software
# Copyright: (c) 2016-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 26-Oct-2016
# Copyright: (c) 2016-2017 by Total Control Software
# Copyright: (c) 2016-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 27-Oct-2016
# Copyright: (c) 2016-2017 by Total Control Software
# Copyright: (c) 2016-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 21-May-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -5,7 +5,7 @@
#
# Created: 25-Aug-2011
# Copyright: (c) 2011 by Wide Open Technologies
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 31-Aug-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 05-Jun-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 16-Jun-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 09-Apr-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 17-Jun-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -4,7 +4,7 @@
#
# Created: 6-Sept-2011
# Copyright: (c) 2011 by Kevin Ollivier
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -5,7 +5,7 @@
#
# Created: 06-Sept-2011
# Copyright: (c) 2011 by Kevin Ollivier
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 18-Jun-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 09-May-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 16-Jul-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -4,7 +4,7 @@
# Robin Dunn
#
# Created: 15-Sept-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -4,7 +4,7 @@
#
# Created: 27-Aug-2011
# Copyright: (c) 2013 by Wide Open Technologies
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 31-May-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 09-Apr-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -5,7 +5,7 @@
#
# Created: 10-Sept-2011
# Copyright: (c) 2011 by Kevin Ollivier
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -4,7 +4,7 @@
#
# Created: 26-Aug-2011
# Copyright: (c) 2013 by Wide Open Technologies
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 2-Sept-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -5,7 +5,7 @@
#
# Created: 06-Sept-2011
# Copyright: (c) 2013 by Wide Open Technologies
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -4,7 +4,7 @@
#
# Created: 10-Sept-2011
# Copyright: (c) 2011 by Kevin Ollivier
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -5,7 +5,7 @@
#
# Created: 10-Sept-2011
# Copyright: (c) 2011 by Kevin Ollivier
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 09-Apr-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -5,7 +5,7 @@
#
# Created: 26-Aug-2011
# Copyright: (c) 2011 by Wide Open Technologies
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 2-Sept-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 2-Sept-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 2-Sept-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 2-Sept-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 2-Sept-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 2-Sept-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 2-Sept-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 29-Mar-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -4,7 +4,7 @@
#
# Created: 10-Sept-2011
# Copyright: (c) 2011 by Kevin Ollivier
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 27-Nov-2010
# Copyright: (c) 2010-2017 by Total Control Software
# Copyright: (c) 2010-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 29-Apr-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 21-May-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 15-Nov-2010
# Copyright: (c) 2010-2017 by Total Control Software
# Copyright: (c) 2010-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 01-Dec-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 22-Nov-2010
# Copyright: (c) 2010-2017 by Total Control Software
# Copyright: (c) 2010-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 12-Apr-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -5,7 +5,7 @@
#
# Created: 10-Sept-2011
# Copyright: (c) 2011 by Kevin Ollivier
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 27-Nov-2010
# Copyright: (c) 2010-2017 by Total Control Software
# Copyright: (c) 2010-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 19-Jun-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 19-Jun-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 8-Oct-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 29-Jul-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -5,7 +5,7 @@
#
# Created: 10-Sept-2011
# Copyright: (c) 2011 by Kevin Ollivier
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 06-Dec-2011
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 4-Nov-2010
# Copyright: (c) 2010-2017 by Total Control Software
# Copyright: (c) 2010-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created:
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 4-Nov-2010
# Copyright: (c) 2010-2017 by Total Control Software
# Copyright: (c) 2010-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -5,7 +5,7 @@
#
# Created: 10-Sept-2011
# Copyright: (c) 2011 by Kevin Ollivier
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 20-Dec-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -5,7 +5,7 @@
#
# Created: 10-Sept-2011
# Copyright: (c) 2011 by Kevin Ollivier
# Copyright: (c) 2011-2017 by Total Control Software
# Copyright: (c) 2011-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 29-Jun-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 06-Apr-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 30-Oct-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 30-Oct-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 30-Oct-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 30-Oct-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 30-Oct-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 27-Oct-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 18-Mar-2013
# Copyright: (c) 2013-2017 by Total Control Software
# Copyright: (c) 2013-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

View File

@@ -3,7 +3,7 @@
# Author: Robin Dunn
#
# Created: 29-Oct-2012
# Copyright: (c) 2012-2017 by Total Control Software
# Copyright: (c) 2012-2018 by Total Control Software
# License: wxWindows License
#---------------------------------------------------------------------------

Some files were not shown because too many files have changed in this diff Show More