📄 myfinddlg.h
字号:
// MyFindDlg.h: interface for the MyFindDlg class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MYFINDDLG_H__402DC8C1_EA60_11D5_A118_0050BA0F2366__INCLUDED_)
#define AFX_MYFINDDLG_H__402DC8C1_EA60_11D5_A118_0050BA0F2366__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "my.h"
class MyFindDlg : public QDialog
{
Q_OBJECT
public:
void setEdit(QTextEdit* txtEdit);
MyFindDlg(QWidget * parent = 0, const char * name = 0);
virtual ~MyFindDlg();
protected slots:
void OnCancel();
bool findString();
bool findNextString();
protected:
QCheckBox * m_chkcase;
QPushButton* m_cancelbut;
QTextEdit* m_edit;
QLineEdit* m_fwedit;
private:
int m_icharAt;
int m_iparaAt;
};
#endif // !defined(AFX_MYFINDDLG_H__402DC8C1_EA60_11D5_A118_0050BA0F2366__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -