in the Component Properties dialog. Previous usage of the Description
did not work with translations and anyway the Description is not a
unique identifier.
The properties visibility on the schematic can be changed globally by
double clicking on the corresponding header; previously the
visibility checkbox status was not updated to reflect the new
visibility status.
Pressing Enter in the Edit Component Properties dialog accepts the
current value and advances to the next line when the value is entered
using a LineEdit but did nothing when the value was entered thru a
ComboBox. Now the behaviour is the same for both cases.
When using Enter to accept a new equation definition in the Edit
Component Properties dialog the Property name was incorrectly
taken from its Value field.
When editing the properties of a component, Qucs crashed after pressing
enter at the last field (if was a lineedit)
Corrected check when there is no property selected (for components with
no editable properties)
Changed property selection
Fix for #319:
1. Implemented second column replacement in ComponentDialog::slotButtUp()
and ComponentDialog::slotButtDown() in componentdialog.cpp
Fix for #320:
1. Added schematic frame printing in ImageWriter. Adapted bouning box
calculation for schematics with frames.
2. Refactored getSchWidthAndHeightMethod() --- moved to ImageWriter
When resizing the dialog the different parts now behave in a more
coherent way.
Added possibility to toggle the visibiity for all properties by double
clicking on the 'display' header in the properties table.
Properties table appearance aligned with existing dialogs.
In the component dialog the location of the currently used file will
be used as starting directory when browsing for a new file. If the file
is local to the project the relative path will be used.
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.
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.