Page 2 of 2 FirstFirst 12
Results 21 to 22 of 22

Thread: Designer doesn't load wwWidgets plugin

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

    Default Re: Designer doesn't load wwWidgets plugin

    Ok, I've done some reading. First of all please run otool on the wwidgets plugin (libwwwidgetsplugin.dylib) and post the result here. Then run otool on the widget library (libwwwidgets4.dylib) and post the result as well. Finally post the absolute path to:
    1. Qt libraries
    2. libwwwidgets4.dylib
    3. libwwwidgetsplugin.dylib

    You'll need all that information to use a tool called install_name_tool. You can enter its name in Qt Assistant to learn about what it does.

  2. #22
    Join Date
    Feb 2009
    Posts
    1
    Qt products
    Qt4
    Platforms
    MacOS X Unix/X11 Windows

    Default Re: Designer doesn't load wwWidgets plugin

    I solved it... the solution by Reimer was very close.

    But you cannot add a reference to a framework like a library. Mac OS X frameworks are little bit different that .dylib libraries, so libtool fails if you handle the framework like a dylib.

    In plugin.pro, the correct declaration is:

    Qt Code:
    1. LIBS += -framework wwwidgets4
    To copy to clipboard, switch view to plain text mode 

    Note that this requires that the framework already exists in /Library/Frameworks!

    So, compile the main plugin, run 'make install' and produce the designer plugin after...

Similar Threads

  1. Qt designer plugin errors on OSX Leopard
    By mpotocnik in forum Qt Tools
    Replies: 10
    Last Post: 21st January 2008, 09:45
  2. QPluginLoader not recognizing a plugin
    By KShots in forum Qt Programming
    Replies: 3
    Last Post: 29th June 2007, 14:13
  3. Qt Designer plugin on windows
    By big4mil in forum Newbie
    Replies: 4
    Last Post: 30th May 2007, 17:33
  4. Replies: 1
    Last Post: 22nd January 2007, 12:13
  5. Replies: 13
    Last Post: 15th December 2006, 11:52

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
  •  
Digia, Qt and their respective logos are trademarks of Digia Plc in Finland and/or other countries worldwide.