📄 mytime.h
字号:
#ifndef MYTIME_H
#define MYTIME_H
#include<QtGui>
#include<QtCore>
class MyTime :public QObject
{
Q_OBJECT;
public:
int hour,minute,second;
MyTime();
void setHour(int h);
void setMinute(int m);
void setSecond(int s);
public slots:
void getHms(int h,int m,int s);
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -