📄 addressbook.h
字号:
/************************************************************************ Copyright (C) 2000-2002 Trolltech AS. All rights reserved.**** This file is part of the Qtopia Environment.**** This file may be distributed and/or modified under the terms of the** GNU General Public License version 2 as published by the Free Software** Foundation and appearing in the file LICENSE.GPL included in the** packaging of this file.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.**** See http://www.trolltech.com/gpl/ for GPL licensing information.**** Contact info@trolltech.com if any conditions of this licensing are** not clear to you.************************************************************************/#ifndef Addressbook_H#define Addressbook_H#include <qmainwindow.h>#include <qdialog.h>#include <qstringlist.h>#include <qmap.h>#include <qtopia/pim/private/contactxmlio_p.h>#include <qtopia/categories.h>#include <qtopia/fieldmapimpl.h>class AbEditor;class AbLabel;class AbTable;class QPEToolBar;class QPopupMenu;class QToolButton;class QLineEdit;class QDialog;class Ir;class QAction;class CategorySelect;class QVBox;class QPopupMenu;class AbSettings : public QDialog{ Q_OBJECTpublic: AbSettings(QWidget *parent = 0, const char *name = 0, bool modal = TRUE, WFlags = 0); void setCurrentFields(const QValueList<int> &); QValueList<int> fields() { return map->fields(); }private: FieldMap *map;};class AddressbookWindow: public QMainWindow{ Q_OBJECTpublic: AddressbookWindow( QWidget *parent = 0, const char *name = 0, WFlags f = 0 ); ~AddressbookWindow();protected: void resizeEvent( QResizeEvent * e ); enum EntryMode { NewEntry=0, EditEntry }; void editEntry( EntryMode ); void duplicateEntry(); void closeEvent( QCloseEvent *e );public slots: void appMessage(const QCString &, const QByteArray &); void setDocument( const QString & ); void reload(); void flush();private slots: void slotListNew(); void slotListView(); void slotDetailView(); void slotListDelete(); void slotViewBack(); void slotViewEdit(); void slotViewDuplicate(); void slotPersonalView(); void editPersonal(); void viewNext(); void viewPrevious(); void markCurrentAsPersonal(); void writeMail(); void slotBeam(); void beamDone( Ir * ); void slotFind(bool); void search(); void findWrapped(); void findNotFound(); void findFound(); void slotSetCategory( int ); void catChanged(); void updateIcons(); void contactFilterSelected( int idx ); void selectAll(); void configure();private: void receiveFile( const QString & ); void readConfig(); void writeConfig(); QString categoryLabel( int id ); AbLabel *abView(); void showView(); void deleteContacts(QValueList<QUuid> &); void setViewOptions(bool enabled); ContactXmlIO contacts; Categories cats; QPEToolBar *listTools; QToolButton *deleteButton; CategorySelect *catSelect; enum Panes { paneList=0, paneView, paneEdit }; QVBox *listView; AbEditor *abEditor; AbLabel *mView; AbTable *abList; QPEToolBar *searchBar; QLineEdit *searchEdit; QPopupMenu *viewmenu; QAction *actionNew, *actionList, *actionEdit, *actionTrash, *actionFind, *actionBeam, *actionPersonal, *actionMail, *actionDuplicate, *actionSetPersonal, *actionDetails; bool bAbEditFirstTime; int viewMargin; bool checkSyncing(); bool syncing; bool showingPersonal; QMap<int,int> contactMap;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -