152 Commits

Author SHA1 Message Date
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
189802ab0d Fix more warnings in components 2022-02-24 00:13:12 +01:00
Vadim Kuznetsov
69c7eb4973 Add qucs namespace and fix Arc name conflict 2022-02-20 15:43:44 +01:00
Vadim Kuznetzov
5e9ceffa49 Fixed after merge of release-0.0.19 2016-11-05 17:54:15 +03:00
Vadim Kuznetzov
6884e6cd78 Able to print diagram independently from markers
Diagram::paint() was splitted into two methods: Diagram::painDiagram()
and Diagram::paintMarkers(). It allow to print diagram without markers
and supress marker lines when only diagram is selcted and markers are
outside diagram.
2016-06-20 14:23:14 +03:00
Vadim Kuznetzov
a6a7aa7c79 Added 4th simulator in DiagramDialog simulator list 2015-11-11 11:36:42 +03:00
Vadim Kuznetzov
4902270f2c Fixed crash on complex X-axis 2015-11-11 11:35:57 +03:00
Vadim Kuznetzov
6b059ec3ca Implemented PlotVs() emulation for real variable. Crash on complex X-variable 2015-11-11 11:35:56 +03:00
Vadim Kuznetzov
2b787cb50a New datased naming system to avoid name conflicts 2015-11-11 11:34:18 +03:00
Felix Salfelder
47de688273 use Qt painter, do not precompute dashed lines
previously, the screen points array was interleaved with strokeEnd
tokens. this is no longer necessary.
2015-07-04 13:06:00 +02:00
Felix Salfelder
37f8a7c250 removing assertion on nonnegative y screen coordinates
these occur in a cartesian diagram. but it does not seem to be a bug.
2015-07-03 17:56:49 +02:00
Felix Salfelder
0662df5bff sanitize ScrPt memory layout, make code a bit more readable.
one screen point (two coordinates) now occupies exactly one object.
this is slighly less efficient, as control tokens double in size.
however, control tokens will be removed later on.
2015-07-02 17:13:58 +02:00
Felix Salfelder
f7c582f5bb upgrade Graph::ScrPoints type
- turn into class, make internals private
- implement some member functions
- corresponding code adaptions
2015-07-02 17:12:59 +02:00
Felix Salfelder
5942b9392f register parent diagram in graph, not in marker. turn into const*
the marker is attached to the graph, the graph knows the diagram. so the
extra pointer is redundant/confusing.
2015-06-29 23:03:01 +02:00
Felix Salfelder
a3046c1d81 annotate marker and related code, starting to sort out data flow
also, do some code move and cleanup to increase readability
2015-06-29 22:39:14 +02:00
Felix Salfelder
e38071b13f switch Q3PtrList to QVector in Graph::cPointsX, fix constness in a few places
Q3PtrList is deprecated, also does not provide random access on
immutable instances, which is required for Graph::axis(uint) const.

(should probably store DataX instead of DataX*. leave it like that for
now.)
2015-06-29 11:04:34 +02:00
Guilherme Brondani Torri
695e635597 Merge pull request #280 from felix-salfelder/scrPt
hide ScrPoints implementation details
2015-06-23 21:42:43 +02:00
Felix Salfelder
5dc8851ac7 hide ScrPoints implementation details 2015-06-23 15:34:57 +02:00
Felix Salfelder
1dbd9f4132 const (args) for calcCoordinate. dissect implicit iterator magic. 2015-06-23 10:59:47 +02:00
Guilherme Brondani Torri
58490a2b25 Silence unused variables. 2015-06-22 20:45:10 +02:00
Felix Salfelder
aed2acc738 clarify the roles of Draph, Diagram, and Axis.
untangle spaghetti code, potentially removing stray features
2015-06-22 20:37:36 +02:00
Felix Salfelder
b80bd9c594 make Graph::cPointsX private increasing readability
apparently, cPointsX holds a list of data on axes.

access through Graph using Graph members, such as
cPointsX.isEmpty() -> isEmpty()
cPointsX.First()   -> axis(0)
cPointsX.count()   -> numAxes()
2015-06-22 20:36:58 +02:00
Felix Salfelder
27064475cc ScrPoints
- a typed Graph point container
- make Graph iterable
- (partly) translate to C++
- move graph functions to Graph
2015-06-16 11:43:27 +02:00
Felix Salfelder
2a424ba4e6 put finishMarkerCoordinates code into place. dont rely on names
requires "const" for 2 involved Diagram functions
2015-06-14 17:23:22 +02:00
Felix Salfelder
6f9867972f move setMarker for diagrams to diagrams implementation
(does not change anything)
2015-06-14 14:57:31 +02:00
Guilherme Brondani Torri
9d855cb4a1 qucs: s/M_PI/pi 2015-01-20 16:34:25 +01:00
yodalee
e3c307373d add namespace misc to misc.h 2015-01-18 19:22:12 +08:00
Guilherme Brondani Torri
1ed39d5387 osx: fix c++11 build failure
* move from 'math.h' to 'cmath' header

Error:
smithdiagram.cpp:64:11: error: expected unqualified-id
  if(std::isfinite(*px))
2015-01-09 13:33:41 +01:00
Vadim Kuznetzov
5417da06a3 Qucs GUI moved to C++11 2015-01-08 18:54:39 +03:00
in3otd
fab6e62980 Updated the deprecated Qt3 support parts.
Changed the deprecated Qt3 support functions with the equivalent Qt4 code.
2014-12-14 22:54:19 +01:00
in3otd
4663f99e3d Corrected font metrics computation.
In Qt4 the actual font size depends on the device that will actually
paint the font. To avoid to explicitly ask the painter to compute
the font size we can use QFontMetrics::QFontMetrics(font, 0) to
always obtain the correct screen metric (behavior similar to the Qt3
default). All istances of QFontMetrics have now been so modified.
2014-12-02 23:43:16 +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
4051a2ec0b remove qtgui in diagrams/cppfile 2014-11-04 12:59:41 +08:00
yodalee
bd8931397d remove unused object pointer
replace by foreach
2014-10-28 15:02:56 +08:00
yodalee
3b03ed406a allow diagram load without gui
In gui mode, diagram will use font setting in gui main
In non-gui mode, it use default font QFont("Helvetica", 12)
2014-10-03 16:50:23 +02:00
Guilherme Brondani Torri
97adfdfa5d doc: diagram class
* turn existing comments into Doxygen docstring
* keep header clean, add docs to .cpp
2014-09-03 12:19:23 +02:00
Guilherme Brondani Torri
722325ebde port Diagrams, from Qt3PtrList to QList
* port the Diagram Class and the derived diagrams
2014-09-03 11:18:36 +02:00
Guilherme Brondani Torri
3d90d2aa76 fix issue #17
* see issue https://github.com/Qucs/qucs/issues/17
2014-08-06 21:12:05 +02:00
Guilherme Brondani Torri
f06bb6d860 qucs: move from Q3TextStream to QTextStream 2014-06-06 22:06:38 +02:00
Guilherme Brondani Torri
45446a8725 fix deprecated warning mingw 4.8.2
* warning: "isfinite" redefined [enabled by default]
* finite is deprecated since c99, use isfinite by default
2014-05-28 18:59:16 +02:00
Guilherme Brondani Torri
d70d58251e use isfinite (C99) instead of finite
* Fix the following warning
  ~git/qucs/qucs/diagrams/curvediagram.cpp:69: warning: 'finite' is deprecated: first deprecated in OS X 10.9 [-Wdeprecated-declarations]
    if(finite(*px))

* see also:
  http://erlang.org/pipermail/erlang-patches/2013-November/004406.html
2014-05-15 00:06:17 +02:00
Guilherme Brondani Torri
66ac794483 Switch back to use strtod on Windows.
The current redefinition of strtod (strtod_faster) is slower.
This redefinition dates back to 2006. It seems that strtod improved
since them.
Loading a 4MB dataset was taking 6s, hanging the application.
With this change it loads in less than 1s.

Removed unused header.
2013-12-01 18:44:10 +01:00
Guilherme Brondani Torri
b0d7cce0b7 Fix several Qt3 deprecated header inclusion 2013-12-01 18:35:44 +01:00
Guilherme Brondani Torri
edde902512 Fix depreprecated header include
Silence the anoying warning:
c:/Qt/4.8.5/include/Qt/qbrush.h:3:10: warning: #warning "Inclusion of header fil
es from include/Qt is deprecated."
2013-12-01 18:35:44 +01:00
Vadim Kusnetzov
70904d0ecc Basic functions works for export diagram to png graphics 2013-11-15 10:32:08 +04:00
Vadim Kuznetzov
71189cca4a Export to Graphics File Item is added to diagram context menu. Slot was realised for this menu. 2013-11-12 20:25:06 +04:00
Guilherme Brondani Torri
d2773e80f3 removed some qDegub messages 2013-06-16 15:00:47 +02:00
Frans Schreuder
7e88bd8572 Fixed fontmetrics, throughout qucs it was taken from QucsSettings.font. that way the scale was ignored. 2013-06-15 00:29:58 +02:00
Frans Schreuder
35600b50a5 Fixed the QPainter problem, All paint actions are now moved from mouseactions to schematic (to the paint event) 2012-12-05 10:12:11 +01:00