?? userlogin_eventcb.pro
字號:
;
; IDL Event Callback Procedures
; login_eventcb
;
; Generated on: 05/10/2007 10:43.26
;
;-----------------------------------------------------------------
; Activate Button Callback Procedure.
; Argument:
; Event structure:
;
; {WIDGET_BUTTON, ID:0L, TOP:0L, HANDLER:0L, SELECT:0}
;
; ID is the widget ID of the component generating the event. TOP is
; the widget ID of the top level widget containing ID. HANDLER
; contains the widget ID of the widget associated with the
; handler routine.
; SELECT is set to 1 if the button was set, and 0 if released.
; Normal buttons do not generate events when released, so
; SELECT will always be 1. However, toggle buttons (created by
; parenting a button to an exclusive or non-exclusive base)
; return separate events for the set and release actions.
; Retrieve the IDs of other widgets in the widget hierarchy using
; id=widget_info(Event.top, FIND_BY_UNAME=name)
;-----------------------------------------------------------------
pro LogPress, Event
end
;
; Empty stub procedure used for autoloading.
;
pro login_eventcb
end
;-----------------------------------------------------------------
; Notify Realize Callback Procedure.
; Argument:
; wWidget - ID number of specific widget.
;
;
; Retrieve the IDs of other widgets in the widget hierarchy using
; id=widget_info(Event.top, FIND_BY_UNAME=name)
;-----------------------------------------------------------------
pro OnRealize_Login, wWidget
COMPILE_OPT idl2
wDraw=widget_info(wWidget, FIND_BY_UNAME='WID_DRAW_Welcome')
end
;-----------------------------------------------------------------
; Post Create Widget Procedure.
; Argument:
; wWidget - ID number of specific widget.
;
; Any keywords passed into the generated widget creation procedure
; are passed into this procudure.
; Retrieve the IDs of other widgets in the widget hierarchy using
; id=widget_info(Event.top, FIND_BY_UNAME=name)
;-----------------------------------------------------------------
pro PostCreation_Login, wWidget, _EXTRA=_VWBExtra_
end
;
; Empty stub procedure used for autoloading.
;
pro UserLogin_eventcb
end
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -