summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/build/example/qt/qt4/hello/arrow.h
blob: 8375d13c91d664f8d00ae7e115d6bd59e8bd27df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright Vladimir Prus 2005.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.txt
// or copy at https://www.bfgroup.xyz/b2/LICENSE.txt)

#include <QtGui/qapplication.h>

#include <QtGui/qwidget.h>
#include <QtGui/qpainter.h>
#include <QtGui/qpainterpath.h>

#include <stdlib.h>
#include <math.h>

class Arrow_widget : public QWidget
{
    Q_OBJECT
public:
    Arrow_widget(QWidget* parent = 0);

public slots:
    void slotChangeColor();

private:
    void draw_arrow(int x1, int y1, int x2, int y2, QPainter& painter);
    void paintEvent(QPaintEvent*);

private:
    int color_;
};