欣慰钢铁侠

文章
6
资源
0
加入时间
2年10月21天

Linux学习笔记(八十四)——Qt中的close和closeEvent

Posted on2009年09月28日byhuanhaoadam对于一个QDialog类的对话框可以用reject()和accept()来控制关闭时的行为。对于QMainWindow而言则可以通过close()信号和closeEvent(QCloseEvent *)函数。当然,这两个都是从QWidget那里继承过来的,所以严格说来只要是Qt控件就都能用,但应该还是对主窗口应用比较多吧。<br />每当点击窗口上方的关闭按钮,就会引发窗口的bool close()响应,如果窗口被关闭

设计模式--创建型模式--单例模式

//Creational Patterns--Singleton//创建型模式--单例class singleton{public:    static singleton* getInstance();private:    singleton(){}    ~singleton(){}    singleton(const singleton&amp;amp;);// = del...