diff -r f979ecb2b13e -r c198609911f9 notes/notesui/inc/notescommon.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/notes/notesui/inc/notescommon.h Fri Apr 16 14:57:40 2010 +0300 @@ -0,0 +1,67 @@ +/* +* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: +* Header file for Notes application's common includes. +* +*/ + +#ifndef NOTESCOMMON_H +#define NOTESCOMMON_H + +// Common definitions. +#define NOTES_MAIN_VIEW_XML ":/xml/notesmainview.docml" +#define NOTES_MAIN_VIEW "notesMainView" +#define NOTES_COLLECTION_VIEW_XML ":/xml/notescollectionsview.docml" +#define NOTES_COLLECTION_VIEW "notesCollectionView" +#define NOTES_TODO_VIEW_XML ":/xml/notestodoview.docml" +#define NOTES_TODO_VIEW "notesTodoView" +#define NOTES_FAVORITES_VIEW_XML ":/xml/notesfavoriteview.docml" +#define NOTES_FAVORITES_VIEW "notesFavoriteView" +#define NOTES_NOTE_VIEW_XML ":/xml/notesnoteview.docml" +#define NOTES_NOTE_VIEW "notesNoteView" + +/*! + \class NotesNamespace + + This will have all the common enums and declarations needed by the notes + application. + */ +class NotesNamespace { + +public: + /*! + \enum DataRole + */ + enum DataRole { + IdRole = Qt::UserRole + 100, + TypeRole, + StatusRole, + FavouriteRole + }; + + /*! + \enum NotesViewIds + */ + enum NotesViewIds { + NotesMainViewId, + NotesCollectionViewId, + NotesTodoViewId, + NotesFavoritesViewId, + NotesNoteViewId + }; +}; + +#endif // NOTESCOMMON_H + +// End of file --Don't remove this.