diff -r 594d59766373 -r 7d48bed6ce0c cbs/cbsui/inc/cbsuitopicview.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cbs/cbsui/inc/cbsuitopicview.h Tue Aug 31 15:45:17 2010 +0300 @@ -0,0 +1,100 @@ +/* +* Copyright (c) 2010 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: +* +*/ + +#ifndef CBSUITOPICVIEW_H +#define CBSUITOPICVIEW_H + +#include +#include +#include +#include "mcbsuitopicmonitorobserver.h" + +class HbListWidget; +class MCbs; +class CbsUiViewManager; + +class CbsUiTopicView : public HbView, + public MCbsUiTopicMonitorObserver +{ + Q_OBJECT + +public: + + /** + * Constructor + */ + CbsUiTopicView(); + + /** + * Destructor + */ + ~CbsUiTopicView(); + + /** + * Constructor + * @param server The handler of connecting to Cbs server. + * @param viewManager CbsUiViewManager. + */ + void init(MCbs &server, CbsUiViewManager &viewManager); + +public: // From MCbsUiTopicMonitorObserver + /** + * Topic list or topic messages are changed. + * + * @param aEvent reason for event + * @param aTopicNumber Topic number, which caused the event + */ + virtual void TopicListChangedL(TCbsTopicListEvent aEvent, + TCbsTopicNumber aTopicNumber); + + /** + * Reload Messages + * + * @param topicNumber topic number + */ + void reloadMessages(TCbsTopicNumber topicNumber); + +private: + /** + * It defines the type for message handle lists. + */ + //typedef CArrayFixFlat< TCbsMessageHandle > TCbsUiMessageHandleList; + + void createComponents(); + void addMessage(const TCbsMessage &message, const QString &msgName); + +private: // Data + // Not own + MCbs *mServer; + + // Not own + CbsUiViewManager *mViewManager; + + // Own + HbListWidget *mTopic; + + //TCbsUiMessageHandleList* mMsgHandles; + TCbsTopicNumber mCurrentTopicNumber; + + // Previous Message(not own) + HbAction *mPrevious; + + //Previous Message(not own) + HbAction *mBack; +}; + +#endif // CBSUITOPICVIEW_H