callNumber = new QLineEdit(this);
dialDialog = new Dial( callNumber->text(),this, "dial");
这个类参数类型怎么解释?
查阅相关手册:
QDial::QDial ( QWidget * parent = 0, const char * name = 0, WFlags f = 0 ) Constructs a dial called
name with parent
parent.
f is propagated to the
QWidget constructor. It has the default range of a
QRangeControl.
QDial::QDial ( int minValue, int maxValue, int pageStep, int value, QWidget * parent = 0, const char * name = 0 ) Constructs a dial called
name with parent
parent. The dial's value can never be smaller than
minValue or greater than
maxValue. Its page step size is
pageStep, and its initial value is
value.
value is forced to be within the legal range.
请问一下dialDialog = new Dial( callNumber->text(),this, "dial");这句话对应的参数是什么?