git-svn-id: svn://db.shs.com.ru/libs@467 a8b55f48-bf90-11e4-a774-851b48703e85
This commit is contained in:
@@ -166,7 +166,7 @@ void Ribbon::init() {
|
|||||||
//b->setIconSize(QSize(16, 16));
|
//b->setIconSize(QSize(16, 16));
|
||||||
b->setIcon(j->icon());
|
b->setIcon(j->icon());
|
||||||
b->setText(j->text());
|
b->setText(j->text());
|
||||||
//b->setToolTip(j->toolTip());
|
b->setToolTip(j->text());
|
||||||
//b->addAction(j);
|
//b->addAction(j);
|
||||||
//b->setShortcut(j->shortcut());
|
//b->setShortcut(j->shortcut());
|
||||||
b->setAutoRaise(true);
|
b->setAutoRaise(true);
|
||||||
|
|||||||
@@ -314,7 +314,14 @@
|
|||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="BlockView" name="blockView"/>
|
<widget class="BlockView" name="blockView">
|
||||||
|
<property name="miniMap" stdset="0">
|
||||||
|
<bool>false</bool>
|
||||||
|
</property>
|
||||||
|
<property name="zoomWheelOnly">
|
||||||
|
<bool>true</bool>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
@@ -390,7 +397,7 @@
|
|||||||
<string>Load ...</string>
|
<string>Load ...</string>
|
||||||
</property>
|
</property>
|
||||||
<property name="icon">
|
<property name="icon">
|
||||||
<iconset resource="qad_blockview.qrc">
|
<iconset resource="../application/qad_application.qrc">
|
||||||
<normaloff>:/icons/document-open.png</normaloff>:/icons/document-open.png</iconset>
|
<normaloff>:/icons/document-open.png</normaloff>:/icons/document-open.png</iconset>
|
||||||
</property>
|
</property>
|
||||||
<property name="shortcut">
|
<property name="shortcut">
|
||||||
@@ -452,6 +459,7 @@
|
|||||||
</customwidgets>
|
</customwidgets>
|
||||||
<resources>
|
<resources>
|
||||||
<include location="../utils/qad_utils.qrc"/>
|
<include location="../utils/qad_utils.qrc"/>
|
||||||
|
<include location="../application/qad_application.qrc"/>
|
||||||
<include location="qad_blockview.qrc"/>
|
<include location="qad_blockview.qrc"/>
|
||||||
</resources>
|
</resources>
|
||||||
<connections>
|
<connections>
|
||||||
|
|||||||
@@ -40,7 +40,7 @@ void BlockView::_init() {
|
|||||||
thumb_hide_delay = 500;
|
thumb_hide_delay = 500;
|
||||||
timer_thumb = 0;
|
timer_thumb = 0;
|
||||||
smode = BlockView::MultiSelection;
|
smode = BlockView::MultiSelection;
|
||||||
cur_scl = thumb_scl = 1.;
|
cur_scl = thumb_scl = prev_app_scale = 1.;
|
||||||
_talpha = 0.;
|
_talpha = 0.;
|
||||||
ae_enabled = is_nav_anim = is_block_anim = true;
|
ae_enabled = is_nav_anim = is_block_anim = true;
|
||||||
nav_prev_aa = nav_prev_imaa = nav_prev_grid = true;
|
nav_prev_aa = nav_prev_imaa = nav_prev_grid = true;
|
||||||
@@ -139,6 +139,16 @@ void BlockView::_updateBack() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
bool BlockView::event(QEvent * e) {
|
||||||
|
if (e->type() == QEvent::FontChange || e->type() == QEvent::Polish) {
|
||||||
|
double cscl = appScale(this);
|
||||||
|
QGraphicsView::scale(cscl / prev_app_scale, cscl / prev_app_scale);
|
||||||
|
prev_app_scale = cscl;
|
||||||
|
}
|
||||||
|
return QGraphicsView::event(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
bool BlockView::eventFilter(QObject * o, QEvent * e) {
|
bool BlockView::eventFilter(QObject * o, QEvent * e) {
|
||||||
if (o == &widget_thumb) {
|
if (o == &widget_thumb) {
|
||||||
QMouseEvent * me = (QMouseEvent*)e;
|
QMouseEvent * me = (QMouseEvent*)e;
|
||||||
@@ -1873,7 +1883,7 @@ void BlockView::zoom(double factor) {
|
|||||||
|
|
||||||
void BlockView::zoomReset() {
|
void BlockView::zoomReset() {
|
||||||
cur_scl = qSqrt(transform().determinant());
|
cur_scl = qSqrt(transform().determinant());
|
||||||
zoom(1. / cur_scl);
|
zoom(prev_app_scale / cur_scl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -108,6 +108,7 @@ public:
|
|||||||
protected:
|
protected:
|
||||||
void _init();
|
void _init();
|
||||||
void _updateBack();
|
void _updateBack();
|
||||||
|
bool event(QEvent * e);
|
||||||
bool eventFilter(QObject * o, QEvent * e);
|
bool eventFilter(QObject * o, QEvent * e);
|
||||||
void stopTimer(int & tid);
|
void stopTimer(int & tid);
|
||||||
void restartTimer(int & tid, int msecs);
|
void restartTimer(int & tid, int msecs);
|
||||||
@@ -188,6 +189,7 @@ protected:
|
|||||||
bool grid_visible, grid_snap, pm_connect, navigation, m_connect, m_trace_with_buses, m_pin_mc, minimap, prev_tcb, wheel_zoom;
|
bool grid_visible, grid_snap, pm_connect, navigation, m_connect, m_trace_with_buses, m_pin_mc, minimap, prev_tcb, wheel_zoom;
|
||||||
bool nav_prev_aa, nav_prev_imaa, nav_prev_grid;
|
bool nav_prev_aa, nav_prev_imaa, nav_prev_grid;
|
||||||
double grid_step, grid_points, cur_scl, _talpha, thumb_scl;
|
double grid_step, grid_points, cur_scl, _talpha, thumb_scl;
|
||||||
|
double prev_app_scale;
|
||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
void getPinMC(bool * v) {if (v) *v = m_pin_mc;}
|
void getPinMC(bool * v) {if (v) *v = m_pin_mc;}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
__QADTypesRegistrator__ __registrator__;
|
bool __QADTypesRegistrator__::_inited = false;
|
||||||
|
|
||||||
|
|
||||||
int QAD::Enum::selectedValue() const {
|
int QAD::Enum::selectedValue() const {
|
||||||
|
|||||||
@@ -78,6 +78,8 @@ inline QDebug operator <<(QDebug s, const QAD::Dir & v) {s.nospace() << v.dir; r
|
|||||||
class __QADTypesRegistrator__ {
|
class __QADTypesRegistrator__ {
|
||||||
public:
|
public:
|
||||||
__QADTypesRegistrator__() {
|
__QADTypesRegistrator__() {
|
||||||
|
if (_inited) return;
|
||||||
|
_inited = true;
|
||||||
qRegisterMetaType<QAD::Enumerator>("QAD::Enumerator");
|
qRegisterMetaType<QAD::Enumerator>("QAD::Enumerator");
|
||||||
qRegisterMetaTypeStreamOperators<QAD::Enumerator>("QAD::Enumerator");
|
qRegisterMetaTypeStreamOperators<QAD::Enumerator>("QAD::Enumerator");
|
||||||
qRegisterMetaType<QAD::Enum>("QAD::Enum");
|
qRegisterMetaType<QAD::Enum>("QAD::Enum");
|
||||||
@@ -96,8 +98,11 @@ public:
|
|||||||
QMetaType::registerConverter<QAD::Dir, QString>(&QAD::Dir::toString);
|
QMetaType::registerConverter<QAD::Dir, QString>(&QAD::Dir::toString);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
static bool _inited;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static __QADTypesRegistrator__ __registrator__;
|
||||||
|
|
||||||
|
|
||||||
inline qreal quantize(qreal x, qreal q = 10.f) {return qRound(x / q) * q;}
|
inline qreal quantize(qreal x, qreal q = 10.f) {return qRound(x / q) * q;}
|
||||||
inline QPointF quantize(QPointF x, qreal q = 10.f) {return QPointF(quantize(x.x(), q), quantize(x.y(), q));}
|
inline QPointF quantize(QPointF x, qreal q = 10.f) {return QPointF(quantize(x.x(), q), quantize(x.y(), q));}
|
||||||
|
|||||||
Reference in New Issue
Block a user