Quote Originally Posted by deepusrp View Post
1. I want to disable the maximize/minimize button on my application
Try tweaking the window flags passed to the constructor.

2. I am using a graphical label widget(QLabel). I'm using this to display the .eps object. I want that object to be displayed exactly square. When i first designed (in Zenwalk), i gave absolute values; it was showing perfectly. When i tried in other distribution like fedora-6 that image is not perfect square rather it looks like rectangle and the image looks like somewhat pressed from left and right sides. How can i modify that object so that it should be perfect square irrespective of the distribution
Make sure the sizeHint returns the proper (square) size of the contents and set the size policy of the widget to fixed in both directions.