Qt常⽤类——QFrame类与QWidge类QFrame与QWidget的区别:
QFrame是基本控件的基类,QWidget是QFrame基类。
QWidget类是所有⽤户界⾯对象的基类。
Widget是⽤户界⾯的基本单元:它从窗⼝系统接收⿏标,键盘和其他事件,并在屏幕上绘制⾃⼰。
每个Widget都是矩形的,它们按照Z-order进⾏排序。
QFrame类:
1.公有类型
enum Shadow { Plain, Raised, Sunken }
enum Shape { NoFrame, Box, Panel, StyledPanel, ..., WinPanel }
enum StyleMask { Shadow_Mask, Shape_Mask }
2.属性
frameRect : QRect//控件矩形
frameWidth : const int//框架的宽度
frameShadow : Shadow//有⽆阴影
lineWidth : int//线宽度
frameShape : Shape//框架形状
midLineWidth : int//中间线的宽度
3.公有函数
QFrame(QWidget * parent = 0, Qt::WindowFlags f = 0)//构造函数,设置主窗⼝和框架类型
~QFrame()//析构函数
QRect frameRect() const//返回框架的rect
Shadow frameShadow() const
Shape frameShape() const
int QFrame::frameStyle() const//返回框架风格,类似frameShadow()
int frameWidth() const
int lineWidth() const
html frameint midLineWidth() const
void setFrameRect(const QRect &)
void setFrameShadow(Shadow)
void setFrameShape(Shape)
void setFrameStyle(int style)
void setLineWidth(int)
void setMidLineWidth(int)
3.重写公有函数
virtual QSize sizeHint() const//返回尺⼨⼤⼩
4.保护函数
void initStyleOption(QStyleOptionFrame * option) const//初始化画⼀个框架
5.公有保护函数
virtual void changeEvent(QEvent * ev)//事件状态改变
virtual bool event(QEvent * e)//接收事件
virtual void paintEvent(QPaintEvent *)//重绘事件
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论