Commit 9fae7aee authored by Yannick Verdie's avatar Yannick Verdie

QT new functions:

 - fixed icvFindTrackbar bug
parent 641c2ba8
This diff is collapsed.
...@@ -132,6 +132,17 @@ public slots: ...@@ -132,6 +132,17 @@ public slots:
}; };
/*
protected:
int width, height;
class CvButtonbar : public QButtonGroup
{
Q_OBJECT
public:
CvButtonbar();
};*/
class CvTrackbar : public QHBoxLayout class CvTrackbar : public QHBoxLayout
{ {
Q_OBJECT Q_OBJECT
...@@ -157,7 +168,6 @@ private: ...@@ -157,7 +168,6 @@ private:
}; };
class CvWinProperties : public QWidget class CvWinProperties : public QWidget
{ {
Q_OBJECT Q_OBJECT
...@@ -172,8 +182,6 @@ private: ...@@ -172,8 +182,6 @@ private:
void hideEvent ( QHideEvent * event ) ; void hideEvent ( QHideEvent * event ) ;
}; };
class CvWindow : public QWidget class CvWindow : public QWidget
{ {
Q_OBJECT Q_OBJECT
...@@ -188,7 +196,13 @@ public: ...@@ -188,7 +196,13 @@ public:
void readSettings(); void readSettings();
void writeSettings(); void writeSettings();
void setOpenGLCallback(CvOpenGLCallback arg1,void* userdata); void setOpenGLCallback(CvOpenGLCallback arg1,void* userdata);
void hideTools();
void showTools();
ViewPort* getView(); ViewPort* getView();
CvWinProperties* getWinProp();
QPointer<QBoxLayout> myLayout; QPointer<QBoxLayout> myLayout;
QPointer<QStatusBar> myStatusBar; QPointer<QStatusBar> myStatusBar;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment