<div class="gmail_quote">On Tue, Jun 12, 2012 at 4:00 AM,  <span dir="ltr"><<a href="mailto:pyqt-request@riverbankcomputing.com" target="_blank">pyqt-request@riverbankcomputing.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<br>
   1. QTabWidget tab width change (Ganesh Kumar)<br>
<br>
I have try with pyqt, with QTabWidget I want increase tab width my<br>
application. How to achieve tab width. please guide me.<br>
<br>
-Ganesh<br></blockquote><div><br>The idea is that the tab bar will resize the tabs in an appropriate way, depending on the number of tabs and the width of the tab widget. If the user can resize the window, the tab bar will adjust as necessary. This can be complicated. If possible you should just let Qt do its job.<br>

<br>If the problem is that you have too many tabs and they become too small, note the setUsesScrollButtons() method, allowing the tab bar to scroll when there are more tabs than will fit.<br><br>If you insist, you could use the setTabBar() method to replace the default QTabBar with one you have created. In your customized QTabBar, you would implement your own tabSizeHint() method to tell Qt what size to make the tab at a given index. Good luck with that.<br>

<br>Dave Cortesi <br></div></div>