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

« back to all changes in this revision

Viewing changes to plasma/widgets/checkbox.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:
54
54
    /**
55
55
     * Sets the display text for this CheckBox
56
56
     *
57
 
     * @arg text the text to display; should be translated.
 
57
     * @param text the text to display; should be translated.
58
58
     */
59
59
    void setText(const QString &text);
60
60
 
66
66
    /**
67
67
     * Sets the path to an image to display.
68
68
     *
69
 
     * @arg path the path to the image; if a relative path, then a themed image will be loaded.
 
69
     * @param path the path to the image; if a relative path, then a themed image will be loaded.
70
70
     */
71
71
    void setImage(const QString &path);
72
72
 
78
78
    /**
79
79
     * Sets the stylesheet used to control the visual display of this CheckBox
80
80
     *
81
 
     * @arg stylesheet a CSS string
 
81
     * @param stylesheet a CSS string
82
82
     */
83
83
    void setStyleSheet(const QString &stylesheet);
84
84
 
95
95
    /**
96
96
     * Sets the checked state.
97
97
     *
98
 
     * @arg checked true if checked, false if not
 
98
     * @param checked true if checked, false if not
99
99
     */
100
100
    void setChecked(bool checked);
101
101