Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rearrange library symbols (WIP) #592

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5c4b6dc
Fix for issues #550 and #553
Aug 15, 2016
d0d631d
Load the default symbol only when required...
Aug 16, 2016
1a50d2f
Replaced LoadDefaultSymbol() code
Aug 17, 2016
79a082d
Relocated the code for loading the default symbol
Aug 17, 2016
ddf650c
introduce symbol class. (start to) use it in qucslib
felix-salfelder Aug 18, 2016
c5b5921
Trying to compile QucsLib with Symbol class. Step 1
Aug 19, 2016
8c9bc68
move settings to settings header.
felix-salfelder Aug 19, 2016
233c235
trying to de-convolute symbol-widget and drawing.
felix-salfelder Aug 19, 2016
3d74322
fix symbol.h caption
felix-salfelder Aug 19, 2016
5c08f35
stash
felix-salfelder Aug 19, 2016
7abca6c
Moved back and forth includes
Aug 19, 2016
748f0ef
this now compiles and links. needs more cleanup.
felix-salfelder Aug 19, 2016
6533b23
more cleanup
felix-salfelder Aug 19, 2016
08fdc24
move more parse code to libcomp
felix-salfelder Aug 19, 2016
89ea3c8
allow to override wrong path to .lib files
felix-salfelder Aug 19, 2016
66466eb
much better, some symbols dimensions seem to be wrong.
felix-salfelder Aug 19, 2016
f4e122d
qucscomp: changes from pastebin
Aug 20, 2016
903407d
cleanup. trying to debug width and height.
felix-salfelder Aug 20, 2016
4b19bfb
more cleanup. something is wrong with symbol dimensions.
felix-salfelder Aug 20, 2016
4347c3d
unbreak some symbols (missing parens in constructor).
felix-salfelder Aug 20, 2016
86f6a9b
use painter for drawing symbols. also draw some text (WIP)
felix-salfelder Aug 21, 2016
517cce7
don't include cstddef, as it confuses "abs" on some platforms
felix-salfelder Aug 22, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qucs-core/src/logging.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# include <config.h>
#endif

#include <stdio.h>

#include <stdlib.h>
#include <stdarg.h>

Expand Down
2 changes: 1 addition & 1 deletion qucs-core/src/logging.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#define LOG_ERROR 0
#define LOG_STATUS 1

#include <stdio.h>
__BEGIN_DECLS

void logprint (int, const char *, ...);
Expand Down
6 changes: 4 additions & 2 deletions qucs/qucs-lib/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ MOCHEADERS = qucslib.h displaydialog.h symbolwidget.h librarydialog.h \

MOCFILES = $(MOCHEADERS:.h=.moc.cpp)

qucslib_SOURCES = main.cpp qucslib.cpp displaydialog.cpp symbolwidget.cpp \
librarydialog.cpp qrc_qucslib.cpp
qucslib_SOURCES = \
main.cpp qucslib.cpp displaydialog.cpp symbolwidget.cpp \
libcomp.cpp \
librarydialog.cpp qrc_qucslib.cpp

EXTRA_DIST = qucslib.qrc

Expand Down
Loading