Welcome![Sign In][Sign Up]
Location:
Search - the first time manager

Search list

[Game ProgramResourceMan

Description: 这个是我第一次完成的一个简单的3D ALIEN SHOOTING GAME的RESOURCE MANAGER部分,大家可以看看,然后提点意见~THX -this is the first time I completed a simple 3D ALIEN R GAME SHOOTING ESOURCE MANAGER part, we can see, then LONDON ~ THX
Platform: | Size: 439619 | Author: 衰男 | Hits:

[Other resourceVC6DrawBezier

Description: 这是用VC6.0编写的绘制三次Bezier曲线的程序,使用MFC框架文档视图结构。程序除实现三次Bezier曲线的绘制,还实现了点,直线,圆的绘制,可做为学习计算机图形算法的参考。与其它Bezier曲线绘制程序的不同是,本程序实现了Bezier曲线上型值点的计算显示。程序中编写了Bezier曲线类来完成Bezier曲线的绘制,并能对绘制的曲线数据进行保存与打开。对学习文件操作也有一定帮助。这是我第一次上传源码,有什么不妥之处还请管理员指点。谢谢!-VC6.0 prepared by the cubic Bezier curve drawing procedures, use MFC framework document View structure. In addition to procedures to achieve cubic Bezier curve drawing, but also realized the point, line, round mapping, can be used as learning computer graphics algorithm reference. And other Bezier curves of different procedures, The program of Bezier curve-point value calculations show. Procedures prepared Bezier curves like to complete the Bezier curve drawing, and is able to draw the curve data preservation and open. Operation right to study the documents will also help. This is the first time I uploaded the source code, what is wrong with this manager also requested guidance. Thank you!
Platform: | Size: 174818 | Author: 王占辉 | Hits:

[Embeded-SCM DevelopMSc-AnandPendem-RajeshGarikipati

Description: First of all we would like to thank God Almighty for giving us the strength and confidence in pursing the ambitions. We would like to thank our Examiner Professor Axel Jantsch for allowing us to do this under his guidance and encouragement. At the same time we would like to mention our sincere thanks to Mr. Said Zainali, Manager of FRAME ACCESS AB for giving all the required equipment and the technical support which helped us to finish this thesis. We would like to mention our gratitude to our fellow VACS team members who helped us a lot during difficult times.
Platform: | Size: 3225450 | Author: 崔为 | Hits:

[GUI Developbrew window manager

Description:

 

Objective
This topic describes how to create a windowed application that will share the display with other applications.
Brew® MP windowed applications need to be written differently than traditional Brew MP applications. Traditional Brew MP applications, when running in the foreground, occupy full screen space and can modify the display at any time. In the windowing framework, multiple applications share the display at the same time and are not allowed to modify the display arbitrarily. A windowed application also needs to create one or more widgets to be used to create the windows.
A windowed application needs to:
·                  Create and initialize one or more widgets to be passed to IWindowMgr_CreateWindow().
The application can implement its own IWidget, or it can make use of an existing IWidget.
·                  Handle the EVT_APP_START_WINDOW event (and create a window).
·                  Implement handlers for visibility changes, focus changes, and extent changes. The implementation of these handlers is dependent on the details of the application.
·                  Draw in two stages:
·                                  Tell the container that drawing is necessary (ICONTAINER_Invalidate()).
·                                  Draw only when told to draw by the container (IWIDGET_Draw()).
Note: A windowed application should not call any functions that modify IDisplay directly. This includes explicit IDisplay function calls or implicit updates, such as calls to IIMAGE_Draw() or ICONTROL_Redraw(). Drawing should happen only on demand, for example, when IWIDGET_Draw() is called for the widget used to create the window. Existing Widget based applications follow these guidelines and, with minor modifications, can be ported to the windowing framework.
Event handling
A windowed application must respond to these events:
EVT_APP_START_WINDOW and EVT_APP_START
A window-based application receives EVT_APP_START_WINDOW first. If the application returns TRUE for this event, the application does not receive EVT_APP_START. If an application needs to support both the environments (window based and non-window based), it should handle both events.
When the application receives EVT_APP_START_WINDOW, it should create one or more windows.
If creation of IWindowMgr0 fails while handling EVT_APP_START_WINDOW, the application should assume that the platform does not support window-based applications. In this case, the application should return FALSE and continue the application logic in the code for EVT_APP_START.
EVT_APP_SUSPEND and EVT_APP_RESUME
After an application returns TRUE for EVT_APP_START_WINDOW, it will not receive EVT_APP_SUSPEND and EVT_APP_RESUME as non-windowed Brew MP applications do. Instead, the application must check for window status events that are sent to the widget through EVT_WDG_SETPROPERTY events. For EVT_WDG_SETPROPERTY events, wParam indicates which property was set, and dwParam specifies the value of the property. When the AEEWindowMgrExt_PROPEX_STATE property has a value of AEEWindowMgrExt_STATE_VISIBLE, the window is visible.
EVT_WDG_WINDOWSTATUS
The EVT_WDG_WINDOWSTATUS event is sent to a widget to notify it about various window related status messages. AEEWindowStatus.h contains information on the meaning of various status messages.
Sample code location

ZIP filename
Location
Run app
hellowindowapp
Brew MP Library
·                       Download and extract the ZIP file.
·                       Compile the app.
·                       Run it on the Brew MP Simulator.

Example of a windowed application
In the hellowindowapp sample, HelloWindowApp_HandleEvent handles the EVT_APP_START_WINDOW event and creates soft key and pop-up windows:
   case EVT_APP_START_WINDOW:   
      DBGPRINTF("EVT_APP_START_WINDOW");
 
      // Create the softkey and popup windows
      HelloWindowApp_CreateSoftkey(pMe);
      HelloWindowApp_CreateOrActivatePopup(pMe);
 
      // Handling this event tells Brew that we are a windowing
      // application.
      return TRUE;  
HelloWindowApp_CreateSoftkey() creates the soft key widget, sets the color text of the widget, then calls HelloWindowApp_CreateWindow() to create the window.
   WidgetWindow *pWindow = &pMe->softkeyWindow;
  
   if (pWindow->piWindowWidget != NULL) return;
   pWindow->pszDbgName = "Softkey";
   pWindow->pMe = pMe;
  
   (void) ISHELL_CreateInstance(pMe->applet.m_pIShell, AEECLSID_SoftkeyWidget,
            (void **) &pWindow->piWindowWidget);
   if (pWindow->piWindowWidget == NULL) return;
 
   {
      WidgetExtent extent = {0, HWA_SOFTKEY_HEIGHT};
      IWidget_SetExtent(pWindow->piWindowWidget, &extent);
   }
  
   (void) IWidget_SetBGColor(pWindow->piWindowWidget, MAKE_RGBA(200,200,200,255));
  
   // Now set the softkeys text
   {
      IWidget *piTextWidget = NULL;
      (void) IWidget_GetSoftkey(pWindow->piWindowWidget, PROP_SOFTKEY1, &piTextWidget);
     
      if (piTextWidget != NULL) {
         (void) IWidget_SetText(piTextWidget, L"Hover", TRUE);
      }
      RELEASEIF(piTextWidget);
 
      (void) IWidget_GetSoftkey(pWindow->piWindowWidget, PROP_SOFTKEY2, &piTextWidget);
      if (piTextWidget != NULL) {
         (void) IWidget_SetText(piTextWidget, L"Close", TRUE);
      }
      RELEASEIF(piTextWidget);
   }
 
   HelloWindowApp_CreateWindow(pMe, pWindow, AEEWindowMgrExt_CLASS_Softkey);  
HelloWindowApp_CreateWindow() creates the soft key window, as follows:
   int result;
   uint32 winId;
   AEEWindowProp propList[1];
  
   // Set custom window handler
   HANDLERDESC_Init(&pWindow->hdHandler, HelloWindowApp_WindowHandler, pWindow, NULL);
   IWIDGET_SetHandler(pWindow->piWindowWidget, &pWindow->hdHandler);
        
   propList[0].id = AEEWindowMgrExtProp_CLASS;
   propList[0].pbyLen = sizeof(winClass);
   propList[0].pby = (void *) &winClass;
     
   result = IWindowMgr_CreateWindow(pMe->piWindowMgr, (IQI*) (void *) pWindow->piWindowWidget,
      propList, ARR_SIZE(propList), &winId);
 
   if (result != SUCCESS) {
      DBGPRINTF("Window creation failed for %s: %d", pWindow->pszDbgName, result);
      HelloWindowApp_DestroyWindow(pWindow);
   } else {
      DBGPRINTF("Window %s created: id=%d", pWindow->pszDbgName, winId);
   }
HelloWindowApp_CreateOrActivatePopup() creates the widget for the pop-up window, then calls HelloWindowApp_CreateWindow() to create the pop-up window.
   pWindow->piWindowWidget = HelloWindowApp_CreateAndInitImageWidget(
                                pMe,
                                "popups.main" // Image as defined in appinfo.ini
                             );
 
   if (pWindow->piWindowWidget == NULL) return;
 
   {
      WExtent extent = {HWA_POPUP_WIDTH, HWA_POPUP_HEIGHT};
      IWIDGET_SetExtent(pWindow->piWindowWidget, &extent);
   }
 
   HelloWindowApp_CreateWindow(pMe, pWindow, AEEWindowMgrExt_CLASS_Popup);
Related information
·                  See Brew MP Widgets Technology Guide: Creating a Widgets application
·                  See Brew MP API Reference

Base version:
Brew MP 1.0
Tested version:
Brew MP 1.0
Phone tested:
No

 

Platform: | Size: 439828 | Author: bluecrest | Hits:

[Game ProgramResourceMan

Description: 这个是我第一次完成的一个简单的3D ALIEN SHOOTING GAME的RESOURCE MANAGER部分,大家可以看看,然后提点意见~THX -this is the first time I completed a simple 3D ALIEN R GAME SHOOTING ESOURCE MANAGER part, we can see, then LONDON ~ THX
Platform: | Size: 439296 | Author: 衰男 | Hits:

[Graph DrawingVC6DrawBezier

Description: 这是用VC6.0编写的绘制三次Bezier曲线的程序,使用MFC框架文档视图结构。程序除实现三次Bezier曲线的绘制,还实现了点,直线,圆的绘制,可做为学习计算机图形算法的参考。与其它Bezier曲线绘制程序的不同是,本程序实现了Bezier曲线上型值点的计算显示。程序中编写了Bezier曲线类来完成Bezier曲线的绘制,并能对绘制的曲线数据进行保存与打开。对学习文件操作也有一定帮助。这是我第一次上传源码,有什么不妥之处还请管理员指点。谢谢!-VC6.0 prepared by the cubic Bezier curve drawing procedures, use MFC framework document View structure. In addition to procedures to achieve cubic Bezier curve drawing, but also realized the point, line, round mapping, can be used as learning computer graphics algorithm reference. And other Bezier curves of different procedures, The program of Bezier curve-point value calculations show. Procedures prepared Bezier curves like to complete the Bezier curve drawing, and is able to draw the curve data preservation and open. Operation right to study the documents will also help. This is the first time I uploaded the source code, what is wrong with this manager also requested guidance. Thank you!
Platform: | Size: 174080 | Author: 王占辉 | Hits:

[Embeded-SCM DevelopMSc-AnandPendem-RajeshGarikipati

Description: First of all we would like to thank God Almighty for giving us the strength and confidence in pursing the ambitions. We would like to thank our Examiner Professor Axel Jantsch for allowing us to do this under his guidance and encouragement. At the same time we would like to mention our sincere thanks to Mr. Said Zainali, Manager of FRAME ACCESS AB for giving all the required equipment and the technical support which helped us to finish this thesis. We would like to mention our gratitude to our fellow VACS team members who helped us a lot during difficult times.
Platform: | Size: 3225600 | Author: 崔为 | Hits:

[ERP-EIP-OA-Portallab

Description: 图书管理 pb+sql library management system 安装说明 1。SQL数据源文件:new_data.mdf,new_log.ldf.第一次使用时需要打开 SQL2000的企业管理器,在‘所有任务’里选择‘附加数据库’。 2。要把test.ini 放到与本程序相同的目录,然后修改该文件里面的服务器名.比如你的数 据库名是ddd,则ServerName = ddd . 3。运行tsglsystem.exe 提示:第一次进入本系统,可以使用如下帐号: 管理者帐号:0002 密码:0002 (只能输入书编号借书) 读者号:从 0001 密码:0001(能借书)-Library management pb+ Sql library management system to install 1. SQL data source file: new_data.mdf, new_log.ldf. The first time need to open the SQL2000 Enterprise Manager, in the All Tasks, choose attach database. 2. Test.ini to put with the same directory, and then modify the file inside the server name. For example, your database name is ddd, while ServerName = ddd .3. Running tsglsystem.exe Tip: the first time to enter the system, you can use the following account: Account Managers: 0002 Password: 0002 (can only enter the book code library) No. reader: From 0001 Password: 0001 (to library)
Platform: | Size: 1249280 | Author: 1285883 | Hits:

[DirextXPidMpeg1PIDTest

Description: PidMpeg1: 插件的实现程序。该插件对Filter Graph Manager进行扩展,让它支持 IMPEG1Builder接口。使用该接口可以为MPEG1文件自动构建播放用的Filter Graph (使用DirectShow集成的MPEG1相关的一系列Filter)。 PIDTest: 上述插件的使用演示程序。当用户选择一个要播放的媒体文件时,首先 判断它是不是MPEG1文件,如果是,则为它构建完整的播放用的Filter Graph,然后 就可以播放它。 打开PIDTest目录下的PIDTest.dsw文件可以同时浏览上述两个项目。-PidMpeg1: the realization of process plug-ins. The Filter Graph Manager plug-ins to expand it to support IMPEG1Builder interface. The use of the interface can play MPEG1 file is automatically used to build Filter Graph (using DirectShow related MPEG1 integrated series of Filter). PIDTest: demonstration of the above-mentioned procedures for the use of plug-ins. When the user selects to play a media file, first of all to determine it is not MPEG1 file, and if so, was it to build a complete player with the Filter Graph, and then you can play it. PIDTest open PIDTest.dsw directory files can be browsed at the same time these two projects.
Platform: | Size: 24576 | Author: SmarSare | Hits:

[OS DevelopMemoryManager

Description: 内存管理模拟器,利用MFC模拟实现了内存的管理操作--内存分配和释放;不同内存分区利用不同颜色区分;采用首次适应算法实现。-Memory management simulator, the use of MFC to achieve a simulated memory management operations- memory allocation and release different memory partition to use to distinguish between different colors algorithm used to adapt the first time.
Platform: | Size: 3679232 | Author: Jim | Hits:

[ERP-EIP-OA-Portalmanager

Description: 考虑一个这样的机房管理系统:假设我们对机器服务进行收费,如果每个用户为单位时间愿意支付的费用不同,则可以用支付费用作为优先级,优先级越高的越先得到服务,而如果两个用户优先级相同,则先到的先服务。 使用以上定义的优先队列来实现该系统。 系统提供一个菜单让管理员操作,管理员可以做如下操作: 增加用户入队列,每个用户有相应的优先级(愿意付费的等级) 用户出队列(为用户分配机器),出队列的用户需为优先级最高或到达最早的用户。-Consider such a room management system: Suppose we charge for services on the machine, if each user is willing to pay per unit of time different, you can use pay as a priority, the more higher priority get service first, and if two users have the same priority, the first of the first service. Defined above using the priority queue to implement the system. System allows administrators to operate a menu, the administrator can do the following: increase the user into the queue, each user has the appropriate priority (willing to pay for the class) the user out of the queue (for the user assigned the machine), a queue of users need to reach for the highest priority or the first user.
Platform: | Size: 1024 | Author: 范征弘 | Hits:

[DSP programThe-first-time-as-a-project-manager

Description: 送给第一次担当项目经理的兄弟姐妹,内容还是很实用的,比较有帮助-Given for the first time brothers and sisters as project manager, content is still very useful, more helpful
Platform: | Size: 125952 | Author: w | Hits:

[JSP/JavaLockScreenActivity

Description: Android锁屏源码,Lock Screen Activity例子。了解一下流程:首先我们要获得android设备管理代理,LockScreen 继承自 DeviceAdminReceiver,得到当前设备管理器有没有激活,如果没有激活的话,就去提示用户激活(第一次运行程序时),如果已经激活的话,就执行立即锁屏,killMyself ,锁屏之后就立即kill掉我们的Activity,避免资源的浪费。-The Android lock screen source code, Lock Screen Activity example. Understand process: first of all, we want to obtain the Android equipment management agency, LockScreen inherits from DeviceAdminReceiver, get the current device manager has no activation, without activation of words, to prompt the user to activate (for the first time when you run the program, if already activated ), executes immediately lock screen, killMyself, after the lock screen immediate kill off our Activity, avoid the waste of resources.
Platform: | Size: 15360 | Author: 周文 | Hits:

[Windows DevelopLockScreenActivity

Description: Android锁屏源码,Lock Screen Activity例子。了解一下流程:首先我们要获得android设备管理代理,LockScreen 继承自 DeviceAdminReceiver,得到当前设备管理器有没有激活,如果没有激活的话,就去提示用户激活(第一次运行程序时),如果已经激活的话,就执行立即锁屏,killMyself ,锁屏之后就立即kill掉我们的Activity,避免资源的浪费。-Android lock screen source, Lock Screen Activity examples. Look at the process: First of all, we want to get the android device management agent, LockScreen inherited from DeviceAdminReceiver current Device Manager is not activated, if activated, go to (the first time you run the program prompts the user to activate) If you have activated , on the implementation of the to immediately lock screen killMyself lock screen immediately kill off our Activity avoid the waste of resources.
Platform: | Size: 15360 | Author: 叶如英 | Hits:

[androidLockScreen

Description: Android锁屏源码,Lock Screen Activity例子。了解一下流程:首先我们要获得android设备管理代理,LockScreen 继承自 DeviceAdminReceiver,得到当前设备管理器有没有激活,如果没有激活的话,就去提示用户激活(第一次运行程序时),如果已经激活的话,就执行立即锁屏,killMyself ,锁屏之后就立即kill掉我们的Activity,避免资源的浪费。-Android lock screen source, Lock Screen Activity examples. Look at the process: First of all, we want to get the android device management agent, LockScreen inherited from DeviceAdminReceiver current Device Manager is not activated, if activated, go to (the first time you run the program prompts the user to activate) If you have activated , on the implementation of the to immediately lock screen killMyself lock screen immediately kill off our Activity avoid the waste of resources.
Platform: | Size: 14336 | Author: pudn1316 | Hits:

[File FormatQt_Creator-layout-manager

Description: 上篇讲解了如何在Qt Creator中添加资源文件,并且为菜单添加了图标。这次我们先对那个界面进行一些完善,然后讲解一些布局管理器的知识。-Ok, explained how to add resource files in Qt Creator, and to add the icon menu.This time we first to some of the interface, and then explain some knowledge of layout manager.
Platform: | Size: 969728 | Author: 小皮哥 | Hits:

[Delphi VCLExcelimprotAccess

Description: 在Delphi中编译工程的时候,经常会出现像 File not found ExceptionLog.dcu 的状况。 一、将ExceptionLog去掉或注释掉,再进行编译。 二、若第一种不行,则是Delphi的环境配置问题,也是该工程配置问题。解决办法: 在Project Manager中右击该工程,选择options,在弹出的对话框中选择Directories/Conditionals.在右边进行相应的设置,这里主要是设置,单元文件编译后生成的DCU文件所存放的位置。主要设置两项,一是Unit output directory将其浏览到你所要放置的目录中,然后下面的Search path与上面设置的路径一致。这样在编译的时候,Delphi环境就可以找到编译后的文件了。-In Delphi compiler works, it often appears as File not found ExceptionLog.dcu situation. First, the ExceptionLog remove or comment, and then compile. Second, if the first one does not work, it is a configuration problem Delphi environment, but also the project configuration problems. The solution: Right-click on the project in the Project Manager, the options, in the dialog box, the Directories/Conditionals. The right of the appropriate settings, here is mainly set up after the unit file compiler generated DCU file storage location. Two main settings, one Unit output directory to browse to the directory where you want to place, and then the following path Search path consistent with the above settings. So at compile time, Delphi environment you can find the file compiled.
Platform: | Size: 470016 | Author: lanbing | Hits:

[Web Serverblueyrgbs

Description: 蓝色伊人粉色简单留言本 超级管理: 第一次使用续打开:url/adminsetup.asp 先输入默认密码:blueyr,然后系统会提示你设置新密码。 以后用新密码登陆url/manager.asp管理即可-Iraqis blue pink simple guestbook Super Management: The first time you use continued open: url/adminsetup.asp Enter the default password: blueyr, then the system will prompt you to set a new password. After using the new password url/manager.asp management to
Platform: | Size: 51200 | Author: mcujc735 | Hits:

[WEB CodeBICQ

Description:   1、首先BICQ软件跟QQ和MSN有很多类似的地方。因为现在有很多用户群在使用QQ和MSN,所以我们的BICQ做成QQ和MSN的风格对大家的适应性非常的强。   2、客户资料设置:客户端有自己的资料设置,联系方式,BICQ秀,而且还有备注设置。这些都充分借鉴了QQ的特性。   3、客户端的聊天窗口,跟QQ一样,可以自己设置字体,颜色,文字大小。可以显示对方IP地址。   4、群功能:群功能能够跟多位好友共同讨论,相当于聊天室。这是MSN所没有的。   5、客户端有自己强大的好友,消息管理器。同时可以接收服务器发来的系统消息,HTML广播。-1, first BICQ software with MSN and QQ have many similar places. Because now there are a lot of user groups in the use of QQ and MSN, so our BICQ made QQ and MSN style is very strong adaptability to all of us. 2, customer information settings: the client has its own data set, contact, BICQ show, but also note the settings. These are fully draw on the characteristics of QQ. 3, the client s chat window, like QQ, you can set the font, color, text size. Can show each other IP address. 4, group function: group function can be discussed with a number of friends, equivalent to chat room. This is what MSN does not have. 5, the client has its own strong friend, message manager. At the same time can receive system messages sent to the server, HTML radio.
Platform: | Size: 1724416 | Author: yq | Hits:

[OpenCVtest

Description: 将VS第一次配置时OpenCV的项目属性表保存下来,每次新建项目时引用即可。右击新建的项目,选择属性管理器,在Debug目录下添加现有项,选择该压缩文件中的OpenCV_Debug。这里配置的OpenCV的版本是2.4.11。(Save the item property table of OpenCV when VS is configured for the first time, and reference every time the new project is built. Right click on the new project, select property manager, add the existing items in the Debug directory, and select the OpenCV_Debug in the compressed file. The version of the OpenCV configured here is 2.4.11.)
Platform: | Size: 18432 | Author: 南极熊 | Hits:
« 12 »

CodeBus www.codebus.net