CN100435096C - Image processing method based on C language micro operation system - Google Patents

Image processing method based on C language micro operation system Download PDF

Info

Publication number
CN100435096C
CN100435096C CNB2006101481377A CN200610148137A CN100435096C CN 100435096 C CN100435096 C CN 100435096C CN B2006101481377 A CNB2006101481377 A CN B2006101481377A CN 200610148137 A CN200610148137 A CN 200610148137A CN 100435096 C CN100435096 C CN 100435096C
Authority
CN
China
Prior art keywords
window
function
request
draw
client
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Expired - Fee Related
Application number
CNB2006101481377A
Other languages
Chinese (zh)
Other versions
CN1987779A (en
Inventor
张钰
魏小婷
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Shanghai GMT Digital Technology Co., Ltd.
Original Assignee
Central Academy of SVA Group Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Central Academy of SVA Group Co Ltd filed Critical Central Academy of SVA Group Co Ltd
Priority to CNB2006101481377A priority Critical patent/CN100435096C/en
Publication of CN1987779A publication Critical patent/CN1987779A/en
Application granted granted Critical
Publication of CN100435096C publication Critical patent/CN100435096C/en
Expired - Fee Related legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Abstract

A graphic method of the micro-operating system based on C language, and it includes request and acquired process. The realization of request contains the transmission of client's request and the acceptance of the service. The acquired process equally contains the transmission of client's request and the read back of information to client. This invention provides the graphic method of the micro-operating system based on C language, and it applies the present graphic view into the mini platform running the operation system of uCos-II which improve the augmentability and transplantability of the system. It realizes the display, choose, modify and other operation of the interface on the screen, and accomplishes the information exchange between the tip case and the users.

Description

Graphic processing method based on the C language micro operation system
Technical field
The present invention relates to a kind of graphic processing method based on uCos-II (MicroC-OS-II is based on the micro operation system of C language) operating system.
Background technology
The research of graphic user interface is the key areas of embedded system research.Along with the development of embedded device and the raising of software and hardware condition, embedded system is also more and more urgent to the demand of high-performance, highly reliable graphics system.Because most embedded device is all more limited on processing power and storage space, compare with the graphical user system on the General System, the requirement of the graphic system under the embedded system is higher, need possess light-duty, take that resource is few, high-performance, high reliability, characteristics such as configurable.
Summary of the invention
A kind of graphic processing method provided by the invention based on the C language micro operation system, the Modern Graphic windowing environment is incorporated on the small-sized platform of operation uCos-II operating system, the extensibility and the portability of system have been improved, realize user's operations such as demonstration, selection, modification at interface at screen by bottom layer driving, finish the mutual of set-top-box server and user-to-user information.
In order to achieve the above object, the invention provides a kind of graphic processing method based on uCos-II operating system, it comprises request process and incident acquisition process;
The process that the user end to server end sends request comprises following steps:
Step 1.1, client send request, specifically comprise following two steps:
The various mapping operations of step 1.1.1, client all can use the AllocReq function to produce corresponding request, and described request is pressed into request queue, and requires server end to finish corresponding concrete operations;
After step 1.1.2, request queue have by the time all been filled up, all requests in the request queue are passed to server end, request is waited in refresh requests formation then again;
Step 1.2, server end receive request, specifically comprise following two steps:
The GsSelect function of step 1.2.1, server end is responsible for receiving the request that client sends, call event response according to request type and handle function G sHandleClient, be used to resolve the request with distribution customer terminal, obtain the entry address of corresponding built-in function, call this built-in function;
After a series of built-in functions that step 1.2.2, server end call were finished different requests, if there are data to return, then function directly returned to client to result data;
Client obtains incident and comprises following steps to the process that server end sends event request (comprising event types such as keyboard, mouse, graphic presentation):
Step 2.1, since graphic system in operational process, constantly adopt the mode of interrupting to obtain event information, the incident (comprising that keyboard, mouse, Exposure are event types such as graphic presentation) that client at first uses the GrSelectEvent function to select client to respond;
Step 2.2, client call interface function GrGetNextEvent obtain the incident of man-machine inputs such as external remote, keyboard;
Step 2.3, client call GrRequestClientData function generate the data of concrete event request, send request to server end; Client call GrSendClientData function is pressed into event request and sends the request msg formation;
Step 2.4, hang-up client are blocked outside input, wait pending data;
Step 2.5, user write variety of event processing function according to own to the response demand of incident, call this function afterwards, finish user's mapping operation.
1), window operation a series of built-in functions of the request that sends in order to client in the completing steps 1.1, and the built-in function among the described step 1.2.2 comprises::
1.1), the establishment and the deletion of window:
Use GrNewWindow function creation window, function parameter following (back is a parameter interpretation):
GR_WINDOW_ID parent // parent window number;
The coordinate of GR_COORD x // on parent window;
GR_SIZE width // window width;
GR_SIZE height // window height;
GR_SIZE bordersize // window hem width;
GR_COLOR background // window background look;
GR_COLOR bordercolor // window limit look;
Use void GrDestroyWindow (GR_WINDOW_ID wid) function to delete window, wid is the window ID that will delete;
1.2), the demonstration of window, hide and move:
GrMapWindow function: be used for display window;
GrUnmapWindow function: be used for hide window;
GrMoveWindow function: be used for moving window;
2), graphing in the window:
Draw and at first will understand G context;
2.1), the contextual function of establishment, deletion, copy pattern used in the built-in function is as follows:
GrNewGC: create and the distribution G context;
GrDestoryGC: deletion G context;
GrCopyGC: copy pattern context;
After creating a G context, function returns the ID of a G context, is used as the parameter of graphics system interface;
2.2), other drawing functions are as follows:
GrClearWindow: remove window;
GrPoint: draw;
GrLine: setting-out;
GrRect: draw rectangle;
GrFillRect: draw and fill rectangle;
GrEllipse: draw circle/ellipse;
GrFillEllipse: draw filled ellipse;
GrArc: draw arc;
GrArcAngle: formulate arc top and angle;
GrPoly: draw polygon;
GrFillPoly: filled polygon;
GrDrawImageFromFile: from the window that Loads Image in the file;
GrDrawImageFromBuffer: from the window that Loads Image in the buffer zone;
GrCopyArea: the rectangular area of a certain window is copied to another window.
Built-in function among the described step 1.2.2 comprises following:
1), window operation:
1.1), the establishment and the deletion of window:
Use GsNewWindow function creation window, function parameter following (back is a parameter interpretation):
GS_WINDOW_ID parent // parent window number;
The coordinate of GS_COORD x // on parent window;
GS_SIZE width // window width;
GS_SIZE height // window height;
GS_SIZE bordersize // window hem width;
GS_COLOR background // window background look;
GS_COLOR bordercolor // window limit look;
Use void GrDestroyWindow (GR_WINDOW_ID wid) function to delete window, wid is the window ID that will delete.
1.2), the demonstration of window, hide and move:
GsMapWindow: be used for display window;
GsUnmapWindow: be used for hide window;
GsMoveWindow: be used for moving window;
2), graphing in the window;
Draw and at first will understand G context;
2.1), the contextual function of establishment, deletion, copy pattern used in the built-in function is as follows:
GsNewGC: create and the distribution G context;
GsDestoryGC: deletion G context;
GsCopyGC: copy pattern context;
After creating a G context, function returns the ID of a G context, is used as the parameter of graphics system interface.
2.2), other drawing functions are as follows:
GsClearWindow: remove window;
GsPoint: draw;
GsLine: setting-out;
GsRect: draw rectangle;
GsFillRect: draw and fill rectangle;
GsEllipse: draw circle/ellipse;
GsFillEllipse: draw filled ellipse;
GsArc: draw arc;
GsArcAngle: formulate arc top and angle;
GsPoly: draw polygon;
GsFillPoly: filled polygon;
GsDrawImageFromFile: from the window that Loads Image in the file;
GsDrawImageFromBuffer: from the window that Loads Image in the buffer zone;
GsCopyArea: the rectangular area of a certain window is copied to another window.
Incident in the described step 2.1 comprises:
1), the input of telepilot: the key code information that has comprised telepilot in the request.
2), the input of keyboard: the key code information that has comprised keyboard in the request.
3), Exposure incident: comprised the current ID that is presented at the window of the graphical interfaces the superiors in the request.
Event handling function in the above-mentioned steps 2.5 comprises:
1), function is handled in telepilot input and keyboard input response: call corresponding menu window according to key assignments and draw function.
2), draw " system's setting " menu: comprise second-level menus such as cipher control, time setting, audio frequency and video control, diversified menu setting, default setting, software upgrading.
3), draw " editing program " menu: comprise second-level menus such as editing program tabulation, editor's hobby program, preserved program management.
4), draw " program searching " menu: comprise second-level menus such as manual search, full frequency band are searched for automatically, the automatic search of frequency-division section.
5), draw " program guide " menu: show second-level menus such as current program, next programme information, search one all TV newspapers and preserved program.
6), draw " system information " menu: comprise second-level menus such as programme information, e-mail messages, notice information, CA (condition reception) status information, Loader (loading procedure) status information.
7), draw " entertainment information " menu: comprise Tetris, quintet game, black and white chess, recreation and check second-level menu such as perpetual calendar pushes box.
8), volume is regulated: regulate program volume.
9), after above menu window shows, client can produce corresponding Exposure incident, the processing function of the event request that client sends over calls corresponding subfunction according to the window ID that comprises in the request, and its subfunction can be called the content in the built-in function drafting window.
Each Interface Design, the procedure for displaying of the graphic processing method based on uCos-II operating system provided by the invention are as follows:
At first state the G context of root window (Root Windows) and root window, definition root window and context thereof, on root window, Load Image then or draw, write etc., show that at last this root window comprises figure, the literal on it, wait this window Exposure event request to finish the back and judge that the next event request type responds again.
A kind of graphic processing method provided by the invention based on uCos-II operating system, the Modern Graphic windowing environment is incorporated on the small-sized platform of operation uCos-II operating system, the extensibility and the portability of system have been improved, realize user's operations such as demonstration, selection, modification at interface at screen by bottom layer driving, finish the mutual of set-top-box server and user-to-user information.
Description of drawings
Fig. 1 is the process flow diagram of the request process of a kind of graphic processing method based on the C language micro operation system provided by the invention;
Fig. 2 is the process flow diagram of the incident acquisition process of a kind of graphic processing method based on the C language micro operation system provided by the invention.
Embodiment
Following according to Fig. 1 and Fig. 2, specify a kind of better embodiment of the present invention:
The invention provides a kind of graphic processing method based on uCos-II operating system, it comprises request process and incident acquisition process;
As shown in Figure 1, the process of user end to server end transmission request comprises following steps:
Step 1.1, client send request, specifically comprise following two steps:
The various mapping operations of step 1.1.1, client, as draw functions such as a GrPoint, setting-out GrLine, generation window GrNewWindow and operate, the capital uses the AllocReq function to produce corresponding request, is pressed into request queue, and requires server end to finish corresponding concrete operations;
After step 1.1.2, request queue are by the time all filled up, all requests in the request queue are passed to server end, request is waited in refresh requests formation then again;
Step 1.2, server end receive request, specifically comprise following two steps:
The GsSelect function of step 1.2.1, step 1.2.1, server end is responsible for receiving the request that client sends, call the GsHandleClient function according to request type, be used to resolve request with distribution customer terminal, obtain the entry address of corresponding built-in function, call this built-in function, request as client is the setting-out operation, then adopts corresponding built-in function GsLine, carries out concrete setting-out operation;
After a series of built-in functions that step 1.2.2, server end call were finished different requests, if there are data to return, then function directly returned to client to result data;
Client obtains incident and comprises following steps to the process that server end sends event request (comprising event types such as keyboard, mouse, graphic presentation):
Step 2.1, since graphic system in operational process, constantly adopt the mode of interrupting to obtain event information, the incident (comprising that keyboard, mouse, Exposure are event types such as graphic presentation) that client at first uses the GrSelectEvent function to select client to respond;
Step 2.2, client call interface function GrGetNextEvent obtain external remote, the incident of man-machine input such as keyboard;
Step 2.3, client call GrRequestClientData function generate the data of concrete event request, send request to server end; Client call GrSendClientData function is pressed into event request and sends the request msg formation;
Step 2.4, hang-up client are blocked outside input, wait pending data;
Step 2.5, user write variety of event processing function according to own to the response demand of incident, handle function as KeyEvent, and mouse event is handled function, and the exposure event handling function calls this function afterwards, finishes user's mapping operation.
In order to a series of built-in functions of the request of client transmission in the completing steps 1.1, and the built-in function among the described step 1.2.2 comprises:
1), window operation:
1.1), the establishment and the deletion of window:
Use GrNewWindow function creation window, function parameter following (back is a parameter interpretation):
GR_WINDOW_ID parent // parent window number;
The coordinate of GR_COORD x // on parent window;
GR_SIZE width // window width;
GR_SIZE height // window height;
GR_SIZE bordersize // window hem width;
GR_COLOR background // window background look;
GR_COLOR bordercolor // window limit look;
Use void GrDestroyWindow (GR_WINDOW_ID wid) function to delete window, wid is the window ID that will delete.
1.2), the demonstration of window, hide and move:
GrMapWindow: be used for display window;
GrUnmapWindow: be used for hide window;
GrMoveWindow: be used for moving window;
2), graphing in the window;
Draw and at first will understand G context;
2.1), the contextual function of establishment, deletion, copy pattern used in the built-in function is as follows:
GrNewGC: create and the distribution G context;
GrDestoryGC: deletion G context;
GrCopyGC: copy pattern context;
After creating a G context, function returns the ID of a G context, is used as the parameter of graphics system interface.
2.2), other drawing functions are as follows:
GrClearWindow: remove window;
GrPoint: draw;
GrLine: setting-out;
GrRect: draw rectangle;
GrFillRect: draw and fill rectangle;
GrEllipse: draw circle/ellipse;
GrFillEllipse: draw filled ellipse;
GrArc: draw arc;
GrArcAngle: formulate arc top and angle;
GrPoly: draw polygon;
GrFillPoly: filled polygon;
GrDrawImageFromFile: from the window that Loads Image in the file;
GrDrawImageFromBuffer: from the window that Loads Image in the buffer zone;
GrCopyArea: the rectangular area of a certain window is copied to another window.
Built-in function among the described step 1.2.2 comprises following:
1), window operation:
1.1), the establishment and the deletion of window:
Use GsNewWindow function creation window, function parameter following (back is a parameter interpretation):
GS_WINDOW_ID parent // parent window number;
The coordinate of GS_COORD x // on parent window;
GS_SIZE width // window width;
GS_SIZE height // window height;
GS_SIZE bordersize // window hem width;
GS_COLOR background // window background look;
GS_COLOR bordercolor // window limit look;
Use void GrDestroyWindow (GR_WINDOW_ID wid) function to delete window, wid is the window ID that will delete.
1.2), the demonstration of window, hide and move:
GsMapWindow: be used for display window;
GsUnmapWindow: be used for hide window;
GsMoveWindow: be used for moving window;
2), graphing in the window;
Draw and at first will understand G context;
2.1), the contextual function of establishment, deletion, copy pattern used in the built-in function is as follows:
GsNewGC: create and the distribution G context;
GsDestoryGC: deletion G context;
GsCopyGC: copy pattern context;
After creating a G context, function returns the ID of a G context, is used as the parameter of graphics system interface.
2.2), other drawing functions are as follows:
GsClearWindow: remove window;
GsPoint: draw;
GsLine: setting-out;
GsRect: draw rectangle;
GsFillRect: draw and fill rectangle;
GsEllipse: draw circle/ellipse;
GsFillEllipse: draw filled ellipse;
GsArc: draw arc;
GsArcAngle: formulate arc top and angle;
GsPoly: draw polygon;
GsFillPoly: filled polygon;
GsDrawImageFromFile: from the window that Loads Image in the file;
GsDrawImageFromBuffer: from the window that Loads Image in the buffer zone;
GsCopyArea: the rectangular area of a certain window is copied to another window.
Incident in the described step 2.1 comprises:
1), the input of telepilot: the key code information that has comprised telepilot in the request.
2), the input of keyboard: the key code information that has comprised keyboard in the request.
3), Exposure incident: comprised the current ID that is presented at the window of the graphical interfaces the superiors in the request.
Event handling function in the above-mentioned steps 2.5 comprises:
1), telepilot is imported keyboard input response processing function: call corresponding menu window according to key assignments and draw function.
2), draw " system's setting " menu: comprise second-level menus such as cipher control, time setting, audio frequency and video control, diversified menu setting, default setting, software upgrading.
3), draw " editing program " menu: comprise second-level menus such as editing program tabulation, editor's hobby program, preserved program management.
4), draw " program searching " menu: comprise second-level menus such as manual search, full frequency band are searched for automatically, the automatic search of frequency-division section.
5), draw " program guide " menu: show second-level menus such as current program, next programme information, search one all TV newspapers and preserved program.
6), draw " system information " menu: comprise second-level menus such as programme information, e-mail messages, notice information, CA (condition reception) status information, Loader (loading procedure) status information.
7), draw " entertainment information " menu: comprise Tetris, quintet game, black and white chess, recreation and check second-level menu such as perpetual calendar pushes box.
8), volume is regulated: regulate program volume.
9), after above menu window shows, client can produce corresponding Exposure incident, the processing function of the event request that client sends over calls corresponding subfunction according to the window ID that comprises in the request, and its subfunction can be called the content in the built-in function drafting window.
Each Interface Design, the procedure for displaying of the graphic processing method based on uCos-II operating system provided by the invention are as follows:
At first state the G context of root window (Root Windows) and root window, definition root window and context thereof, on root window, Load Image then or draw, write etc., show that at last this root window comprises figure, the literal on it, wait this window Exposure event request to finish the back and judge that the next event request type responds again.
A kind of graphic processing method provided by the invention based on uCos-II operating system, the Modern Graphic windowing environment is incorporated on the small-sized platform of operation uCos-II operating system, the extensibility and the portability of system have been improved, realize user's operations such as demonstration, selection, modification at interface at screen by bottom layer driving, finish the mutual of set-top-box server and user-to-user information.

Claims (2)

1. the graphic processing method based on the C language micro operation system is characterized in that, comprises request process and incident acquisition process;
The process that the user end to server end sends request comprises following steps:
Step 1.1, client send request, specifically comprise following two steps:
The various mapping operations of step 1.1.1, client all use the AllocReq function to produce corresponding request, and described request is pressed into request queue, and requires server end to finish corresponding concrete operations;
After step 1.1.2, request queue are by the time all filled up, all requests in the request queue are passed to server end, request is waited in refresh requests formation then again;
Step 1.2, server end receive request, specifically comprise following two steps:
The GsSelect function of step 1.2.1, server end is responsible for receiving the request that client sends, call event response according to request type and handle function G sHandleClient, be used to resolve the request with distribution customer terminal, obtain the entry address of corresponding built-in function, call this built-in function;
After a series of built-in functions that step 1.2.2, server end call were finished different requests, if there are data to return, then function directly returned to client to result data;
Client obtains incident and comprises following steps to the process that server end sends event request:
Step 2.1, because graphic system in operational process, constantly adopts the mode of interrupting to obtain event information, the incident that client at first uses the GrSelectEvent function to select client to respond;
Step 2.2, client call interface function GrGetNextEvent obtain the incident of man-machine inputs such as external remote, keyboard;
Step 2.3, client call GrRequestClientData function generate the data of concrete event request, send request to server end; Client call GrSendClientData function is pressed into event request and sends the request msg formation;
Step 2.4, hang-up client are blocked outside input, wait pending data;
Step 2.5, user write variety of event processing function according to own to the response demand of incident, call this function afterwards, finish user's mapping operation.
2. the graphic processing method based on the C language micro operation system as claimed in claim 1 is characterized in that, in order to a series of built-in functions of the request of client transmission in the completing steps 1.1, and the built-in function among the described step 1.2.2 comprises:
1), window operation:
1.1), the establishment and the deletion of window:
Use GrNewWindow function creation window, this function parameter is as follows:
GR_WINDOW_ID parent // parent window number;
The coordinate of GR_COORD x // on parent window;
GR_SIZE width // window width;
GR_SIZE height // window height;
GR_SIZE bordersize // window hem width;
GR_COLOR background // window background look;
GR_COLOR bordercolor // window limit look;
Use void GrDestroyWindow or GR_WINDOW_ID wid function to delete window, wid is the window ID that will delete;
1.2), the demonstration of window, hide and move:
GrMapWindow function: be used for display window;
GrUnmapWindow function: be used for hide window;
GrMoveWindow function: be used for moving window;
2), graphing in the window:
Draw and at first will understand G context;
2.1), the contextual function of establishment, deletion, copy pattern used in the built-in function is as follows:
GrNewGC: create and the distribution G context;
GrDestoryGC: deletion G context;
GrCopyGC: copy pattern context;
After creating a G context, function returns the ID of a G context, is used as the parameter of graphics system interface;
2.2), other drawing functions are as follows:
GrClearWindow: remove window;
GrPoint: draw;
GrLine: setting-out;
GrRect: draw rectangle;
GrFillRect: draw and fill rectangle;
GrEllipse: draw circle/ellipse;
GrFillEllipse: draw filled ellipse;
GrArc: draw arc;
GrArcAngle: formulate arc top and angle;
GrPoly: draw polygon;
GrFillPoly: filled polygon;
GrDrawImageFromFile: from the window that Loads Image in the file;
GrDrawImageFromBuffer: from the window that Loads Image in the buffer zone;
GrCopyArea: the rectangular area of a certain window is copied to another window.Graphic processing method based on the C language micro operation system as claimed in claim 1, its feature
Be that the incident in the described step 2.1 comprises:
1), the input of telepilot: the key code information that has comprised telepilot in the request;
2), the input of keyboard: the key code information that has comprised keyboard in the request;
3), Exposure incident: comprised the current ID that is presented at the window of the graphical interfaces the superiors in the request.
Graphic processing method based on the C language micro operation system as claimed in claim 1 is characterized in that, the event handling function in the described step 2.5 comprises:
1), function is handled in telepilot input and keyboard input response: call corresponding menu window according to key assignments and draw function;
2), draw " system's setting " menu: comprise second-level menus such as cipher control, time setting, audio frequency and video control, diversified menu setting, default setting, software upgrading;
3), draw " editing program " menu: comprise second-level menus such as editing program tabulation, editor's hobby program, preserved program management;
4), draw " program searching " menu: comprise second-level menus such as manual search, full frequency band are searched for automatically, the automatic search of frequency-division section;
5), draw " program guide " menu: show second-level menus such as current program, next programme information, search one all TV newspapers and preserved program;
6), draw " system information " menu: comprise second-level menus such as programme information, e-mail messages, notice information, condition receiving status information, loading procedure status information;
7), draw " entertainment information " menu: comprise Tetris, quintet game, black and white chess, recreation and check second-level menu such as perpetual calendar pushes box;
8), volume is regulated: regulate program volume;
9), after above menu window shows, client can produce corresponding Exposure incident, the processing function of the event request that client sends over calls corresponding subfunction according to the window ID that comprises in the request, and its subfunction can be called the content in the built-in function drafting window.
CNB2006101481377A 2006-12-28 2006-12-28 Image processing method based on C language micro operation system Expired - Fee Related CN100435096C (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CNB2006101481377A CN100435096C (en) 2006-12-28 2006-12-28 Image processing method based on C language micro operation system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CNB2006101481377A CN100435096C (en) 2006-12-28 2006-12-28 Image processing method based on C language micro operation system

Publications (2)

Publication Number Publication Date
CN1987779A CN1987779A (en) 2007-06-27
CN100435096C true CN100435096C (en) 2008-11-19

Family

ID=38184587

Family Applications (1)

Application Number Title Priority Date Filing Date
CNB2006101481377A Expired - Fee Related CN100435096C (en) 2006-12-28 2006-12-28 Image processing method based on C language micro operation system

Country Status (1)

Country Link
CN (1) CN100435096C (en)

Families Citing this family (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101227428B (en) * 2008-01-30 2011-12-07 中兴通讯股份有限公司 Application server and remote control method thereof
CN107147562B (en) * 2017-04-27 2018-09-14 腾讯科技(深圳)有限公司 Message treatment method and device
CN109976749B (en) * 2019-03-28 2024-01-16 深圳市创联时代科技有限公司 Inheritance method for drawing process

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5909219A (en) * 1996-06-28 1999-06-01 Cirrus Logic, Inc. Embedding a transparency enable bit as part of a resizing bit block transfer operation
US6341350B1 (en) * 1997-09-02 2002-01-22 Sony Corporation Device and method for processing image data, transmitting medium, and recording medium
CN1333500A (en) * 2000-07-13 2002-01-30 国际商业机器公司 System and method for visual integrating application program in embedded environment
CN1337622A (en) * 2001-09-25 2002-02-27 北京四方同创保护与控制设备有限公司 Method of establishing embedded graphic user interface in real-time multitask operation system

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5909219A (en) * 1996-06-28 1999-06-01 Cirrus Logic, Inc. Embedding a transparency enable bit as part of a resizing bit block transfer operation
US6341350B1 (en) * 1997-09-02 2002-01-22 Sony Corporation Device and method for processing image data, transmitting medium, and recording medium
CN1333500A (en) * 2000-07-13 2002-01-30 国际商业机器公司 System and method for visual integrating application program in embedded environment
CN1337622A (en) * 2001-09-25 2002-02-27 北京四方同创保护与控制设备有限公司 Method of establishing embedded graphic user interface in real-time multitask operation system

Also Published As

Publication number Publication date
CN1987779A (en) 2007-06-27

Similar Documents

Publication Publication Date Title
CN109164964B (en) Content sharing method and device, terminal and storage medium
US10613701B2 (en) Customizable bladed applications
US9934201B2 (en) Image preview
EP3835931A1 (en) Icon display method and apparatus, and terminal and storage medium
US20100211872A1 (en) User-application interface
JP2006164261A (en) Data processor having advanced user interface, and system
KR20070108176A (en) Method and system for displaying and interacting with paginated content
CN110750664B (en) Picture display method and device
US8869056B2 (en) Information-processing device and program
CN113810746B (en) Display equipment and picture sharing method
US20210264648A1 (en) Graphics rendering
WO2019047187A1 (en) Navigation bar control method and device
KR102292789B1 (en) Display apparatus and control method thereof
CN100435096C (en) Image processing method based on C language micro operation system
CN112632917B (en) Online document processing method and device, electronic equipment and storage medium
CN112486370B (en) Method, device, terminal and storage medium for inputting information
CN115617441A (en) Method and device for binding model and primitive, storage medium and computer equipment
US8972877B2 (en) Information processing device for displaying control panel image and information image on a display
CN114712853A (en) Game map loading and displaying method, device, equipment and storage medium
WO2014024255A1 (en) Terminal and video playback program
US20120117513A1 (en) Information processing terminal
CN109032728B (en) UI (user interface) display method, intelligent terminal and computer-readable storage medium
CN112926420A (en) Display device and menu character recognition method
CN103699411A (en) Dialog box display method and device
KR20130030124A (en) System and method for providing content using graphic off loading

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
C14 Grant of patent or utility model
GR01 Patent grant
ASS Succession or assignment of patent right

Owner name: SHANGHAI GMT DIGITAL TECHNOLOGY CO., LTD.

Free format text: FORMER OWNER: SVA-CRA

Effective date: 20100719

C41 Transfer of patent application or patent right or utility model
COR Change of bibliographic data

Free format text: CORRECT: ADDRESS; FROM: 200233 BUILDING 2, NO.757, YISHAN ROAD, SHANGHAI CITY TO: 201203 ROOM 408, NO.50, BOXIA ROAD, PUDONG NEW AREA, SHANGHAI CITY

TR01 Transfer of patent right

Effective date of registration: 20100719

Address after: 201203, room 50, 408 Xia Xia Road, Shanghai, Pudong New Area

Patentee after: Shanghai GMT Digital Technology Co., Ltd.

Address before: 200233, No. 2, building 757, Yishan Road, Shanghai

Patentee before: Central Institute of Shanghai Video and Audio (Group) Co., Ltd.

CF01 Termination of patent right due to non-payment of annual fee

Granted publication date: 20081119

Termination date: 20151228

EXPY Termination of patent right or utility model