File: ctooltip.sru
Size: 681
Date: Mon, 07 Apr 2008 21:31:18 +0200
$PBExportHeader$ctooltip.sru
$PBExportComments$Tooltip constants
forward
global type ctooltip from nonvisualobject
end type
end forward

global type ctooltip from nonvisualobject
end type
global ctooltip ctooltip

type variables
CONSTANT string NO_TOOLTIP = "No Tooltip"
//balloon constants
CONSTANT string KEY_TOOLTIP = "TOOLTIP"
CONSTANT string KEY_BALLOON = "BALLOON"
CONSTANT string KEY_BALLOON_TITLE = "BALLOON_TITLE"
CONSTANT string KEY_BALLOON_ICON = "BALLOON_ICON"
end variables
on ctooltip.create
call super::create
TriggerEvent( this, "constructor" )
end on

on ctooltip.destroy
TriggerEvent( this, "destructor" )
call super::destroy
end on