⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mainwindow.h

📁 Qt环境下开发的一个地址簿应用程序
💻 H
字号:
/****************************************************************************** $Id: qt/examples/addressbook/mainwindow.h   2.3.7   edited 2001-01-26 $**** Copyright ( C ) 1992-2000 Trolltech AS.  All rights reserved.**** This file is part of an example program for Qt.  This example** program may be used, distributed and modified without limitation.*******************************************************************************/#ifndef AB_MAINWINDOW_H#define AB_MAINWINDOW_H#include <qmainwindow.h>#include <qstring.h>class QToolBar;class QPopupMenu;class ABCentralWidget;class ABMainWindow: public QMainWindow{    Q_OBJECTpublic:    ABMainWindow();    ~ABMainWindow();protected slots:    void fileNew();    void fileOpen();    void fileSave();    void fileSaveAs();    void filePrint();    void closeWindow();protected:    void setupMenuBar();    void setupFileTools();    void setupStatusBar();    void setupCentralWidget();    QToolBar *fileTools;    QString filename;    ABCentralWidget *view;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -