0.12.3: Increased Tango rendering performance, modified all handleEvent() with new interface (now returning bool)

This commit is contained in:
matlabbe
2017-03-12 21:21:09 -04:00
parent c12980ee91
commit d21ae76fff
56 changed files with 1869 additions and 662 deletions

View File

@@ -86,7 +86,7 @@ private slots:
protected:
virtual void closeEvent(QCloseEvent* event);
virtual void handleEvent(UEvent * event);
virtual bool handleEvent(UEvent * event);
private:
float getArea(const std::vector<cv::Point2f> & corners, const cv::Size & boardSize);

View File

@@ -56,7 +56,7 @@ public:
public slots:
void showImage(const rtabmap::SensorData & data);
protected:
virtual void handleEvent(UEvent * event);
virtual bool handleEvent(UEvent * event);
private:
ImageView* imageView_;

View File

@@ -61,7 +61,7 @@ private slots:
void updateTextEditBufferSize();
protected:
virtual void handleEvent(UEvent * anEvent);
virtual bool handleEvent(UEvent * anEvent);
private:
Ui_consoleWidget * _ui;

View File

@@ -61,7 +61,7 @@ public slots:
void showImage(const cv::Mat & image, const cv::Mat & depth);
protected:
virtual void closeEvent(QCloseEvent* event);
void handleEvent(UEvent * event);
bool handleEvent(UEvent * event);
private:
UMutex memoryMutex_;

View File

@@ -114,7 +114,7 @@ public slots:
protected:
virtual void closeEvent(QCloseEvent* event);
virtual void handleEvent(UEvent* anEvent);
virtual bool handleEvent(UEvent* anEvent);
virtual void showEvent(QShowEvent* anEvent);
virtual void moveEvent(QMoveEvent* anEvent);
virtual void resizeEvent(QResizeEvent* anEvent);

View File

@@ -64,7 +64,7 @@ public slots:
virtual void clear();
protected:
virtual void handleEvent(UEvent * event);
virtual bool handleEvent(UEvent * event);
private slots:
void reset();