Hi all,

I need to add a third party window created by some classes ( listed below) to my Qt Widget or Qgraphicsview ...How do i achieve this


My third party classes can able to create a window like this.

Qt Code:
  1. Ascan = new spxascan;
  2. Ascan -> create ( window ,0, x,y , wid, height) ;
To copy to clipboard, switch view to plain text mode 

Class Definition of Create Code:
  1. The create function definition for linux is like this :
  2.  
  3. Create(Display *display, Drawable destination, int xpos, int ypos, int width , int height)
To copy to clipboard, switch view to plain text mode 


Regards,
Augus