Sophie

Sophie

distrib > * > 2009.0 > i586 > by-pkgid > a6711891ce757817bba854bf3f25205a > files > 2168

qtjambi-doc-4.3.3-3mdv2008.1.i586.rpm

<class name="QProgressBar" doc="/**
&lt;p&gt;The &lt;a href=&quot;QProgressBar.html#QProgressBar(com.trolltech.qt.gui.QWidget)&quot;&gt;&lt;tt&gt;QProgressBar&lt;/tt&gt;&lt;/a&gt; widget provides a horizontal or vertical progress bar.&lt;/p&gt;
&lt;p&gt;A progress bar is used to give the user an indication of the progress of an operation and to reassure them that the application is still running.&lt;/p&gt;
&lt;p&gt;The progress bar uses the concept of &lt;i&gt;steps&lt;/i&gt;. You set it up by specifying the minimum and maximum possible step values, and it will display the percentage of steps that have been completed when you later give it the current step value. The percentage is calculated by dividing the progress (&lt;a href=&quot;QProgressBar.html#value()&quot;&gt;&lt;tt&gt;value&lt;/tt&gt;&lt;/a&gt; - &lt;a href=&quot;QProgressBar.html#minimum()&quot;&gt;&lt;tt&gt;minimum&lt;/tt&gt;&lt;/a&gt;) divided by &lt;a href=&quot;QProgressBar.html#maximum()&quot;&gt;&lt;tt&gt;maximum&lt;/tt&gt;&lt;/a&gt; - &lt;a href=&quot;QProgressBar.html#minimum()&quot;&gt;&lt;tt&gt;minimum&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;You can specify the minimum and maximum number of steps with &lt;a href=&quot;QProgressBar.html#setMinimum(int)&quot;&gt;&lt;tt&gt;setMinimum&lt;/tt&gt;&lt;/a&gt; and &lt;a href=&quot;QProgressBar.html#setMaximum(int)&quot;&gt;&lt;tt&gt;setMaximum&lt;/tt&gt;&lt;/a&gt;. The current number of steps is set with &lt;a href=&quot;QProgressBar.html#setValue(int)&quot;&gt;&lt;tt&gt;setValue&lt;/tt&gt;&lt;/a&gt;. The progress bar can be rewound to the beginning with &lt;a href=&quot;QProgressBar.html#reset()&quot;&gt;&lt;tt&gt;reset&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If minimum and maximum both are set to 0, the bar shows a busy indicator instead of a percentage of steps. This is useful, for example, when using &lt;a href=&quot;%2E%2E/network/QFtp.html&quot;&gt;&lt;tt&gt;QFtp&lt;/tt&gt;&lt;/a&gt; or &lt;a href=&quot;%2E%2E/network/QHttp.html&quot;&gt;&lt;tt&gt;QHttp&lt;/tt&gt;&lt;/a&gt; to download items when they are unable to determine the size of the item being downloaded.&lt;/p&gt;
&lt;p&gt;&lt;table align=&quot;center&quot; cellpadding=&quot;2&quot; cellspacing=&quot;1&quot; border=&quot;0&quot;&gt;
&lt;tr valign=&quot;top&quot; class=&quot;odd&quot;&gt;&lt;td&gt;&lt;img src=&quot;%2E%2E/images/macintosh-progressbar.png&quot; alt=&quot;Screenshot of a Macintosh style progress bar&quot; /&gt;&lt;/td&gt;&lt;td&gt;A progress bar shown in the Macintosh widget style.&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot; class=&quot;even&quot;&gt;&lt;td&gt;&lt;img src=&quot;%2E%2E/images/windowsxp-progressbar.png&quot; alt=&quot;Screenshot of a Windows XP style progress bar&quot; /&gt;&lt;/td&gt;&lt;td&gt;A progress bar shown in the Windows XP widget style.&lt;/td&gt;&lt;/tr&gt;
&lt;tr valign=&quot;top&quot; class=&quot;odd&quot;&gt;&lt;td&gt;&lt;img src=&quot;%2E%2E/images/plastique-progressbar.png&quot; alt=&quot;Screenshot of a Plastique style progress bar&quot; /&gt;&lt;/td&gt;&lt;td&gt;A progress bar shown in the Plastique widget style.&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;&lt;/p&gt;

@see &lt;a href=&quot;%2E%2E/core/QTimeLine.html&quot;&gt;&lt;tt&gt;QTimeLine&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressDialog.html&quot;&gt;&lt;tt&gt;QProgressDialog&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;%2E%2E/guibooks.html#fowler&quot;&gt;GUI Design Handbook: Progress Indicator&lt;/tt&gt;&lt;/a&gt; */">
    <signal name="protected final void customContextMenuRequested(com.trolltech.qt.core.QPoint pos)" doc="/**
&lt;p&gt;This signal is emitted when the widget's &lt;a href=&quot;QWidget.html#contextMenuPolicy()&quot;&gt;&lt;tt&gt;contextMenuPolicy&lt;/tt&gt;&lt;/a&gt; is Qt::CustomContextMenu, and the user has requested a context menu on the widget. The position &lt;tt&gt;pos&lt;/tt&gt; is the position of the context menu event that the widget receives. Normally this is in widget coordinates. The exception to this rule is &lt;a href=&quot;QAbstractScrollArea.html&quot;&gt;&lt;tt&gt;QAbstractScrollArea&lt;/tt&gt;&lt;/a&gt; and its subclasses that map the context menu event to coordinates of the viewport()&lt;/tt&gt; .&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;Compatible Slot Signatures:&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot(com.trolltech.qt.core.QPoint pos)&lt;/tt&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot()&lt;/tt&gt;&lt;/dd&gt;
&lt;/dl&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;See Also:&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;a href=&quot;QWidget.html#mapToGlobal(com.trolltech.qt.core.QPoint)&quot;&gt;&lt;tt&gt;mapToGlobal&lt;/tt&gt;&lt;/a&gt;, &lt;a href=&quot;QMenu.html&quot;&gt;&lt;tt&gt;QMenu&lt;/tt&gt;&lt;/a&gt;, &lt;a href=&quot;QWidget.html#contextMenuPolicy()&quot;&gt;&lt;tt&gt;contextMenuPolicy&lt;/tt&gt;&lt;/a&gt;&lt;/dd&gt;
&lt;/dl&gt;
 */"/>
    <signal name="protected final void valueChanged(int value)" doc="/**
&lt;p&gt;This signal is emitted when the value shown in the progress bar changes. &lt;tt&gt;value&lt;/tt&gt; is the new value shown by the progress bar.&lt;/p&gt;
&lt;dl&gt;
&lt;dt&gt;&lt;b&gt;Compatible Slot Signatures:&lt;/b&gt;&lt;/dt&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot(int value)&lt;/tt&gt;&lt;/dd&gt;
&lt;dd&gt;&lt;tt&gt;void mySlot()&lt;/tt&gt;&lt;/dd&gt;
&lt;/dl&gt;
 */"/>
    <method name="public QProgressBar(com.trolltech.qt.gui.QWidget parent)" doc="/**
&lt;p&gt;Constructs a progress bar with the given &lt;tt&gt;parent&lt;/tt&gt;.&lt;/p&gt;
&lt;p&gt;By default, the minimum step value is set to 0, and the maximum to 100.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#setRange(int, int)&quot;&gt;&lt;tt&gt;setRange&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public QProgressBar()" doc="/**
&lt;p&gt;Equivalent to &lt;a href=&quot;QProgressBar.html#QProgressBar(com.trolltech.qt.gui.QWidget)&quot;&gt;&lt;tt&gt;QProgressBar&lt;/tt&gt;&lt;/a&gt;(0). */"/>
    <method name="public final com.trolltech.qt.core.Qt.Alignment alignment()" doc="/**
&lt;p&gt;Returns the alignment of the progress bar.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#setAlignment(com.trolltech.qt.core.Qt.Alignment)&quot;&gt;&lt;tt&gt;setAlignment&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final java.lang.String format()" doc="/**
&lt;p&gt;Returns the string used to generate the current text.&lt;/p&gt;
&lt;p&gt;%p - is replaced by the percentage completed. %v - is replaced by the current value. %m - is replaced by the total number of steps.&lt;/p&gt;
&lt;p&gt;The default value is &amp;quot;%p%&amp;quot;.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#setFormat(java.lang.String)&quot;&gt;&lt;tt&gt;setFormat&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressBar.html#text()&quot;&gt;&lt;tt&gt;text&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final boolean invertedAppearance()" doc="/**
&lt;p&gt;Returns whether or not a progress bar shows its progress inverted.&lt;/p&gt;
&lt;p&gt;If this property is false, the progress bar grows in the other direction (e.g&amp;#x2e; from right to left). By default, the progress bar is not inverted.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#setInvertedAppearance(boolean)&quot;&gt;&lt;tt&gt;setInvertedAppearance&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressBar.html#orientation()&quot;&gt;orientation&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QWidget.html#layoutDirection()&quot;&gt;&lt;tt&gt;layoutDirection&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final boolean isTextVisible()" doc="/**
&lt;p&gt;Returns whether the current completed percentage should be displayed.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#textDirection()&quot;&gt;&lt;tt&gt;textDirection&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final int maximum()" doc="/**
&lt;p&gt;Returns the progress bar's maximum value.&lt;/p&gt;
&lt;p&gt;When setting this property, the &lt;a href=&quot;QProgressBar.html#minimum()&quot;&gt;minimum&lt;/tt&gt;&lt;/a&gt; is adjusted if necessary to ensure that the range remains valid. If the current value falls outside the new range, the progress bar is reset with &lt;a href=&quot;QProgressBar.html#reset()&quot;&gt;&lt;tt&gt;reset&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#setMaximum(int)&quot;&gt;&lt;tt&gt;setMaximum&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final int minimum()" doc="/**
&lt;p&gt;Returns the progress bar's minimum value.&lt;/p&gt;
&lt;p&gt;When setting this property, the &lt;a href=&quot;QProgressBar.html#maximum()&quot;&gt;maximum&lt;/tt&gt;&lt;/a&gt; is adjusted if necessary to ensure that the range remains valid. If the current value falls outside the new range, the progress bar is reset with &lt;a href=&quot;QProgressBar.html#reset()&quot;&gt;&lt;tt&gt;reset&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#setMinimum(int)&quot;&gt;&lt;tt&gt;setMinimum&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final com.trolltech.qt.core.Qt.Orientation orientation()" doc="/**
&lt;p&gt;Returns the orientation of the progress bar.&lt;/p&gt;
&lt;p&gt;The orientation must be Qt::Horizontal&lt;/tt&gt; (the default) or Qt::Vertical&lt;/tt&gt;.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#setOrientation(com.trolltech.qt.core.Qt.Orientation)&quot;&gt;&lt;tt&gt;setOrientation&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressBar.html#invertedAppearance()&quot;&gt;&lt;tt&gt;invertedAppearance&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressBar.html#textDirection()&quot;&gt;&lt;tt&gt;textDirection&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final void reset()" doc="/**
&lt;p&gt;Reset the progress bar. The progress bar &amp;quot;rewinds&amp;quot; and shows no progress.&lt;/p&gt;
 */"/>
    <method name="public final void setAlignment(com.trolltech.qt.core.Qt.Alignment alignment)" doc="/**
&lt;p&gt;Sets the alignment of the progress bar to &lt;tt&gt;alignment&lt;/tt&gt;.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#alignment()&quot;&gt;&lt;tt&gt;alignment&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final void setFormat(java.lang.String format)" doc="/**
&lt;p&gt;Sets the string used to generate the current text to &lt;tt&gt;format&lt;/tt&gt;.&lt;/p&gt;
&lt;p&gt;%p - is replaced by the percentage completed. %v - is replaced by the current value. %m - is replaced by the total number of steps.&lt;/p&gt;
&lt;p&gt;The default value is &amp;quot;%p%&amp;quot;.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#format()&quot;&gt;&lt;tt&gt;format&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressBar.html#text()&quot;&gt;&lt;tt&gt;text&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final void setInvertedAppearance(boolean invert)" doc="/**
&lt;p&gt;Sets whether or not a progress bar shows its progress inverted to &lt;tt&gt;invert&lt;/tt&gt;.&lt;/p&gt;
&lt;p&gt;If this property is false, the progress bar grows in the other direction (e.g&amp;#x2e; from right to left). By default, the progress bar is not inverted.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#invertedAppearance()&quot;&gt;&lt;tt&gt;invertedAppearance&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressBar.html#orientation()&quot;&gt;orientation&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QWidget.html#layoutDirection()&quot;&gt;&lt;tt&gt;layoutDirection&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final void setMaximum(int maximum)" doc="/**
&lt;p&gt;Sets the progress bar's maximum value to &lt;tt&gt;maximum&lt;/tt&gt;.&lt;/p&gt;
&lt;p&gt;When setting this property, the &lt;a href=&quot;QProgressBar.html#minimum()&quot;&gt;minimum&lt;/tt&gt;&lt;/a&gt; is adjusted if necessary to ensure that the range remains valid. If the current value falls outside the new range, the progress bar is reset with &lt;a href=&quot;QProgressBar.html#reset()&quot;&gt;&lt;tt&gt;reset&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#maximum()&quot;&gt;&lt;tt&gt;maximum&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final void setMinimum(int minimum)" doc="/**
&lt;p&gt;Sets the progress bar's minimum value to &lt;tt&gt;minimum&lt;/tt&gt;.&lt;/p&gt;
&lt;p&gt;When setting this property, the &lt;a href=&quot;QProgressBar.html#maximum()&quot;&gt;maximum&lt;/tt&gt;&lt;/a&gt; is adjusted if necessary to ensure that the range remains valid. If the current value falls outside the new range, the progress bar is reset with &lt;a href=&quot;QProgressBar.html#reset()&quot;&gt;&lt;tt&gt;reset&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#minimum()&quot;&gt;&lt;tt&gt;minimum&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final void setOrientation(com.trolltech.qt.core.Qt.Orientation arg__1)" doc="/**
&lt;p&gt;Sets the orientation of the progress bar to &lt;tt&gt;arg__1&lt;/tt&gt;.&lt;/p&gt;
&lt;p&gt;The orientation must be Qt::Horizontal&lt;/tt&gt; (the default) or Qt::Vertical&lt;/tt&gt;.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#orientation()&quot;&gt;&lt;tt&gt;orientation&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressBar.html#invertedAppearance()&quot;&gt;&lt;tt&gt;invertedAppearance&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressBar.html#textDirection()&quot;&gt;&lt;tt&gt;textDirection&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final void setRange(int minimum, int maximum)" doc="/**
&lt;p&gt;Sets the progress bar's minimum and maximum values to &lt;tt&gt;minimum&lt;/tt&gt; and &lt;tt&gt;maximum&lt;/tt&gt; respectively.&lt;/p&gt;
&lt;p&gt;If &lt;tt&gt;maximum&lt;/tt&gt; is smaller than &lt;tt&gt;minimum&lt;/tt&gt;, &lt;tt&gt;minimum&lt;/tt&gt; becomes the only legal value.&lt;/p&gt;
&lt;p&gt;If the current value falls outside the new range, the progress bar is reset with &lt;a href=&quot;QProgressBar.html#reset()&quot;&gt;&lt;tt&gt;reset&lt;/tt&gt;&lt;/a&gt;.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#minimum()&quot;&gt;minimum&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressBar.html#maximum()&quot;&gt;maximum&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final void setTextDirection(com.trolltech.qt.gui.QProgressBar.Direction textDirection)" doc="/**
&lt;p&gt;Sets the reading direction of the &lt;a href=&quot;QProgressBar.html#text()&quot;&gt;text&lt;/tt&gt;&lt;/a&gt; for vertical progress bars to &lt;tt&gt;textDirection&lt;/tt&gt;.&lt;/p&gt;
&lt;p&gt;This property has no impact on horizontal progress bars. By default, the reading direction is QProgressBar::TopToBottom.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#textDirection()&quot;&gt;&lt;tt&gt;textDirection&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressBar.html#orientation()&quot;&gt;orientation&lt;/tt&gt;&lt;/a&gt;
@see &lt;tt&gt;textVisible&lt;/tt&gt; */"/>
    <method name="public final void setTextVisible(boolean visible)" doc="/**
&lt;p&gt;Sets whether the current completed percentage should be displayed to &lt;tt&gt;visible&lt;/tt&gt;.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#isTextVisible()&quot;&gt;&lt;tt&gt;isTextVisible&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressBar.html#textDirection()&quot;&gt;&lt;tt&gt;textDirection&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final void setValue(int value)" doc="/**
&lt;p&gt;Sets the progress bar's current value to &lt;tt&gt;value&lt;/tt&gt;.&lt;/p&gt;
&lt;p&gt;Attempting to change the current value to one outside the minimum-maximum range has no effect on the current value.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#value()&quot;&gt;&lt;tt&gt;value&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public final com.trolltech.qt.gui.QProgressBar.Direction textDirection()" doc="/**
&lt;p&gt;Returns the reading direction of the &lt;a href=&quot;QProgressBar.html#text()&quot;&gt;text&lt;/tt&gt;&lt;/a&gt; for vertical progress bars.&lt;/p&gt;
&lt;p&gt;This property has no impact on horizontal progress bars. By default, the reading direction is QProgressBar::TopToBottom.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#setTextDirection(com.trolltech.qt.gui.QProgressBar.Direction)&quot;&gt;&lt;tt&gt;setTextDirection&lt;/tt&gt;&lt;/a&gt;
@see &lt;a href=&quot;QProgressBar.html#orientation()&quot;&gt;orientation&lt;/tt&gt;&lt;/a&gt;
@see &lt;tt&gt;textVisible&lt;/tt&gt; */"/>
    <method name="public final int value()" doc="/**
&lt;p&gt;Returns the progress bar's current value.&lt;/p&gt;
&lt;p&gt;Attempting to change the current value to one outside the minimum-maximum range has no effect on the current value.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#setValue(int)&quot;&gt;&lt;tt&gt;setValue&lt;/tt&gt;&lt;/a&gt; */"/>
    <method name="public boolean event(com.trolltech.qt.core.QEvent e)" doc="/**
&lt;p&gt;This function is reimplemented for internal reasons.&lt;/p&gt;
 */"/>
    <method name="public com.trolltech.qt.core.QSize minimumSizeHint()" doc="/**
&lt;p&gt;This function is reimplemented for internal reasons.&lt;/p&gt;
 */"/>
    <method name="protected void paintEvent(com.trolltech.qt.gui.QPaintEvent arg__1)" doc="/**
&lt;p&gt;This function is reimplemented for internal reasons.&lt;/p&gt;
 */"/>
    <method name="public com.trolltech.qt.core.QSize sizeHint()" doc="/**
&lt;p&gt;This function is reimplemented for internal reasons.&lt;/p&gt;
 */"/>
    <method name="public java.lang.String text()" doc="/**
&lt;p&gt;Returns the descriptive text shown with the progress bar.&lt;/p&gt;
&lt;p&gt;The text returned is the same as the text displayed in the center (or in some styles, to the left) of the progress bar.&lt;/p&gt;
&lt;p&gt;The progress shown in the text may be smaller than the minimum value, indicating that the progress bar is in the &amp;quot;reset&amp;quot; state before any progress is set.&lt;/p&gt;
&lt;p&gt;In the default implementation, the text either contains a percentage value that indicates the progress so far, or it is blank because the progress bar is in the reset state.&lt;/p&gt;
 */"/>
    <enum name="Direction" doc="/**
&lt;p&gt;Specifies the reading direction of the &lt;a href=&quot;QProgressBar.html#text()&quot;&gt;text&lt;/tt&gt;&lt;/a&gt; for vertical progress bars.&lt;/p&gt;
&lt;p&gt;Note that whether or not the text is drawn is dependent on the style. Currently CDE, CleanLooks, Motif, and Plastique draw the text. Mac, Windows and WindowsXP style do not.&lt;/p&gt;

@see &lt;a href=&quot;QProgressBar.html#textDirection()&quot;&gt;&lt;tt&gt;textDirection&lt;/tt&gt;&lt;/a&gt; */">
        <enum-value name="TopToBottom" doc="/**
&lt;p&gt;The text is rotated 90 degrees clockwise.&lt;/p&gt;
 */"/>
        <enum-value name="BottomToTop" doc="/**
&lt;p&gt;The text is rotated 90 degrees counter-clockwise.&lt;/p&gt;
 */"/>
</enum>
</class>