This commit is contained in:
Vladislav Vinogradov 2011-12-13 06:25:37 +00:00
parent 056d015b38
commit 6310622be3
2 changed files with 11 additions and 8 deletions

View File

@ -2311,6 +2311,7 @@ QWidget* DefaultViewPort::getWidget()
void DefaultViewPort::setMouseCallBack(CvMouseCallback m, void* param)
{
on_mouse = m;
on_mouse_param = param;
}
@ -3358,7 +3359,9 @@ void GlFuncTab_QT::generateBitmapFont(const std::string& family, int height, int
__BEGIN__;
#ifndef Q_WS_WIN
glXUseXFont(font.handle(), start, count, base);
font.setStyleStrategy(QFont::OpenGLCompatible);
if (font.handle())
glXUseXFont(font.handle(), start, count, base);
#else
SelectObject(hDC, font.handle());
if (!wglUseFontBitmaps(hDC, start, count, base))

View File

@ -198,7 +198,7 @@ int main(int argc, const char* argv[])
while (true)
{
int key = waitKey(1);
int key = waitKey(10);
if (key >= 0)
key = key & 0xff;