186 Commits

Author SHA1 Message Date
dsm
af687e2ba7 windows specific macros generelized. 2024-07-04 10:42:54 +03:00
Andrey Kalmykov
920d70cd15 Fix Windows build by replacing absent "QucsHomeDir" settings member
In 72f9e461 all temporary files were moved to a dedicated temp files
dir. To store the name of this dir, a new property named "tempFilesDir"
was introduced and all occurences of "QucsHomeDir" in "temporary file"
contexts were replaced by new property. But in one branch of "ifdef"
preprocessor condition the replacement somehow failed, leaving the
old property name. This commit replaces it with correct one.

Fixes ra3xdh#686
2024-04-12 21:23:19 +03:00
Andrey Kalmykov
72f9e46101 Move temporary files to StandardPaths::CacheLocation
With this commit the root path for temporary files produced
by Qucs-S is set to StandardPaths::CacheLocation which is
~/.cache/qucs-s on Linux.

This path is set automatically and can't be changed.
2024-04-07 20:40:31 +03:00
Iwbnwif Yiw
faaaff032a Use GHDL instead of FreeHDL for digital simulation
The approach taken follows the advice given at
Qucs/qucs#830. Includes syntax fixes to accomodate the slight
differences between GHDL and FreeHDL.
2024-01-26 22:10:16 +00:00
Vadim Kuznetsov
9f23c12f65 Imported tuner implementation from Kevin @tipofthesowrd 2023-09-19 17:09:05 +03:00
Radvall
eba515f58f remane script calls 2023-05-22 13:01:31 +03:00
Muhammet Şükrü Demir
5b2dd7fb50 fixed conflict windows.h byte 2023-02-13 10:12:15 +03:00
Adam Strzelecki
3de324644d If qucsator or ngspice path is relative, make it relative to BinDir 2023-02-12 22:44:48 +01:00
Krasilnikov Sergei
05177da97b working with qt6 2023-01-17 13:27:12 +03:00
luz paz
10c1ee639c Fix various typos (including documenation)
Found via `codespell -q 3 -S *.ts,./qucs/ChangeLog -L ba,coul,inout,leaded,nd,numer,ro`
2022-07-05 07:08:28 -04:00
Vadim Kuznetsov
b697cc068b Fix more naming conflicts 2022-02-20 16:25:39 +01:00
Vadim Kuznetsov
53059f4fed Compiles everything in dialogs, paintings, and extsimkernels 2022-02-14 00:04:11 +01:00
Vadim Kuznetzov
f976e35d2a Downgrade Qucsator to ordinary external simulator and allow user to select its location 2016-07-22 14:50:28 +03:00
in3otd
ef1dbc3e2d Use a common function to determine the Document type 2016-02-08 20:05:58 +01:00
Guilherme Brondani Torri
0cb7ec1588 Enable to set qucsconv via environment variable.
Qucsconv is called when a Spicefile component needs to be netlisted.
The Spice code is converted to the Qucsator format and inserted into the
netlist.

The issue is that path to Qucsconv is by default expected to be in the
same prefix as Qucs.

For testing the schematic->netlist from the command line it is
convenient to tell explicitly where Qucsconv is located.

This patch does a few things:

* Introduce the QUCSCONV environment variable to override the default
  path, assume to be the same prefix as Qucs.
  Setting QUCSDIR would work just fine, but require a make install first.
  TODO update documentation along with issue #240

* Moved the QUCSCONV to main.cpp, where it is set only once with
  a newly introduced QucsSettings.Qucsconv variable.

* Replace dialog pop-up on spicefile.cpp by a statusBar message.

Remaining issue: library components also depend on the assumption that
everything is located on the same Qucs prefix. Hence QUCSDIR migh still
be necessary in some cases, as when using command line on in-three Qucs
binary for testing purporses.
2015-09-13 19:00:16 +02:00
in3otd
a1f7c1cab2 Correct section header in simulation output log
In the log.txt file, the simulation output coming from the standard
error stream was prefixed with the "Errors:" header. This has been
corrected to "Errors and Warnings:" since also warnings are sent to
standard error (by qucsator). This is also aligned with the headers
used in the Simulation Messages dialog.
2015-08-01 14:25:07 +02:00
in3otd
afa331edd2 Remove spurious newlines in simulation output text
Progress bar changes in qucsator output caused newlines to be printed
in the simulation message output window due to improper usage of
appendPlainText(), which adds newlines also with empty text.
2015-08-01 14:06:06 +02:00
in3otd
c0d1d2917f Fix handling of negative exit codes on Windows
When checking the exitStatus of a QProcess, negative exit codes are
erroneously interpreted as "program crashed" on Windows, see
https://bugreports.qt.io/browse/QTBUG-28735 .
This has been fixed only in Qt5.1, so we need to apply a workaround
for Qt4 to correctly handle this case.
2015-08-01 14:06:06 +02:00
Felix Salfelder
e8dbbe4331 (partially) redo b3a0b035 and d5f86539c
this has undergone in merge 3ba25bfc570613
2015-05-06 21:26:42 +02:00
Guilherme Brondani Torri
a1022f6a0e Merge branch 'usability_stuff' of https://github.com/in3otd/qucs into in3otd-usability_stuff
Conflicts:
	qucs/qucs/dialogs/simmessage.cpp
	qucs/qucs/dialogs/simmessage.h
2015-04-23 22:43:40 +02:00
Guilherme Brondani Torri
95dcb019de Merge pull request #209 from felix-salfelder/qucsator_env
QUCSATOR override
2015-04-23 22:21:59 +02:00
in3otd
b9689c231e Do not show an error message when simulator is killed by the user.
The message "ERROR: Simulator crashed!" is now not shown if the crash
is due to the user pressing the 'Abort Simulation' button.
2015-04-19 18:50:42 +02:00
in3otd
3b5ccea310 Changed QTextEdit with QPlainTextEdit and adapted code accordingly.
QPlainTextEdit is better suited to handle large log files, as can result
from large simulations, when debug is enabled, when using the optimizer,
etc. It has also the advantage to automatically show the last messages
and to handle user scrolling of text nicely.
2015-04-19 18:50:42 +02:00
Vadim Kuznetzov
6dc6269d3e Added SimProcess.kill() when SimMessage dialog is closed by close button 2015-04-18 20:39:11 +08:00
Felix Salfelder
b5a8b068cd cleanup stray paren 2015-04-01 23:26:14 +02:00
Felix Salfelder
d4ec59c664 remove wait hack in favor of proper callback
- implement slotStateChanged
- move QString SimMessage::Program to member variable
- QProcess::FailedToStart does not work. use own state to check
2015-03-31 23:36:31 +02:00
Felix Salfelder
f16633bab9 move QUCSATOR lookup to main.cpp, use QucsSettings 2015-03-29 10:24:34 +02:00
Felix Salfelder
6ff21638f8 remove QFile(Program) hack. check process .state after .start
- Program does not neccesary point to a file
- .state is unavailable before WaitForStarted
  (don't know how to do asynchronously, add callback?)
- more expressive error message
2015-03-28 12:26:41 +01:00
Felix Salfelder
d6f141f482 fetch QUCSATOR from environment if set
maybe, QucsSettings should have a slot "Qucsator" that defaults
to "qucsator" unless env("QUCSATOR").
2015-03-28 10:52:45 +01:00
Guilherme Brondani Torri
9246b219c9 fix various warnings of unused variable, arguments... 2015-01-20 16:32:12 +01:00
yodalee
e3c307373d add namespace misc to misc.h 2015-01-18 19:22:12 +08:00
in3otd
2ed5d2bb45 Corrected simulator process exit status check
Changed slotSimEnded() to check the exit status of the simulator
process, so that the user is informed thru the simulation dialog
when the simulator has crashed.

Replaced some Qt3 compatibility functions with the proper Qt4 ones.
Added newlines at the end of the error messages.
Added some Doxygen style comments.
2014-11-28 16:34:38 +01:00
global667
77df7c5bdd Formattings and comment deletion
Some comments was delete. No code changes!
2014-11-27 20:16:14 +01:00
global667
e33a3ae388 Delete QT3_US_SUPPORT from all CMakesLists.txt
SET( QT_USE_QT3SUPPORT TRUE ) is delete from all CmakeLists.txt and adapting the souces, but "FIND_PACKAGE( Qt4 4.6.3 REQUIRED QtCore QtGui Qt3Support QtSvg QtXml QtScript)" in the root-CMakeLists.txt is unchanged. So Q3*-Header like Q3PtrList will not produce an error.
2014-11-27 20:16:14 +01:00
yodalee
5e46417235 make a copy of function into misc 2014-11-21 02:27:36 +08:00
yodalee
d8c9546f6e remove qtgui include in dialog/cppfile 2014-11-04 12:56:34 +08:00
yodalee
74b76f155b remove unused local variable 2014-10-28 15:03:07 +08:00
Guilherme Brondani Torri
b04aa3d042 fix qucsconv on Windows
* QProcesses not launching properly.
* executable without extension.
2014-08-31 08:55:18 +02:00
Guilherme Brondani Torri
57c4495d52 a few more toNativeSeparators 2014-06-06 23:58:24 +02:00
Guilherme Brondani Torri
6d5ccb461d \bug error: unrecognized command line option '-Wl' 2014-06-03 11:04:09 +02:00
Guilherme Brondani Torri
637325c996 use native separators to setup qucsveri 2014-06-02 23:17:55 +02:00
Guilherme Brondani Torri
ad9c7799d0 fix location of netlist.txt
* broken in several places. Default to QucsHomeDir
2014-05-28 18:59:17 +02:00
Guilherme Brondani Torri
5a35663221 add ASCO path to Qucs settings
* read environment variable ASCOBINDIR for path
* set ASCO Path via Qucs settings
2014-05-18 23:47:12 +02:00
Guilherme Brondani Torri
7a21e6bafa annotate netlist with VA modules path and names
* Enable qucator to search for module definitions on the netlist.
  Overcome issue with ASCO, which does not propagate command line arguments.
  Without that qucastor was not able to find the needed objects.
2014-05-16 16:56:26 +02:00
Guilherme Brondani Torri
4096deb528 move debug message
[ci skip]
2014-05-13 11:47:51 +02:00
Guilherme Brondani Torri
c692d10ded textdoc: update, cleanup and document
* moved from QTextEdit to QPlainTextEdit, better for plain text
* moded from  Q3Textstream to QTextStream
* added doxygen documentation
* highlight current line
2014-04-05 00:58:35 +02:00
Guilherme Brondani Torri
fbb91490ab only pass loaded modules used on the netlist
Avoid passing modules/symbols that could be loaded but not in use on the
given schematic.
2014-04-05 00:58:34 +02:00
Guilherme Brondani Torri
c2e61c9e75 add comments, todo 2014-04-05 00:58:34 +02:00
Guilherme Brondani Torri
b6fb6d3f9b integrate qucs and qucsator
* pass loaded symbols in qucsator as parameters to qucsator
  * still need to build the dynamic object
2014-04-05 00:58:32 +02:00
Guilherme Brondani Torri
041ad6f5d8 silence forgotten warnings
`s/\#warning/\/\/ FIXME #warning/g`
2014-04-05 00:58:31 +02:00