42 lines
1.1 KiB
C++
42 lines
1.1 KiB
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <QWidget>
|
||
|
|
#include <vector>
|
||
|
|
#include <QHBoxLayout>
|
||
|
|
#include <QVBoxLayout>
|
||
|
|
|
||
|
|
#include "../TargetPackageWidget.hpp"
|
||
|
|
#include "PinWidget.hpp"
|
||
|
|
#include "BodyWidget.hpp"
|
||
|
|
#include "src/Targets/TargetVariant.hpp"
|
||
|
|
|
||
|
|
namespace Bloom::InsightTargetWidgets::Qfp
|
||
|
|
{
|
||
|
|
using Targets::TargetVariant;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* QuadFlatPackageWidget implements a custom Qt widget for Quad-flat package variants.
|
||
|
|
*/
|
||
|
|
class QuadFlatPackageWidget: public TargetPackageWidget
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
private:
|
||
|
|
QVBoxLayout* layout = nullptr;
|
||
|
|
QHBoxLayout* horizontalLayout = nullptr;
|
||
|
|
QHBoxLayout* topPinLayout = nullptr;
|
||
|
|
QVBoxLayout* rightPinLayout = nullptr;
|
||
|
|
QHBoxLayout* bottomPinLayout = nullptr;
|
||
|
|
QVBoxLayout* leftPinLayout = nullptr;
|
||
|
|
BodyWidget* bodyWidget = nullptr;
|
||
|
|
|
||
|
|
protected:
|
||
|
|
void paintEvent(QPaintEvent* event);
|
||
|
|
void drawWidget(QPainter& painter);
|
||
|
|
|
||
|
|
public:
|
||
|
|
static const int PIN_WIDGET_LAYOUT_PADDING = 46;
|
||
|
|
static const int PIN_WIDGET_SPACING = 8;
|
||
|
|
QuadFlatPackageWidget(const TargetVariant& targetVariant, QObject* insightWindowObj, QWidget* parent);
|
||
|
|
};
|
||
|
|
}
|