You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
3.3 KiB
152 lines
3.3 KiB
#include "qtsgraph.h"
|
|
|
|
void QTSGraph::Delay(int ms)
|
|
{
|
|
QTime dieTime= QTime::currentTime().addMSecs(ms);
|
|
while (QTime::currentTime() < dieTime)
|
|
QCoreApplication::processEvents(QEventLoop::AllEvents, 50);
|
|
}
|
|
|
|
QTSGraph::QTSGraph(int w, int h, int x, int y, QWidget *parent)
|
|
: QMainWindow(parent)
|
|
{
|
|
if(x < 0 || y < 0)
|
|
{
|
|
QDesktopWidget desktop;
|
|
QRect rect = desktop.availableGeometry(desktop.primaryScreen()); // прямоугольник с размерами экрана
|
|
QPoint center = rect.center(); //координаты центра экрана
|
|
x = center.x() - w / 2;
|
|
y = center.y() - h / 2;
|
|
}
|
|
this->setGeometry(x, y, w, h);
|
|
this->setWindowTitle("Рисунок");
|
|
Canvas = QPixmap(w, h);
|
|
Canvas.fill(Qt::white);
|
|
QRgb DefaultColor = 0x00000000;
|
|
Pen = QPen(QBrush(QColor(DefaultColor)), 1);
|
|
StartTimer = new QTimer();
|
|
connect(StartTimer, SIGNAL(timeout()), this, SLOT(slotStartTimer()));
|
|
StartTimer->start(500);
|
|
}
|
|
|
|
QTSGraph::~QTSGraph()
|
|
{
|
|
// Деструктор
|
|
}
|
|
|
|
void QTSGraph::Circle(int x, int y, int radius)
|
|
{
|
|
QPainter painter(&Canvas);
|
|
painter.setPen(Pen);
|
|
painter.drawEllipse(x - radius, y - radius, radius * 2, radius * 2);
|
|
update();
|
|
}
|
|
|
|
bool QTSGraph::MouseClicked()
|
|
{
|
|
bool m = EventMouseClicked;
|
|
EventMouseClicked = false;
|
|
return m;
|
|
}
|
|
|
|
void QTSGraph::OutTextXY(int x, int y, std::string caption)
|
|
{
|
|
QPainter painter(&Canvas);
|
|
painter.setPen(Pen);
|
|
painter.drawText(x, y, QString::fromStdString(caption));
|
|
update();
|
|
}
|
|
|
|
void QTSGraph::PutPixel(int x, int y, QRgb c, int PenWidth)
|
|
{
|
|
QPainter painter(&Canvas);
|
|
painter.setPen(QPen(QBrush(QColor(c)), PenWidth));
|
|
painter.drawPoint(x, y);
|
|
update();
|
|
}
|
|
|
|
int QTSGraph::ReadKey()
|
|
{
|
|
if(IDPressedKey == -1)
|
|
{
|
|
while(!KeyPressed())
|
|
Delay(100);
|
|
}
|
|
int t = IDPressedKey;
|
|
IDPressedKey = -1;
|
|
return t;
|
|
}
|
|
|
|
void QTSGraph::Rectangle(int x1, int y1, int x2, int y2)
|
|
{
|
|
QPainter painter(&Canvas);
|
|
painter.setPen(Pen);
|
|
painter.drawRect(x1, y1, x2 - x1, y2 - y1);
|
|
update();
|
|
}
|
|
|
|
void QTSGraph::SetColor(QRgb c)
|
|
{
|
|
Pen.setColor(QColor(c));
|
|
}
|
|
|
|
void QTSGraph::SetPenStyle(int PenWidth, int PenStyle)
|
|
{
|
|
Pen.setWidth(PenWidth);
|
|
Pen.setStyle(Qt::PenStyle(PenStyle));
|
|
}
|
|
|
|
void QTSGraph::SetPenWidth(int PenWidth)
|
|
{
|
|
Pen.setWidth(PenWidth);
|
|
}
|
|
|
|
void QTSGraph::Line(int x1, int y1, int x2, int y2)
|
|
{
|
|
QPainter painter(&Canvas);
|
|
painter.setPen(Pen);
|
|
painter.drawLine(x1, y1, x2, y2);
|
|
update();
|
|
}
|
|
|
|
bool QTSGraph::KeyPressed()
|
|
{
|
|
bool m = EventKeyPressed;
|
|
EventKeyPressed = false;
|
|
return m;
|
|
}
|
|
|
|
void QTSGraph::slotStartTimer()
|
|
{
|
|
StartTimer->stop();
|
|
PaintBox();
|
|
}
|
|
|
|
void QTSGraph::paintEvent(QPaintEvent *event)
|
|
{
|
|
QPainter p(this);
|
|
p.drawPixmap(0, 0, Canvas);
|
|
}
|
|
|
|
void QTSGraph::mousePressEvent(QMouseEvent *event)
|
|
{
|
|
EventMouseClicked = true;
|
|
if (event->buttons() & Qt::LeftButton)
|
|
{
|
|
// Левая кнопка
|
|
}
|
|
else if (event->buttons() & Qt::RightButton)
|
|
{
|
|
// Правая кнопка
|
|
}
|
|
}
|
|
|
|
void QTSGraph::keyPressEvent(QKeyEvent *event)
|
|
{
|
|
EventKeyPressed = true;
|
|
IDPressedKey = event->key();
|
|
if (IDPressedKey == Qt::Key_Escape)
|
|
{
|
|
// Нажатие Esc
|
|
}
|
|
}
|
|
|