虫虫首页|资源下载|资源专辑|精品软件
登录|注册

owner-draw

  • So you wanted to add a forms editor to your application? A dialog editor? Something that allows draw

    So you wanted to add a forms editor to your application? A dialog editor? Something that allows drawing of HTML <div>s? Here is a feature rich skeleton (!) to get you started. CDiagramEditor is a package that gives you a basic visual editor intended for vector objects. Although perhaps not sufficient to create a CAD-application, you ll indeed be able to create a dialog editor. The editor itself is derived

    标签: editor application Something wanted

    上传时间: 2014-01-21

    上传用户:BIBI

  • minigui实例源代码

    minigui实例源代码,目标板处理器是s3c2410,包括相应的配置文件。代码包括Dialog box、Simple editor、Bitbmp disp、GDI draw等

    标签: minigui 源代码

    上传时间: 2013-12-27

    上传用户:silenthink

  • 图形显示技巧,这是其中一段代码 procedure TForm1.Button1Click(Sender: TObject) var newbmp:TBitmap i,bmphei

    图形显示技巧,这是其中一段代码 procedure TForm1.Button1Click(Sender: TObject) var newbmp:TBitmap i,bmpheight,bmpwidth:integer //推拉 begin newbmp:=TBitmap.Create newbmp.Width:=image1.Width newbmp.Height:=image1.Height bmpheight:=image1.Height bmpwidth:=image1.Width for i:=0 to bmpheight do begin newbmp.Canvas.CopyRect(Rect(0,bmpheight-i,bmpwidth,bmpheight),image1.Canvas,Rect(0,0,bmpwidth,i)) form1.Canvas.Draw(120,100,newbmp) end newbmp.free end

    标签: procedure TBitmap TObject Button

    上传时间: 2016-01-17

    上传用户:comua

  • * first open client.cpp and search for that USER_MSG_INTERCEPT(TeamInfo) over it u add this

    * first open client.cpp and search for that USER_MSG_INTERCEPT(TeamInfo) over it u add this Code: USER_MSG_INTERCEPT(Health) { BEGIN_READ(pbuf,iSize) me.iHealth = READ_BYTE() return USER_MSG_CALL(Health) } * then we search for int HookUserMsg (char *szMsgName, pfnUserMsgHook pfn) and add this Code: REDIRECT_MESSAGE( Health ) *k now we have the health registered and can read it out i stop this hear know cuz i must thanks panzer and w00t.nl that they helped me with it first time! *ok now we go to int HUD_Redraw (float x, int y) and packing this draw code in it Code:

    标签: USER_MSG_INTERCEPT TeamInfo client search

    上传时间: 2016-01-22

    上传用户:ynzfm

  • Mir2 Actor.pas if (IsFace) and (FaceIndex > -1) then begin d := aFrmMain.WFaceimg.Images

    Mir2 Actor.pas if (IsFace) and (FaceIndex > -1) then begin d := aFrmMain.WFaceimg.Images[FaceIndex * 10 + (FaceFram) mod 8] /// if HorseSurface<>nil then // dSurface.Draw (dx+shiftx, dy + hpy + ShiftY-60, d.ClientRect, d, TRUE) // else if d <> nil then begin if HorseSurface <> nil then dsurface.Draw(SayX - d.Width div 2, dy + hpy + ShiftY - 60, d.ClientRect, d, True) else dsurface.Draw(SayX - d.Width div 2, dy + hpy + ShiftY - 50, d.ClientRect, d, True) end end end

    标签: FaceIndex aFrmMain WFaceimg IsFace

    上传时间: 2016-02-21

    上传用户:ruixue198909

  • PlotSphereIntensity(azimuth, elevation) PlotSphereIntensity(azimuth, elevation, intensity) h = Plo

    PlotSphereIntensity(azimuth, elevation) PlotSphereIntensity(azimuth, elevation, intensity) h = PlotSphereIntensity(...) Plots the intensity (as color) of a number of points on a unit sphere. Input: azimuth (phi), in degrees elevation (theta), in degrees intensity (optional, if not provided, a green sphere is produced) All inputs must be vectors or matrices of the same size. Data does not have to be evenly spaced. When there aren t enough points to draw a smooth sphere, additional points (with color) are interpolated. Output: h - a handle to the patch object The axes are also plotted: positive x axis is red positive y axis is green positive z axis is blue

    标签: PlotSphereIntensity elevation azimuth intensity

    上传时间: 2014-01-14

    上传用户:ruan2570406

  • I made a lot of changed on this object,such as * // 1.Encapsulates all code in one userobjet,s

    I made a lot of changed on this object,such as * // 1.Encapsulates all code in one userobjet,since PB does not * // support "Address of Function" , so we can not set new * // WndProc, just makes the object more easy to use. * // 2.Uses structure array instead of Datastore * // 3.Calc width of menuitem at runtime(MEASUREITEM) * // 4.Draw disabled status

    标签: Encapsulates userobjet changed object

    上传时间: 2014-01-13

    上传用户:lx9076

  • 一个linux进程管理器,具有以下功能: 管理系统的进程

    一个linux进程管理器,具有以下功能: 管理系统的进程, 包括系统中进程的ID,owner ID, effective user ID、 进程之间的关系、各个进程占用的内存大小、进程的状态; 列出各个进程使用的文件描述符,以及它们打开的文件; 列出各个进程当前的信号使用情况, 包括各个阻塞的信号,各个信号的处理(如采用的哪一种处理方式,如采用了Catch function,给出Catch Function的地址或名称); 能对某一进程进行挂起、暂停、终止等操作。统计各个进程的运行时间, 包括system time,user time 与clock(即从开始至终止时间)。 给出各个进程对应的可执行文件名,owner名称,effective名称。 采用图形化界面。 实时统计系统cpu和内存状况

    标签: linux 进程 管理器 管理系统

    上传时间: 2016-07-16

    上传用户:lindor

  • a sample WDM stream class video capture driver that supports two IEEE 1394 digital cameras. The sam

    a sample WDM stream class video capture driver that supports two IEEE 1394 digital cameras. The same driver may be able to support other digital cameras that conform to 1394-based Digital Camera Specification from 1394 Trade Association. Digital camera supported by dcam.sys is a data source that produces digital image data without any other input connection. It manifests itself in a DirectShow graph as a WDM Streaming Capture Device and as a capture filter that has output capture stream supporting image sizes of 320x240 with a UYVY color space. Its de-compressor, Msyuv.dll, is part of the OS delivery, and it can convert image data format from UYVY to RGB16, RGB8, or to a Direct Draw surface if the video card supports UYVY format.

    标签: supports capture cameras digital

    上传时间: 2014-01-13

    上传用户:yph853211

  • 操作说明: 1. 双击RobotView.exe

    操作说明: 1. 双击RobotView.exe,打开应用程序; 2. 菜单中Draw->Block,出现一个对话框,从键盘输入具体值,然后在左边蓝色区域任意位置点击,出现红色的矩形,即设置好障碍物位置,此时右上方区域中相应位置的值从0变为1; 3. 菜单中Draw->RobotPoint,然后在左边蓝色区域任意位置点击,出现绿色的圆,即设置好机器人目前位置; 4. 菜单中Draw->GoalPoint,然后在左边蓝色区域任意位置点击,出现黄色的圆,即设置好目的地位置; 5. 菜单中,Edit->Begin,会在右下方会出现一条从机器人目前位置到目标点的无碰路径。

    标签: RobotView exe 操作说明

    上传时间: 2016-12-11

    上传用户:TF2015