qucs_s/qucs/misc.h

124 lines
4.2 KiB
C
Raw Normal View History

2014-11-12 03:42:14 +08:00
/***************************************************************************
misc.h
--------
begin : Wed Nov 12 2004
copyright : (C) 2014 by YodaLee
email : lc85301@gmail.com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef MISC_H
#define MISC_H
2014-11-12 03:42:14 +08:00
/*!
* \file misc.h
* \Declaration of some miscellaneous function
*/
2022-02-13 19:55:25 +01:00
#include <QPushButton>
#define Q_UINT32 uint32_t
2022-02-24 23:45:28 +01:00
namespace qucs {
#if QT_VERSION >= 0x050e00
const auto SkipEmptyParts = Qt::SkipEmptyParts;
#else
const auto SkipEmptyParts = QString::SkipEmptyParts;
#endif
}
2024-03-12 21:04:10 -04:00
class Schematic;
2015-01-18 19:22:12 +08:00
namespace misc {
QString complexRect(double, double, int Precision=3);
QString complexDeg (double, double, int Precision=3);
QString complexRad (double, double, int Precision=3);
QString StringNum (double, char form='g', int Precision=3);
void str2num (const QString&, double&, QString&, double&);
QString num2str (double, int Precision = -1, QString unit="");
2023-11-27 22:59:34 +03:00
QColor ColorFromString(const QString& color);
2015-01-18 19:22:12 +08:00
QString StringNiceNum(double);
void convert2Unicode(QString&);
void convert2ASCII(QString&);
QString properName(const QString&);
2024-03-12 21:04:10 -04:00
QString properAbsFileName(const QString&, Schematic* sch = nullptr);
2015-01-18 19:22:12 +08:00
QString properFileName(const QString&);
bool VHDL_Time(QString&, const QString&);
bool VHDL_Delay(QString&, const QString&);
bool Verilog_Time(QString&, const QString&);
bool Verilog_Delay(QString&, const QString&);
QString Verilog_Param(const QString);
bool checkVersion(QString&);
2022-02-13 19:55:25 +01:00
inline const QColor getWidgetForegroundColor(const QWidget *q)
{ return q->palette().color(q->foregroundRole()); }
inline const QColor getWidgetBackgroundColor(const QWidget *q)
{ return q->palette().color(q->backgroundRole()); }
inline void setWidgetForegroundColor(QWidget *q, const QColor &c)
{ QPalette p = q->palette(); p.setColor(q->foregroundRole(), c); q->setPalette(p); }
inline void setWidgetBackgroundColor(QWidget *q, const QColor &c)
{ QPalette p = q->palette(); p.setColor(q->backgroundRole(), c); q->setPalette(p); }
inline void setPickerColor(QPushButton *p, const QColor &c)
{
// set color, to be able to get it later
setWidgetBackgroundColor(p, c);
// draw pixmap, background color is not being rendered on some platforms
QPixmap pixmap(35, 10);
pixmap.fill(c);
QIcon icon(pixmap);
p->setIcon(icon);
p->setIconSize(pixmap.rect().size());
}
QStringList parseCmdArgs(const QString &program);
2024-07-21 11:12:56 +03:00
QString getIconPath(const QString &file);
bool isDarkTheme();
2023-11-29 12:18:20 +03:00
QString getWindowTitle();
2023-01-26 16:40:28 +03:00
QString wildcardToRegularExpression(const QString &wc_str, const bool enableEscaping);
bool simulatorExists(const QString &exe_file);
QString unwrapExePath(const QString &exe_file);
void draw_richtext(QPainter* painter, int x, int y, const QString& text, QRectF* br = nullptr);
2024-05-07 19:19:10 +03:00
void draw_resize_handle(QPainter* painter, const QPointF& center);
2024-06-11 19:28:39 +03:00
void getSymbolPatternsList(QStringList &symbols);
2015-01-18 19:22:12 +08:00
}
/*! handle the application version string
*
* loosely modeled after the standard Semantic Versioning
*/
class VersionTriplet {
public:
VersionTriplet();
VersionTriplet(const QString&);
bool operator==(const VersionTriplet& v2);
bool operator>(const VersionTriplet& v2);
bool operator<(const VersionTriplet& v2);
bool operator>=(const VersionTriplet& v2);
bool operator<=(const VersionTriplet& v2);
QString toString();
private:
int major, minor, patch;
};
#endif