~ubuntu-branches/ubuntu/oneiric/kde4libs/oneiric-proposed

« back to all changes in this revision

Viewing changes to plasma/widgets/scrollbar.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-07-08 00:08:34 UTC
  • mto: This revision was merged to the branch mainline in revision 247.
  • Revision ID: package-import@ubuntu.com-20110708000834-dr9a8my4iml90qe5
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
 
60
60
    /**
61
61
     * Sets the scrollbar minimum and maximum values
62
 
     * @arg min minimum value
63
 
     * @arg max maximum value
 
62
     * @param min minimum value
 
63
     * @param max maximum value
64
64
     */
65
65
    void setRange(int min, int max);
66
66
 
67
67
    /**
68
68
     * Sets the amount of the single step
69
69
     * i.e how much the slider will move when the user press an arrow button
70
 
     * @arg val
 
70
     * @param val
71
71
     */
72
72
    void setSingleStep(int val);
73
73
 
78
78
 
79
79
    /**
80
80
     * Sets the amount the slider will scroll when the user press page up or page down
81
 
     * @arg val
 
81
     * @param val
82
82
     */
83
83
    void setPageStep(int val);
84
84
 
103
103
    int maximum() const;
104
104
 
105
105
    /**
106
 
     * @arg the minimum value bound of this ScrollBar
 
106
     * @param the minimum value bound of this ScrollBar
107
107
     * @since 4.6
108
108
     */
109
109
    void setMinimum(const int min) const;
110
110
 
111
111
    /**
112
 
     * @arg the maximum value bound of this ScrollBar
 
112
     * @param the maximum value bound of this ScrollBar
113
113
     * @since 4.6
114
114
     */
115
115
    void setMaximum(const int max) const;
117
117
    /**
118
118
     * Sets the stylesheet used to control the visual display of this ScrollBar
119
119
     *
120
 
     * @arg stylesheet a CSS string
 
120
     * @param stylesheet a CSS string
121
121
     */
122
122
    void setStyleSheet(const QString &stylesheet);
123
123
 
143
143
public Q_SLOTS:
144
144
    /**
145
145
     * Sets the current value for the ScrollBar
146
 
     * @arg value must be minimum() <= value <= maximum()
 
146
     * @param value must be minimum() <= value <= maximum()
147
147
     */
148
148
    void setValue(int val);
149
149