• 大小: 227KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-06-23
  • 语言: 其他
  • 标签: wince  

资源简介

上次发错了,对不住大家,下过的重新免分下载! IImage组件是在wince5.0新加入的,它可以调用公共接口来显示多种图片格式(jpg,png,gif,bmp),并且还可以扩展用以支持更多图片.

资源截图

代码片段和文件信息

/*===========================================================================

FILE: iimageusage.c

SERVICES: Sample applet using AEE

DEscriptION
  This file contains usage examples of the IImage interface. IImage interface
  functions allow the user to display bitmap objects. 

PUBLIC CLASSES:  
   N/A


       Copyright ?2000-2001 QUALCOMM Incorporated.
                  All Rights Reserved.
                   QUALCOMM Proprietary/GTDR
===========================================================================*/

/*===============================================================================
                     INCLUDES AND VARIABLE DEFINITIONS
=============================================================================== */
// Mandatory includes
#include “AEEAppGen.h“ // AEEapplet declaration
#include “AEEUsageAppIDs.h“  // Class IDs of usage apps (including this one)

#include “AEE.h“ // Standard AEE Declarations
#include “AEEShell.h“ // AEE Shell Services
#include “AEEDisp.h“ // AEE Display Services
#include “AEEStdLib.h“  // AEE StdLib Services

// Services used by app
#include “AEEFile.h“ // AEEFile Services
#include “AEEMenu.h“ // Menu Services

// App resource header generated by BREW ResourceEditor.
#include “image_res.h“

/*===========================================================================

                      PUBLIC DATA DECLARATIONS

===========================================================================*/

/*-------------------------------------------------------------------
            Type Declarations
-------------------------------------------------------------------*/
// IImage app struct. This is the main struct for this applet. This will hold 
// all the data members that need to be remembered throughout the life of
// the applet. 
// THE FIRST DATA MEMBER OF THIS STRUCT MUST BE AN AEEapplet object. 
// This is a critical requirement which is related to an applet being
// dynamically loaded. The app developers should add their data members
// following the AEEapplet data member.
typedef struct _CIImageApp {
   AEEapplet       a;
   IMenuCtl *  m_pIMenu;
   IImage *   m_pIImage;
} CIImageApp;

/*-------------------------------------------------------------------
            Function Prototypes
-------------------------------------------------------------------*/
// Mandatory function:
// App Handle Event function
static boolean ImageApp_HandleEvent(Iapplet * pi AEEEvent eCode uint16 wParam uint32 dwParam);

// App specific data alloc-init/free functions
static boolean IImage_InitAppData(Iapplet* pMe);
static void IImage_FreeAppData(Iapplet* pMe);

static void BuildMainMenu(CIImageApp *pMe);
static void IImageUsage (CIImageApp *pMe uint16 wParam);
static void DisplayEvent (CIImageApp *pMe uint16 wParam);
static void DisplayOutput(CIImageApp * pMe int nline char *pszStr);

/*-----------------------------------------------

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        662  2001-12-17 15:54  iimage\iimage\BouncingSquares.bmp

     文件        166  2001-12-17 15:54  iimage\iimage\BrowserIcon.bmp

     文件        478  2001-12-17 15:54  iimage\iimage\BrowserIconAnim.bmp

     文件     237635  2001-12-17 17:27  iimage\iimage\iimage.dll

     文件      10322  2001-12-17 15:54  iimage\iimage\iimage.mak

     文件      63334  2001-12-17 15:54  iimage\iimage\iimageusage.c

     文件      12092  2001-12-17 18:07  iimage\iimage\iimageusage.mod

     文件       2386  2001-12-17 15:54  iimage\iimage\image.bar

     文件       4096  2001-12-17 15:54  iimage\iimage\image.bri

     文件       4836  2001-12-17 15:54  iimage\iimage\image.dsp

     文件        693  2001-12-17 15:54  iimage\iimage\image.dsw

     文件        366  2001-12-17 15:54  iimage\iimage\image_res.h

     文件        462  2001-12-17 15:54  iimage\iimage\LowerLeftBlack.bmp

     文件        462  2001-12-17 15:54  iimage\iimage\LowerRightBlack.bmp

     文件       1662  2001-12-17 15:54  iimage\iimage\sample.bmp

     文件      33792  2009-08-16 17:22  iimage\iimage\image.ncb

     文件      33792  2009-08-16 17:22  iimage\iimage\Debug\vc60.idb

     文件      28672  2009-08-16 17:22  iimage\iimage\Debug\vc60.pdb

     文件       1727  2009-08-16 17:22  iimage\iimage\image.plg

     文件      49664  2009-08-16 17:22  iimage\iimage\image.opt

     文件    2359350  2009-05-26 14:00  iimage\iimage\12.bmp

     目录          0  2009-08-16 17:22  iimage\iimage\Debug

    ...D..R         0  2005-06-10 09:42  iimage\iimage

     目录          0  2009-08-16 17:22  iimage

----------- ---------  ---------- -----  ----

              2846867                    25


评论

共有 条评论