Results 1 to 8 of 8

Thread: Recursive repaint detected (*not like other problems), how do I remove the issue?

  1. #1
    Join Date
    Jul 2010
    Posts
    18
    Thanks
    2
    Thanked 2 Times in 2 Posts
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows

    Default Recursive repaint detected (*not like other problems), how do I remove the issue?

    A brief synopsis: I'm reposting a question that is located (here) in the hopes that someone on this forum will be more likely to have more knowledge. I really need an answer to this problem!

    Here's the problem summary, if you don't follow the link to SO as well as the links that are at that page:

    I've compiled a project built off of Qt, (Tulip). Tulip provides some headers in order that other developers that come along can build software off of what they provide. I've been able to use the CMake build system to compile (what's meant to be) my own standalone gui. The problem is that when I try to run it, I get an error where it says recursive repaint detected, and then it drops a core dump and dies. The thing is, all I did was copy code from the tutorials (links to source provided at the SO site that I linked up above) provided by them, so I would think that the code for this example would work properly.

  2. #2
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: Recursive repaint detected (*not like other problems), how do I remove the issue?

    Is this main() your whole code? There is nothing Qt specific in there. If the code fails, the problem is within tulip (or your use of it) so better ask on some tulip-dedicated site.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  3. #3
    Join Date
    Jul 2010
    Posts
    18
    Thanks
    2
    Thanked 2 Times in 2 Posts
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: Recursive repaint detected (*not like other problems), how do I remove the issue?

    Yeah, that main is my whole code.... although I just noticed that I was linking an extra header to it called modib.h. I removed that and updated the CMakeLists.txt to not include the Tulip library (I know that might sound confusing, but in the tulip sources meant to be built against have a lot of different libraries, its broken down a lot).

    And I've asked the tulip people, but they aren't answering. I guess the only alternative now is to dig through their source and mine in order to figure out why its doing this.


    Added after 19 minutes:


    You know what I just found in their documentation however? The centerScene function is actually a slot. Does that mean I really do need to code it up using signals and slots?


    Added after 29 minutes:


    Also, I narrowed down what makes it crash. The code, without being modified crashes in processEvents; but when mainWidget->show() is not called or is commented out, it doesn't crash, but then it doesn't show the window. I can get it to show the window and not crash by removing the lines

    GlLayer* mainLayer = mainWidget->getScene()->createLayer("Main");
    mainLayer->addGraph(g,"graph");

    But at this point, it doesn't show the nodes or edges that are in the file that I'm passing as an argument to be shown as a graph.


    Added after 1 8 minutes:


    So, it turns out, they did in fact release a demo that doesn't work with this version. They really need some comprehensive unit testing to be done as well because clearly, if they had some unit tests to fail when packaging it, they would know to update the demos.

    Anyway, I literally used Cmake on the demos folder included in the actual, out of the box, source-literally going back to the root from where I had started adapting things to suit my needs to make sure that one of my changes hadn't broken anything. Turns out, I get the exact same error. Conclusion is that it is an out of date plugin.

    So now, I need to dig through their source and find out why its dying, perhaps looking at the tulip source itself to see if I can get a viable example to build from.
    Last edited by kennethadammiller; 21st June 2013 at 22:13.

  4. #4
    Join Date
    Jan 2006
    Location
    Warsaw, Poland
    Posts
    33,368
    Thanks
    3
    Thanked 5,018 Times in 4,794 Posts
    Qt products
    Qt3 Qt4 Qt5 Qt/Embedded
    Platforms
    Unix/X11 Windows Android Maemo/MeeGo
    Wiki edits
    10

    Default Re: Recursive repaint detected (*not like other problems), how do I remove the issue?

    Check the backtrace from the debugger.
    Your biological and technological distinctiveness will be added to our own. Resistance is futile.

    Please ask Qt related questions on the forum and not using private messages or visitor messages.


  5. The following user says thank you to wysota for this useful post:

    kennethadammiller (22nd June 2013)

  6. #5
    Join Date
    Jul 2010
    Posts
    18
    Thanks
    2
    Thanked 2 Times in 2 Posts
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: Recursive repaint detected (*not like other problems), how do I remove the issue?

    Well I did give the backtrace that I originally had as a link on the original stack overflow link that I posted, but I will repeat and gather the backtrace for you as you request.

    Here is the link to the original backtrace:

    https://gist.github.com/anonymous/0b356a82ec3e9ff71e01


    Added after 56 minutes:


    Here is a link to an updated error log; the first is from literally adapting the CMakeLists.txt for the provided sample enough in order that it would compile, and then trying to run it, in which case I get an error:

    https://gist.github.com/anonymous/44ee163e5c07b1f52f1a

    The second, below, is from running my own. Although the source is exactly the same, there may be some difference, because I wrote the CMakeLists.txt as an adapted example provded for something else.

    https://gist.github.com/anonymous/7d3c1158d33774251f5a
    Last edited by kennethadammiller; 22nd June 2013 at 03:15.

  7. #6
    Join Date
    Jul 2010
    Posts
    18
    Thanks
    2
    Thanked 2 Times in 2 Posts
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: Recursive repaint detected (*not like other problems), how do I remove the issue?

    Ok, now the most up to date information that I have on this is the following:

    having perused through their commit history on their sourceforge website, I found that they recently announced that it could be compiled with Qt5. So I went about installing everything I needed to, rebuilt ALL of tulip under qt5, and rebuilt my example linking to the new qt5. I get a new stack dump now.

    https://gist.github.com/anonymous/4eb5e809cd36b465aa64

    It is still dying under the show command. For everyone's information, the example I'm running uses a mainWidget pointer to a GlMainWidget. After looking it up in their documentation, found that thei GlMainWidget extends QGLWidget.

    http://harmattan-dev.nokia.com/docs/...qglwidget.html

    http://tulip.labri.fr/Documentation/...8h_source.html

    The line that that particular stack trace refers to is where it calls mainWidget->centerScene(); this centerScene function is described at the link above, but its declared as a public slot. Does that mean I need to call it using the signals/slots thing that Qt developed?

  8. #7
    Join Date
    Jan 2006
    Location
    Graz, Austria
    Posts
    8,416
    Thanks
    37
    Thanked 1,544 Times in 1,494 Posts
    Qt products
    Qt3 Qt4 Qt5
    Platforms
    Unix/X11 Windows

    Default Re: Recursive repaint detected (*not like other problems), how do I remove the issue?

    Quote Originally Posted by kennethadammiller View Post
    The line that that particular stack trace refers to is where it calls mainWidget->centerScene(); this centerScene function is described at the link above, but its declared as a public slot. Does that mean I need to call it using the signals/slots thing that Qt developed?
    No, a slot is just a normal C++ method, it can be called directly.

    Cheers,
    _

  9. #8
    Join Date
    Jul 2010
    Posts
    18
    Thanks
    2
    Thanked 2 Times in 2 Posts
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: Recursive repaint detected (*not like other problems), how do I remove the issue?

    Ok, I found the exact error:

    In FTSize.cpp of their thirdparty/ftgl directory, at line 49, they have this:

    err = FT_Set_Char_Size(*face, 0L, pointSize *64, xResolution, yResolution);

    It's trying to dereference a null pointer at face;

    I put these lines in:

    if (!face)
    std::cout << "face " << face << std::endl;

    and I got "face 0" output when running it under gdb.
    Last edited by kennethadammiller; 22nd June 2013 at 17:26.

Similar Threads

  1. Replies: 1
    Last Post: 26th August 2011, 09:51
  2. GUI Thread repaint issue
    By jim.pacyga in forum Newbie
    Replies: 1
    Last Post: 23rd June 2010, 03:59
  3. Recursive call detected
    By SebastianBecker in forum Qt Programming
    Replies: 3
    Last Post: 10th September 2009, 17:25
  4. repaint issue in qt4
    By ancest in forum Qt Programming
    Replies: 2
    Last Post: 12th March 2009, 09:51
  5. QDialog::exec : Recursive call detected.
    By node_ex in forum Qt Programming
    Replies: 4
    Last Post: 29th June 2008, 17:50

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Qt is a trademark of The Qt Company.