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.
|
|
|
#include "qtsgraph.h"
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
|
|
|
QTSGraph w(1024,768);
|
|
|
|
w.show();
|
|
|
|
return a.exec();
|
|
|
|
}
|
|
|
|
|
|
|
|
void QTSGraph::slotStartTimer()
|
|
|
|
{
|
|
|
|
|
|
|
|
// Тут рисовать
|
|
|
|
|
|
|
|
PutPixel(100,100);
|
|
|
|
Delay(2000);
|
|
|
|
PutPixel(300,100);
|
|
|
|
int x=1;
|
|
|
|
while(!MouseClicked() && x < 1024)
|
|
|
|
{
|
|
|
|
PutPixel(x,50);
|
|
|
|
x+=1;
|
|
|
|
Delay(200);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Конец рисования
|
|
|
|
|
|
|
|
StartTimer->stop();
|
|
|
|
}
|