CN1987779A - 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
CN1987779A
CN1987779A CNA2006101481377A CN200610148137A CN1987779A CN 1987779 A CN1987779 A CN 1987779A CN A2006101481377 A CNA2006101481377 A CN A2006101481377A CN 200610148137 A CN200610148137 A CN 200610148137A CN 1987779 A CN1987779 A CN 1987779A
Authority
CN
China
Prior art keywords
window
request
function
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.)
Granted
Application number
CNA2006101481377A
Other languages
Chinese (zh)
Other versions
CN100435096C (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

Landscapes

  • User Interface Of Digital Computer (AREA)
  • Digital Computer Display Output (AREA)

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;
Described user end to server end sends request process and comprises following steps:
The request of step 1.1, client sends;
The various mapping operations of step 1.1.1, client all can use the AllocReq function to produce corresponding request, are pressed into request queue, require 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;
The request of step 1.2, server end receives;
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 can directly return to client to result data;
Described 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 GrSelectEvent 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, call the data that the GrRequestClientData function generates concrete event request, send request to server end; Call the GrSendClientData function event request is pressed into the formation of transmission request msg;
Step 2.4, hang-up client are blocked outside input, wait pending data;
Step 2.5, user will write variety of event to the response demand of incident according to oneself and handle function, call this function afterwards, finish user's mapping operation.
The request that client sends in the above-mentioned steps 1.1 is finished by a series of built-in functions, comprises as follows:
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 item 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.
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, described user end to server end transmission request process comprises following steps:
The request of step 1.1, client sends;
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, 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;
The request of step 1.2, server end receives;
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 can directly return to client to result data;
Described 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 GrSelectEvent 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, call the data that the GrRequestClientData function generates concrete event request, send request to server end; Call the GrSendClientData function event request is pressed into the formation of transmission request msg;
Step 2.4, hang-up client are blocked outside input, wait pending data;
Step 2.5, user will write variety of event to the response demand of incident according to oneself and handle function, 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.
The request that client sends in the above-mentioned steps 1.1 is finished by a series of built-in functions:
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 (4)

1. the graphic processing method based on the C language micro operation system is characterized in that, comprises request process and incident acquisition process;
Described user end to server end sends request process and comprises following steps:
The request of step 1.1, client sends;
The various mapping operations of step 1.1.1, client all can use the AllocReq function to produce corresponding request, are pressed into request queue, require 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;
The request of step 1.2, server end receives;
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 can directly return to client to result data;
Described 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 GrSelectEvent 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, call the data that the GrRequestClientData function generates concrete event request, send request to server end; Call the GrSendClientData function event request is pressed into the formation of transmission request msg;
Step 2.4, hang-up client are blocked outside input, wait pending data;
Step 2.5, user will write variety of event to the response demand of incident according to oneself and handle function, 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, the built-in function among described step 1.1 and the step 1.2.2 comprises:
1), window operation:
1.1), the establishment and the deletion of window:
Use GrNewWindow function creation window:
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 GrDestroy Window 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:
GrMap Window: be used for display window;
GrUnmap Window: be used for hide window;
GrMove Window: 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:
GrClear Window: 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.
3. the graphic processing method based on the C language micro operation system as claimed in claim 1 is characterized in 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.
4. the 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), 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, 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 true CN1987779A (en) 2007-06-27
CN100435096C 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)

Cited By (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
CN107147562A (en) * 2017-04-27 2017-09-08 腾讯科技(深圳)有限公司 Message treatment method and device
CN109976749A (en) * 2019-03-28 2019-07-05 深圳市创联时代科技有限公司 A kind of inheritance method of drawing course

Family Cites Families (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
TW348239B (en) * 1996-06-28 1998-12-21 Cirrus Logic Inc Embedding a transparency enable bit as part of a resizing bit block transfer operation
JP3696723B2 (en) * 1997-09-02 2005-09-21 ソニー株式会社 Image data processing apparatus and method
CN1333500A (en) * 2000-07-13 2002-01-30 国际商业机器公司 System and method for visual integrating application program in embedded environment
CN1142487C (en) * 2001-09-25 2004-03-17 北京四方同创保护与控制设备有限公司 Method of establishing embedded graphic user interface in real-time multitask operation system

Cited By (4)

* 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
CN107147562A (en) * 2017-04-27 2017-09-08 腾讯科技(深圳)有限公司 Message treatment method and device
CN109976749A (en) * 2019-03-28 2019-07-05 深圳市创联时代科技有限公司 A kind of inheritance method of drawing course
CN109976749B (en) * 2019-03-28 2024-01-16 深圳市创联时代科技有限公司 Inheritance method for drawing process

Also Published As

Publication number Publication date
CN100435096C (en) 2008-11-19

Similar Documents

Publication Publication Date Title
US9934201B2 (en) Image preview
US9928044B2 (en) Systems and methods for programming mobile devices
CN109164964B (en) Content sharing method and device, terminal and storage medium
US10613701B2 (en) Customizable bladed applications
US11500513B2 (en) Method for icon display, terminal, and storage medium
KR101159390B1 (en) Method and system for displaying and interacting with paginated content
US20070061733A1 (en) Pluggable window manager architecture using a scene graph system
JP2006164261A (en) Data processor having advanced user interface, and system
CN113810746B (en) Display equipment and picture sharing method
US20210264648A1 (en) Graphics rendering
EP3161598A1 (en) Light dismiss manager
CN110750664A (en) Picture display method and device
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
US8972877B2 (en) Information processing device for displaying control panel image and information image on a display
US20120117513A1 (en) Information processing terminal
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
CN117234655B (en) Method, device, equipment and medium for running Linux desktop program based on android system
CN113271497B (en) Video playing method, intelligent terminal, storage medium and program product
CN115396717B (en) Display device and display image quality adjusting method
WO2023025300A1 (en) Display device and display method therefor

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