📄 addressbook.h
字号:
/******************************************************************************** Trolltech hereby grants a license to use the Qt/Eclipse Integration** plug-in (the software contained herein), in binary form, solely for the** purpose of creating code to be used with Trolltech's Qt software.**** Qt Designer is licensed under the terms of the GNU General Public** License versions 2.0 and 3.0 ("GPL License"). Trolltech offers users the** right to use certain no GPL licensed software under the terms of its GPL** Exception version 1.2 (http://trolltech.com/products/qt/gplexception).**** THIS SOFTWARE IS PROVIDED BY TROLLTECH AND ITS CONTRIBUTORS (IF ANY) "AS** IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED** TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A** PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER** OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,** EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,** PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR** PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF** LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING** NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS** SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."**** Since we now have the GPL exception I think that the "special exception** is no longer needed. The license text proposed above (other than the** special exception portion of it) is the BSD license and we have added** the BSD license as a permissible license under the exception.******************************************************************************/#ifndef ADDRESSBOOK_H#define ADDRESSBOOK_H#include <QtGui/QWidget>#include "ui_addressbook.h"#include "memberdatastructure.h"#include "memberdatalist.h"class AddressBook : public QWidget{ Q_OBJECTpublic: AddressBook(QWidget *parent = 0); ~AddressBook();private: Ui::AddressBookClass ui; private slots: /* Overall Component Processing */ void on_leftButton_clicked(); void on_rightButton_clicked(); /* List Page Processing */ void on_listgroup_classCombo_activated(); void on_listgroup_memberListWidget_itemActivated(); void on_listgroup_findEdit_textChanged(); void on_optionCombo_activated(); void on_addgroup_ScrollBar_valueChanged(); void on_listgroup_memberListWidget_itemSelectionChanged(); void classradioSelect(); /* Add Page Processing */ // All done in leftbutton and right button. /* Edit Page Processing */ // All done in leftbutton and right button. /* Detail Page Processing */ // All done in the component which shows detail. /* Class Page Processing */ // All done in the buttons except the classgroup_classListWidget,which show the classes existed. public: void SystemInit(); /* Page Related Function */ void showAddPage(); void showEditPage(); void showDetailPage(); void showClassPage(); void showClassModifyPage(); void showListPage(); // void clearAddPage();// void clearEditPage();// void clearDetailpage();// void clearClasspage(); /* Button Related Funtion */ void showRightButton(); /* Option Combo Related Function */ void showOptionCombo(); void listPageOptionComboSet(); /* List Page Processing */ protected: MemberDataList list; QString curPersonName; QString objectRadioName; };#endif // ADDRESSBOOK_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -