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

📄 inbox.h

📁 python s60 1.4.5版本的源代码
💻 H
字号:
/**
 * ====================================================================
 * inbox.h
 * Copyright (c) 2005-2007 Nokia Corporation
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ====================================================================
 */

#include "Python.h"

#include "symbian_python_ext_util.h"
#include <e32std.h>
#include <eikenv.h>
#include <txtrich.h>

#include <mtclbase.h>
#include <msvapi.h>
#include <mtclreg.h>
#include <msvids.h>
#include <smut.h>

const TInt KMessageBodySize = 512;
const TInt KMessageAddressLength = 512;

class TPyInbCallBack
  {
  public:
    TInt NewInboxEntryCreated(TInt aArg);
  public:
    PyObject* iCb; // Not owned.
  };

#ifndef EKA2
class CInboxAdapter : public CBase, public MMsvSessionObserver
#else
NONSHARABLE_CLASS (CInboxAdapter) : public CBase, public MMsvSessionObserver
#endif
  {
public:
  static CInboxAdapter* NewL(TMsvId&);
  static CInboxAdapter* NewLC(TMsvId&);
  ~CInboxAdapter();
public: 
  void DeleteMessageL(TMsvId aMessageId);
  void GetMessageTimeL(TMsvId aMessageId, TTime& aTime);
  void GetMessageUnreadL(TMsvId aMessageId, TBool& aUnread);
  void SetMessageUnreadL(TMsvId aMessageId, TBool aStatus);
  void GetMessageAddressL(TMsvId aMessageId, TDes& aAddress);
  CArrayFixFlat<TMsvId>* GetMessagesL();  // Passes ownership 
  TBool GetMessageL(TMsvId aMessageId, TDes& aMessage);
  void SetCallBack(TPyInbCallBack &aCb);
private:
  void ConstructL();
  void CompleteConstructL();
private:
  TPyInbCallBack iCallMe;
  TInt iErrorState;
  TBool iCallBackSet;
private:          // from MMsvSessionObserver
  void HandleSessionEventL(TMsvSessionEvent aEvent, TAny* aArg1, TAny* aArg2, TAny* aArg3);
private:
  CMsvSession* iSession;          // msg server session
  CBaseMtm* iMtm;                 // Client MTM
  CClientMtmRegistry* iMtmReg;    // Client MTM registry
  TMsvId iFolderType;
  };
  
//////////////TYPE DEFINITION/////////////////

#define INB_type ((PyTypeObject*)SPyGetGlobalString("INBType"))

struct INB_object {
  PyObject_VAR_HEAD
  CInboxAdapter* inbox;
  TPyInbCallBack myCallBack;
  TBool callBackSet;
};

⌨️ 快捷键说明

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