mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
97 lines
2.6 KiB
C++
97 lines
2.6 KiB
C++
#include "lc_global.h"
|
|
#include "lc_qutils.h"
|
|
#include "lc_application.h"
|
|
#include "lc_library.h"
|
|
#include "pieceinf.h"
|
|
|
|
QString lcFormatValue(float Value)
|
|
{
|
|
QString String = QString::number(Value, 'f', 6);
|
|
int Dot = String.indexOf('.');
|
|
|
|
if (Dot != -1)
|
|
{
|
|
while (String.endsWith('0'))
|
|
String.chop(1);
|
|
|
|
if (String.endsWith('.'))
|
|
String.chop(1);
|
|
}
|
|
|
|
return String;
|
|
}
|
|
|
|
QString lcFormatValueLocalized(float Value)
|
|
{
|
|
QLocale Locale = QLocale::system();
|
|
Locale.setNumberOptions(QLocale::OmitGroupSeparator);
|
|
QChar DecimalPoint = Locale.decimalPoint();
|
|
QString String = Locale.toString(Value, 'f', 6);
|
|
|
|
if (String.indexOf(DecimalPoint) != -1)
|
|
{
|
|
while (String.endsWith('0'))
|
|
String.chop(1);
|
|
|
|
if (String.endsWith(DecimalPoint))
|
|
String.chop(1);
|
|
}
|
|
|
|
return String;
|
|
}
|
|
|
|
float lcParseValueLocalized(const QString& Value)
|
|
{
|
|
return QLocale::system().toFloat(Value);
|
|
}
|
|
|
|
// Resize all columns to content except for one stretching column. (taken from QT creator)
|
|
lcQTreeWidgetColumnStretcher::lcQTreeWidgetColumnStretcher(QTreeWidget *treeWidget, int columnToStretch)
|
|
: QObject(treeWidget->header()), m_columnToStretch(columnToStretch)
|
|
{
|
|
parent()->installEventFilter(this);
|
|
QHideEvent fake;
|
|
lcQTreeWidgetColumnStretcher::eventFilter(parent(), &fake);
|
|
}
|
|
|
|
bool lcQTreeWidgetColumnStretcher::eventFilter(QObject *obj, QEvent *ev)
|
|
{
|
|
if (obj == parent())
|
|
{
|
|
if (ev->type() == QEvent::Show)
|
|
{
|
|
QHeaderView *hv = qobject_cast<QHeaderView*>(obj);
|
|
for (int i = 0; i < hv->count(); ++i)
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
|
|
hv->setSectionResizeMode(i, QHeaderView::Interactive);
|
|
#else
|
|
hv->setResizeMode(i, QHeaderView::Interactive);
|
|
#endif
|
|
}
|
|
else if (ev->type() == QEvent::Hide)
|
|
{
|
|
QHeaderView *hv = qobject_cast<QHeaderView*>(obj);
|
|
for (int i = 0; i < hv->count(); ++i)
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
|
|
hv->setSectionResizeMode(i, i == m_columnToStretch ? QHeaderView::Stretch : QHeaderView::ResizeToContents);
|
|
#else
|
|
hv->setResizeMode(i, i == m_columnToStretch ? QHeaderView::Stretch : QHeaderView::ResizeToContents);
|
|
#endif
|
|
}
|
|
else if (ev->type() == QEvent::Resize)
|
|
{
|
|
QHeaderView *hv = qobject_cast<QHeaderView*>(obj);
|
|
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
|
|
if (hv->sectionResizeMode(m_columnToStretch) == QHeaderView::Interactive)
|
|
#else
|
|
if (hv->resizeMode(m_columnToStretch) == QHeaderView::Interactive)
|
|
#endif
|
|
{
|
|
QResizeEvent *re = static_cast<QResizeEvent*>(ev);
|
|
int diff = re->size().width() - re->oldSize().width() ;
|
|
hv->resizeSection(m_columnToStretch, qMax(32, hv->sectionSize(1) + diff));
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|