2014-05-13 17:47:59 +00:00
|
|
|
/*
|
2014-08-06 13:43:29 +00:00
|
|
|
Copyright (c) 2011-2014, Mathieu Labbe - IntRoLab - Universite de Sherbrooke
|
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
documentation and/or other materials provided with the distribution.
|
|
|
|
|
* Neither the name of the Universite de Sherbrooke nor the
|
|
|
|
|
names of its contributors may be used to endorse or promote products
|
|
|
|
|
derived from this software without specific prior written permission.
|
|
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
|
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
|
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
2014-08-11 15:49:53 +00:00
|
|
|
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
|
2014-08-06 13:43:29 +00:00
|
|
|
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
|
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
|
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*/
|
2014-05-13 17:47:59 +00:00
|
|
|
|
|
|
|
|
#ifndef RECTITEM_H_
|
|
|
|
|
#define RECTITEM_H_
|
|
|
|
|
|
2015-11-29 18:39:20 -05:00
|
|
|
#include <QGraphicsRectItem>
|
|
|
|
|
#include <QGraphicsTextItem>
|
2014-05-13 17:47:59 +00:00
|
|
|
#include <QtGui/QPen>
|
|
|
|
|
#include <QtGui/QBrush>
|
|
|
|
|
|
2014-08-06 13:43:29 +00:00
|
|
|
namespace find_object {
|
|
|
|
|
|
2014-05-13 17:47:59 +00:00
|
|
|
class RectItem : public QObject, public QGraphicsRectItem
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT;
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
RectItem(int id, const QRectF &rect, QGraphicsItem * parent = 0);
|
|
|
|
|
virtual ~RectItem();
|
|
|
|
|
|
|
|
|
|
void setColor(const QColor & color);
|
|
|
|
|
int id() const {return id_;}
|
|
|
|
|
|
2014-07-08 19:55:03 +00:00
|
|
|
Q_SIGNALS:
|
2014-05-13 17:47:59 +00:00
|
|
|
void hovered(int);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual void hoverEnterEvent ( QGraphicsSceneHoverEvent * event );
|
|
|
|
|
virtual void hoverLeaveEvent ( QGraphicsSceneHoverEvent * event );
|
|
|
|
|
virtual void focusInEvent ( QFocusEvent * event );
|
|
|
|
|
virtual void focusOutEvent ( QFocusEvent * event );
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void showDescription();
|
|
|
|
|
void hideDescription();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QGraphicsRectItem * placeHolder_;
|
|
|
|
|
int id_;
|
|
|
|
|
};
|
|
|
|
|
|
2014-08-06 13:43:29 +00:00
|
|
|
} // namespace find_object
|
2014-05-13 17:47:59 +00:00
|
|
|
|
|
|
|
|
#endif /* RECTITEM_H_ */
|