Matthias Koefferlein
3ce7038a7d
Alternative fix using a customized implementation for QMessageLogger functions
2021-11-10 23:38:33 +01:00
Matthias Koefferlein
4a44329e38
Enabling 'enclosed' as a (sometimes) more efficient way of implementing an enclosing check.
2021-11-08 23:18:01 +01:00
Matthias Koefferlein
f968751a44
RPM build script patch for Python3 @ CentOS7
2021-10-20 22:21:56 +02:00
Matthias Koefferlein
8a892cb6e2
Fixed python3 dependency for CentOS7 RPM
2021-10-20 21:39:04 +02:00
Matthias Koefferlein
4ecfd93c69
Using Python3 for CentOS7 builds now
2021-10-19 22:50:05 +02:00
Matthias Koefferlein
07ea4f643e
Generalized deb package generation for easier maintenance
2021-07-31 10:16:53 +02:00
Matthias Koefferlein
1647966b70
Allow x-suffix versions in .deb builds, updated COPYRIGHT and Changelog for next version.
2021-07-31 09:03:13 +02:00
Matthias Koefferlein
d5b92c2925
More robustness for Windows build script
2021-07-06 23:46:04 +02:00
Matthias Koefferlein
5e04ea6156
Clarification of negative edge output for two-layer DRC's.
2021-05-26 01:12:35 +02:00
Matthias Koefferlein
6496a71b5b
Removed is_of_type() of gsi::Class which is not needed and appears to cause problems on M1 ARM
2021-05-19 22:40:14 +02:00
Matthias Koefferlein
51c5cd504a
Added missing file, updated debian build script
2021-05-01 08:39:35 +02:00
Matthias Koefferlein
f122cdf953
Final touches before 0.27 release
2021-05-01 00:42:10 +02:00
Matthias Köfferlein
b968f2b47f
#730 : providing a new Qt module named QtUiTools for QUiLoader class s… ( #735 )
...
* #730 : providing a new Qt module named QtUiTools for QUiLoader class support.
* Fixed a compile error on Mac
* Added QtUiTools to some more places
* Fixed a linker issue in the QtUiTools Python lib
* On occasion fixed a infinite recursion problem in the debugger
The recursion happened because by mistake I instantiated a
QApplication inside an in-application Python script. This
crashed the debugger due to infinite recursion. This is not
a real use case but to prevent similar issues, a recursion
sentinel was added.
* Removed QCoreApplication#notify from script bindings
Reasoning: "notify" made standalone scripts using QApplication and
QUiLoader virtually impossible.
Problem description:
- When a QApplication object is instantiated, e.g. in Python, the Qt binding
will install reimplementation hooks as the object may be dynamically
extended.
- A notify is virtual this means the *every* "notify" call in the application
is routed through the interpreter.
- For one thing this will slow down the application
- But as "notify" is called a zillion times this has more than this side effect.
- Specifically "notify" is called from within the QWidget constructor to
indicate a new widget. Then, if a QDialog for example is instatiated, it's
base class constructor will call "notify" when the object isn't ready yet.
- This has another severe side effect: as the object isn't ready yet, it gets
registered in the Python space with the wrong class and QDialog is not visible
as such.
To mitigate these problems, the most efficient solution is to disable "notify"
in general. There is hardly any use case in a script environment (in C++,
apart from hacking the only reasonable use case is exception handling, but
this does not apply to scripts). For providing the call functionality of
"notify" you should better use "postEvent" or "sendEvent" anyway.
So farewell QCoreApplication.notify ...
* Fixed python test for QtUiTools module
* Fixed UiTools test on Qt4 - QUiLoader needs an application object
Co-authored-by: Kazunari Sekigawa <kazunari.sekigawa@gmail.com>
2021-02-25 21:29:21 +01:00
Matthias Koefferlein
d31f87f053
Some issues with the byte array binding fixed, less ambiguitites with Qt bindings, tests added.
2021-01-24 23:44:40 +01:00
Matthias Koefferlein
4460c294b0
Some bug fixes, doc update, test updates.
2021-01-16 00:32:06 +01:00
Matthias Koefferlein
111b49f0ef
Updated DRC documentation
2021-01-15 19:01:32 +01:00
Matthias Koefferlein
8051bef9ac
Doc update, fixed DRC's 'switch' function
2021-01-15 00:31:26 +01:00
Matthias Koefferlein
80996a77fb
New *_sum quantifiers, doc enhancements, bug fixing
2021-01-14 00:21:21 +01:00
Matthias Koefferlein
c160f7f43f
Documentation updates
2021-01-06 02:20:36 +01:00
Matthias Koefferlein
7d4310d343
Updated copyright to 2021
2021-01-05 22:57:48 +01:00
Matthias Koefferlein
57a7671640
Fixed enclosing feature, added tests + DRC impl., DRC doc.
2020-12-08 22:44:33 +01:00
Matthias Koefferlein
a833dd57fe
Implemented rectangle and opposite filters for DRC functions.
2020-12-06 18:25:57 +01:00
Matthias Koefferlein
56572bd481
Added DRC documentation for interacting, not_interacting, select_interacting, select_not_interacting.
2020-09-22 19:06:12 +02:00
Matthias Koefferlein
db9f43f576
Updated DRC doc and enhanced generation of DRC doc somewhat (bigger images, no exaes etc.)
2020-09-16 23:45:26 +02:00
Matthias Köfferlein
59ee6b6a83
Fixed #629 (timeout event of QTimer not present on Qt5) ( #631 )
...
In addition, the "destroyed" and "objectNameChanged" signals
were added (specifically to QObject).
The API binding for Qt5 was updated which adds some events.
2020-09-14 18:34:28 +02:00
Matthias Koefferlein
eacd67df1c
Dependeny list for Ubuntu 20
2020-05-30 22:41:13 +02:00
Matthias Koefferlein
f410c91339
Updated documentation
2020-05-23 21:14:01 +02:00
Matthias Koefferlein
7574a41d09
Fixed problem of missing exec_ documentation
2020-04-22 08:07:22 +02:00
Matthias Koefferlein
666cdeadc5
MERGE: documentation enhancements for LVS/DRC
2020-03-28 12:29:53 +01:00
Matthias Koefferlein
daba9d78be
More @args removed.
2020-03-14 22:26:21 +01:00
Matthias Koefferlein
d4b06ca143
WIP: fixed dependencies
2020-02-21 23:51:04 +01:00
Matthias Koefferlein
3b8fdf52a2
Fixed #496 (CentOS 8 builds)
2020-02-21 21:43:26 +01:00
Matthias Koefferlein
a57d2cd934
Fixed #496 (CentOS 8 builds)
2020-02-21 21:41:38 +01:00
Matthias Koefferlein
4e4778afba
CentOS8 builds, first fix iteration.
2020-02-21 21:16:38 +01:00
Matthias Köfferlein
69e7704430
Issue 501 ( #505 )
...
* Fixed #501 (more Qt ownership management) - this commit contains some more changes because I had to regenerate the Qt binding sources.
* Fixed #501 (Qt object ownership transfer) - repairs, added tests
* Updated Jenkinsfile to not publish a PR build
* Update Jenkinsfile - exclude PR's from build
2020-02-21 18:25:22 +01:00
Matthias Koefferlein
21397283f3
Fixed #477
2020-01-23 18:38:41 +01:00
Matthias Koefferlein
b8c82c4f8b
Updated copyright notice to 2020
2020-01-05 00:59:43 +01:00
Matthias Koefferlein
c6fabea87f
Fixed #449 (added styles plugin folder)
2019-12-15 16:26:33 +01:00
Matthias Köfferlein
446b2f15b0
#434 fixed, properly including Ruby gems and providing NumPy+SciPy with Python installation (this not in git but happens through the build process)
2019-12-01 23:55:53 +01:00
Matthias Koefferlein
e7989c4006
Updated Windows build script so the installation won't get polluted by /bin files.
2019-11-14 00:47:12 +01:00
Matthias Koefferlein
4ae71075ed
Minor fix in Windows deployment script
2019-11-13 23:23:44 +01:00
Matthias Koefferlein
f768d012e5
Updated windows build script because of argument list overflow in shell script (shorter paths)
2019-11-13 21:11:40 +01:00
Matthias Koefferlein
897ccb12bf
Add an option to Windows build script to support building and deployment of 64bit coordinate version
2019-11-12 21:51:49 +01:00
Matthias Koefferlein
a697df021c
More generic Python binary for Windows build
2019-11-09 19:39:20 +01:00
Matthias Köfferlein
9a324727d2
Merge pull request #312 from KLayout/dvb
...
Dvb
2019-07-27 22:32:59 +02:00
Matthias Koefferlein
5dabd6093d
Provide new 'align' feature in LVS for automatic circuit flattening.
2019-07-23 01:12:12 +02:00
Matthias Koefferlein
11d433e103
Fixed issue #294 : renamed icon file.
2019-07-21 23:18:43 +02:00
Matthias Koefferlein
2f66f3ee3b
WIP: Extraction of DRC and LVS doc, added doc to classes
2019-06-28 18:44:36 +02:00
Matthias Koefferlein
d02a5c2cab
Fixed build script for Windows - include streamer and other plugins in .zip file too.
2019-05-15 23:47:09 +02:00
Matthias Koefferlein
08d1cff797
DRC documentation images updated - have not been made with full hierarchy. Fixed script.
2019-05-01 23:03:14 +02:00
Matthias Koefferlein
0121652084
Removed a .swp file checked in by mistake
2019-03-24 21:24:45 +01:00
Matthias Köfferlein
85808527c6
Merge pull request #244 from KLayout/issue-241
...
Fixed issue-241 (no TextGenerator.default_generator for pymod)
2019-03-22 17:52:22 +01:00
Matthias Koefferlein
69282f8fef
Fixed issue-241 (no TextGenerator.default_generator for pymod)
...
The issue was there because the fonts got imported
through Qt Resources. But in pymod there is no Qt.
The solution is to import them though compiled-in
blobs.
2019-03-21 23:11:52 +01:00
Matthias Koefferlein
de85058ecf
Bugfix: crash on Ubuntu in pya:qtbinding
...
Reason: a reference to a temporary object was passed
to a function. This happened for a default value.
The solution is to create a heap object to such default values.
2019-03-17 18:22:19 +01:00
Matthias Koefferlein
49621aa13a
Fixed some documentation issues, DRC doc updated.
2019-03-03 10:17:54 +01:00
Matthias Koefferlein
93f4cbf294
Fixed Windows installer: stream plugins have not been included.
2019-01-23 21:16:26 +01:00
Matthias Koefferlein
b0d7f5f7f5
Updated copyright.
2019-01-08 00:58:45 +01:00
Matthias Koefferlein
994ea47146
Fixed RPM spec file
2018-10-22 22:45:26 +02:00
Matthias Koefferlein
802eb5ec7a
Updated debian and RPM packager scripts for new pymod structure.
2018-10-22 21:58:56 +02:00
Matthias Koefferlein
c46bed0785
Some update to fix build issues (this time, Linux)
...
- All platforms support native hash values for long long etc.
with the TR1 containers
- Use non-static, function symbols to force linking.
- Debian package is picky about dates so give them some
in Changelog.
2018-09-10 21:56:20 +02:00
Matthias Koefferlein
25868ccd96
makedeb.sh did contain the conflict markers.
2018-09-09 22:47:56 +02:00
Matthias Köfferlein
28f8a1ee7d
Merge branch 'pymod' into pymod-msvc
2018-09-07 22:56:22 +02:00
Matthias Koefferlein
c9771f54eb
Merge branch 'master' into pymod
2018-09-01 09:37:08 +02:00
Matthias Koefferlein
155208c9c9
MSVC compatible declaration of force link flags for Qt bindings.
2018-08-04 22:44:51 +02:00
Matthias Koefferlein
67c2369962
Updated Qt declaration files for MSVC
2018-08-04 21:10:37 +02:00
Matthias Koefferlein
d81dcb6b22
Updated RPM build script for OpenSuSE 15
2018-07-31 08:01:01 +02:00
Matthias Koefferlein
5efe5d20dd
Updated RPM build script for OpenSuSE15
2018-07-31 08:00:27 +02:00
Matthias Koefferlein
6a1454645b
Fixed OpenSuSE Leap15 to RPM build script.
2018-07-31 07:12:51 +02:00
Matthias Koefferlein
b286da7e56
Fixed RPM build script for OpenSuSE Leap 15
2018-07-31 02:50:25 +02:00
Matthias Koefferlein
3ade12a6c2
Added OpenSuSE Leap15 to RPM build script.
2018-07-31 02:49:37 +02:00
Matthias Koefferlein
d5840aac20
Added OpenSuSE Leap 15 for building.
2018-07-30 23:02:07 +02:00
Matthias Koefferlein
a9b5983c55
Fixed doc generation script: needs a clean distribution dir.
2018-07-29 15:05:06 +02:00
Matthias Koefferlein
3efde26584
Cleaner builds for RPM & DEB
2018-07-29 02:45:59 +02:00
Matthias Koefferlein
f8ffcd14f1
Fixed #141 (Issue with RBA::QHostAddress (ambiguous overload) on Qt5)
2018-07-12 21:33:19 +02:00
Matthias Koefferlein
165e1eb4b2
Fixed Debian package script (again)
2018-07-12 21:01:05 +02:00
Matthias Koefferlein
5379f69fb0
Fixed Debian package script.
2018-07-11 00:29:19 +02:00
Matthias Koefferlein
184ae965e6
Added Ubuntu-18 for the build targets in makedeb.sh
2018-06-29 07:19:21 +02:00
Matthias Koefferlein
2aa11b44ad
Updated Jenkinsfile and added user doc generation scripts.
2018-06-26 07:23:44 +02:00
Matthias Koefferlein
5b7a924c3e
Fixed doc generation script.
2018-06-24 18:15:36 +02:00
Matthias Koefferlein
ea31e76c92
Enhanced user doc (css, title)
2018-06-24 18:11:40 +02:00
Matthias Koefferlein
15518c3984
Leaner doc generation, python3 installed fix for openSuSE.
2018-06-24 17:33:24 +02:00
Matthias Koefferlein
0798ac1e45
Fixed user extraction script.
2018-06-24 17:12:53 +02:00
Matthias Koefferlein
4c23e5f42e
Using batch mode for doc generation.
2018-06-24 17:05:40 +02:00
Matthias Koefferlein
8ebf4a0f79
Added Jenkinsfile for doc generation step.
2018-06-24 16:10:49 +02:00
Matthias Koefferlein
c2341ff213
WIP: speedup for CI development, fixed deb package (python needs to be part of dependency), fixed gcc build with Python3
2018-06-21 22:18:17 +02:00
Matthias Koefferlein
1b05878234
WIP: fixed deb package script and preparations for Ubuntu-18
2018-06-21 00:21:41 +02:00
Matthias Koefferlein
15bcfa34e5
WIP: updated deb production script.
2018-06-20 00:58:26 +02:00
Matthias Koefferlein
4bcf4530a5
WIP: removed fast mode from RPM building script.
2018-06-20 00:32:21 +02:00
root
4054cdea3a
WIP: fixed RPM spec file.
2018-06-19 22:28:40 +00:00
Matthias Koefferlein
4b6c6d0d6d
WIP: Updated klayout.spec
2018-06-19 23:15:29 +02:00
Matthias Koefferlein
54d412cee6
Balanced build settings (-j2 for all Linux platforms)
2018-06-19 01:08:15 +02:00
Matthias Koefferlein
2e3f0e0e88
Less waste of resources for bulk builds in CI
2018-06-18 07:45:24 +02:00
Matthias Koefferlein
4a84790c45
WIP: don't be a resource hog for batch builds
2018-06-17 22:58:40 +02:00
Matthias Koefferlein
a20c3259bf
WIP: refactored mkqtdecl configuration (common part factored out), fixed .pro file dependencies
2018-06-05 23:21:15 +02:00
Matthias Koefferlein
4fda7b2a50
WIP: added gui argument to QApplication, fixed documentation of virtual methods.
2018-06-05 22:29:34 +02:00
Matthias Koefferlein
40b2e9a1a5
WIP: usable constructors for QApplication and related.
2018-06-02 22:21:59 +02:00
Matthias Koefferlein
ea31e5bcde
WIP: removed old Qt5 binding code, fixed a segfault (static argc), enabled pya without interpreter
2018-06-02 02:03:14 +02:00
Matthias Koefferlein
b91a3b5cad
WIP: added Qt5 support
2018-05-31 09:19:26 +02:00
Matthias Koefferlein
0e29c997f6
WIP: refactoring, fixed documentation and some mistakes.
2018-05-31 01:11:24 +02:00
Matthias Koefferlein
80d00378d3
WIP: further refactoring
2018-05-30 22:46:10 +02:00
Matthias Koefferlein
f1f9132d48
WIP: further refactoring of Qt binding libs
2018-05-30 22:02:27 +02:00
Matthias Koefferlein
3b144259fd
WIP: build works again at least on Qt4.
2018-05-30 01:22:33 +02:00
Matthias Koefferlein
c30d52c801
WIP: fixed a lot of compiler issues after last refactoring.
2018-05-30 01:00:13 +02:00
Matthias Koefferlein
6468bb7ab9
WIP: refactoring of GSI structure for separated modules.
2018-05-30 00:39:58 +02:00
Matthias Koefferlein
329b9a301b
Fixed RPM build script (recursion in variable definition)
2018-05-01 22:38:37 +02:00
Matthias Koefferlein
aed13ef78f
Fixed RPM build script.
2018-05-01 17:16:43 +02:00
root
962441975d
Fixed RPM build spec file.
2018-05-01 06:46:26 +00:00
Matthias Koefferlein
79e919ef61
Update RPM spec for building on CentOS6.
2018-05-01 08:40:02 +02:00
Matthias Koefferlein
ccfe6fa918
FEATURE: 'labels' method in DRC scripts allows copying labels to output layers.
2018-04-28 10:36:13 +02:00
Matthias Koefferlein
53328d1767
Merge branch 'macos-build' from kazzz
2018-01-14 17:29:59 +01:00
Matthias Koefferlein
d11e2ed8a6
Fixed #62 (QXmlSimpleReader#parse cannot be called)
2018-01-10 20:21:56 +01:00
Matthias Koefferlein
8003d1bb47
Merge branch 'master' into macos-build-on-master
2018-01-02 23:37:45 +01:00
Matthias Koefferlein
ffb56335fb
Updated copyright note to 2018.
2018-01-01 21:08:06 +01:00
Matthias Koefferlein
28ff493de7
Replaced patch by generated code
...
The Qt4/5 bindings are generated automatically. Hence any manual
patches are bound to become lost on the next generation run.
This commit removes symbols which are not available on MacOS
by a code-generation solution.
These symbols are only required for WindowsCE so their
unavailability on other systems is not a big loss.
2017-12-17 15:30:37 +01:00
Matthias Koefferlein
ad741d0eb7
Fixed #36 : harding against destruction of object inside event handler
...
Plus: declare the form builder to return a new
widget object (the way it is).
2017-12-16 01:45:35 +01:00
Matthias Koefferlein
11cb5eb998
Qt 5.8.0 compatibility
2017-11-26 22:51:36 +01:00
Matthias Koefferlein
809187ff51
Added -32 and -64 option to Windows build script.
2017-10-19 23:52:39 +02:00
Matthias Koefferlein
dbe11b7eba
Enhanced build script so it's able to better detect Ruby/Python versions.
2017-09-18 21:11:35 +02:00
Matthias Koefferlein
5df6e6dcaa
Enabled slow building --with-qtbindings on RPM/DEB.
2017-09-16 23:42:07 +02:00
Matthias Koefferlein
e2cb63f5e5
Corrected dependencies for RPM/OpenSuSE
2017-09-16 22:52:47 +02:00
Matthias Koefferlein
838469b5d4
Updated RPM dependencies.
2017-09-16 21:50:57 +02:00
Matthias Koefferlein
fe2c5b7183
Updated debian dependencies.
2017-09-16 20:41:37 +02:00
Matthias Koefferlein
89a7afcb13
Updated RPM spec file and debian dependencies.
2017-09-16 19:44:01 +02:00
Matthias Koefferlein
0f0bea44c3
Fixed dependencies of .deb files.
2017-09-16 10:19:18 +02:00
Matthias Koefferlein
872bcbd670
Added dependencies to RPM .spec file.
2017-09-16 10:02:43 +02:00
Matthias Koefferlein
5e90cd5e86
Removed %suse_update_desktop_file from the .spec file for RPM builds - does not work on OpenSuSE 42.x
2017-09-16 01:42:56 +02:00
Matthias Koefferlein
067bf458dc
Automatic lookup of python for .spec file (RPM)
2017-09-15 21:38:32 +02:00
Matthias Koefferlein
61ef75ad12
Enhanced makedeb script so it will automatically detect the python/ruby/qt version
2017-09-14 01:48:05 +02:00
Matthias Koefferlein
9579f8548f
Fixed Debian build script.
2017-09-13 22:40:38 +02:00
Matthias Koefferlein
4ed31bf5ef
Updates of RPM and Debian packaging scripts.
2017-09-13 22:21:28 +02:00
Matthias Koefferlein
bf03857dd1
RPM build file: symlink to source.
2017-09-12 23:14:12 +02:00
Matthias Koefferlein
67547a26d0
Don't provide a build root for spec file - we do it from the outside
2017-09-12 23:02:20 +02:00
Matthias Koefferlein
f4a4746861
Update RPM spec file to have a unique output folder.
2017-09-11 22:13:02 +02:00
Matthias Koefferlein
1a87dcb807
Fixed RPM spec file and build script.
2017-09-10 21:08:56 +00:00
Matthias Koefferlein
3f417f76bb
Started to add conditional require statements for the various RH-based distributions.
2017-09-10 20:15:13 +00:00
Matthias Koefferlein
8f93be10ba
Updated RPM spec file.
2017-09-10 18:35:23 +00:00
Matthias
618c16f431
Updated CONTRIB file, preparations for RPM building.
2017-09-10 17:42:38 +00:00
Matthias Koefferlein
668959c943
Added first version of RPM spec file.
2017-09-10 17:05:27 +02:00
Matthias Koefferlein
7d9eeb91e7
Added package creation scripts for Debian
2017-09-10 15:57:21 +02:00
Matthias Koefferlein
b980dd4ba4
Fixed description text of ruby_paths.txt
2017-08-28 22:27:30 +02:00
Matthias Koefferlein
6d823c46f3
Generating proper version for Windows installer.
2017-08-27 21:49:49 +02:00
Matthias Koefferlein
33e9873d71
Updated windows deployment script.
2017-08-27 18:24:14 +02:00
Matthias Koefferlein
992797bbc8
Include buddies in WIN installation.
2017-08-21 09:41:25 +02:00
Matthias Koefferlein
09033d834e
Refactoring and enhancements of the cmd system
...
* Includes version and license info now
* New "bd" library for common features of the
buddies scripts.
2017-08-16 23:48:59 +02:00
Matthias Koefferlein
f95bbef44c
Fixed build script for Windows (version was missing).
2017-08-10 23:45:54 +02:00
Matthias Koefferlein
6e32dbccfb
Fixed build script for Windows.
2017-08-10 23:34:14 +02:00
Matthias Koefferlein
807b044731
Updated build scripts, fixed JUnit format emulation.
2017-08-10 23:31:32 +02:00
Matthias Koefferlein
7c59235889
Fixed a potential issue when using the db::Shape edge iterator on a non-existing hull in SimplePolygon.
2017-08-10 01:53:35 +02:00
Matthias Koefferlein
46fc42b65c
Fixed windows deployment script (2).
2017-08-10 01:04:32 +02:00
Matthias Koefferlein
a07037bf39
Fixed windows deployment script.
2017-08-10 00:22:24 +02:00