Delphi Scintilla Interface Components: 0.50 released


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Delphi Scintilla Interface Components: 0.50 released
# 1  
Old 07-25-2008
Delphi Scintilla Interface Components: 0.50 released

Components to make it easy to use the Scintilla Project (Syntax highlightning editor control) with Delphi/C++ Builder, define your own languages including styles/keywords etc. which are based on the (50+) lexers in SciLexer.Dll. Autocomplete etc.
ImageImage

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Adding a network interface to a bonded interface

I have a RHEL 5 system with a bonded interface configure using only one network port (eth0). So I have config file for ifcfg-bond0 and ifcfg-eth. I'd like to configure eth5 to be the second SLAVE in the bond. My question is, after I modify ifcfg-eth5, can I add eth5 to the bond0 interface without... (1 Reply)
Discussion started by: westmoreland
1 Replies

2. IP Networking

Need a bridge from an ethernet interface to a serial interface

This is my situation DOS pc serial cable (sl0) Linux Pc eth1 192.168.0.10 <-------------------->192.168.0.2 <------------>192.168.0.1 (router) I connected the linux pc and the dos pc with a SLIP (serial line internet protocol), so they can communicate in the sl0 interface. ... (3 Replies)
Discussion started by: mghis
3 Replies

3. SCO

Change SCO - GUI or Desktop interface to DOS based interface

Hi all I have installed a demo version of SCO OpenServer 5.0.2, I finally found it is Desktop Interface, I would like to know how to change its interface to dos based interface? If you have any ideas, please tell me then. Thank you (2 Replies)
Discussion started by: TinhNhi
2 Replies

4. Solaris

Command line Interface or GUI Interface not shown on solaris

Dear all, I am a newbie in solaris and I need your advice. I have a Solaris version 5.9 installed on Sunfire V240. I am able to ssh the machine from putty remotely. My problem is that I cannot see the display from KVM switch I have connected to it. I need also to be able to see the GUI... (2 Replies)
Discussion started by: mbouster
2 Replies

5. UNIX for Dummies Questions & Answers

What is the components of semaphore?

What is the components of semaphore? (1 Reply)
Discussion started by: dearanik
1 Replies

6. UNIX for Dummies Questions & Answers

Traversing Pascal/Delphi code using GVim

Hi, I am using GVim as editor... and i am viewing code of pascal/ delphi.. my problem is its difficult to use GVim as source code browser.... normally ctags helps to traverse in vim for c/c++.. is there anything like that for pascal/ delphi to minimise this complication of each... (0 Replies)
Discussion started by: SankarV
0 Replies
Login or Register to Ask a Question
Components(3)						User Contributed Perl Documentation					     Components(3)

NAME
Mac::Components - Macintosh Toolbox Interface to the Components Manager SYNOPSIS
use Mac::Components; RegisterComponentResource($Resource, 1); OpenComponent($Component); CloseComponent($Component); DESCRIPTION
Constants kAppleManufacturer kComponentResourceType kAnyComponentType kAnyComponentSubType kAnyComponentManufacturer kAnyComponentFlagsMask Default values for "GetDefaultComponent()". defaultComponentIdentical defaultComponentAnyFlags defaultComponentAnyManufacturer defaultComponentAnySubType defaultComponentAnyFlagsAnyManufacturer defaultComponentAnyFlagsAnyManufacturerAnySubType Flags for "GetDefaultComponent()". kComponentOpenSelect kComponentCloseSelect kComponentCanDoSelect kComponentVersionSelect kComponentRegisterSelect kComponentTargetSelect kComponentUnregisterSelect Standard component selectors. registerComponentGlobal registerComponentNoDuplicates registerComponentAfterExisting Flags for "SetDefaultComponent()". Functions RegisterComponentResource TR, GLOBAL The RegisterComponentResource function makes a component available for use by applications (or other clients). Once the Component Manager has registered a component, applications can find and open the component using the standard Component Manager routines. You provide information identifying the component and specifying its capabilities. The Component Manager returns a component identifier that uniquely identifies the component to the system. UnregisterComponent ACOMPONENT The UnregisterComponent function removes a component from the Component ManagerO~s registration list. Most components are registered at startup and remain registered until the computer is shut down. However, you may want to provide some services temporarily. In that case you dispose of the component that provides the temporary service by using this function. Returns zero on failure. FindNextComponent ACOMPONENT, [COMPONENTTYPE, [COMPONENTSUBTYPE, [COMPONENTMANUFACTURER, [COMPONENTFLAGS, [COMPONENTFLAGSMASK]]]]] The FindNextComponent function returns the component identifier of a component that meets the search criteria. FindNextComponent returns a function result of 0 when there are no more matching components. CountComponents [COMPONENTTYPE, [COMPONENTSUBTYPE, [COMPONENTMANUFACTURER, [COMPONENTFLAGS, [COMPONENTFLAGSMASK]]]]] The CountComponents function returns a long integer containing the number of components that meet the specified search criteria. GetComponentInfo ACOMPONENT The GetComponentInfo function returns information about the specified component. ($type, $subtype, $manufacturer, $flags, $mask, $name, $info) = GetComponentInfo($Component); GetComponentListModSeed The GetComponentListModSeed function allows you to determine if the list of registered components has changed. This function returns the value of the component registration seed number. OpenComponent ACOMPONENT The OpenComponent function allows your application to gain access to the services provided by a component. Your application must open a component before it can call any component functions. You specify the component with a component identifier that your application previously obtained from the FindNextComponent function. Returns ComponentInstance. CloseComponent ACOMPONENTINSTANCE The CloseComponent function terminates your applicationO~s access to the services provided by a component. Your application specifies the connection to be closed with the component instance returned by the OpenComponent() or OpenDefaultComponent() function. Returns zero on failure. GetComponentInstanceError ACOMPONENTINSTANCE The GetComponentInstanceError function returns the last error generated by a specific connection to a component. Returns zero on failure. ComponentFunctionImplemented CI, FTNNUMBER The ComponentFunctionImplemented function allows you to determine whether a component supports a specified request. Your application can use this function to determine a componentO~s capabilities. Returns 1 if supported. GetComponentVersion CI The GetComponentVersion function returns a componentO~s version number as a coded integer. SetDefaultComponent ACOMPONENT, FLAGS The SetDefaultComponent function allows your component to change the search order for registered components. You specify a component that is to be placed at the front of the search chain, along with control information that governs the reordering operation. The order of the search chain influences which component the Component Manager selects in response to an applicationO~s use of the OpenDefaultComponent() and FindNextComponent() functions. Returns zero on failure. OpenDefaultComponent COMPONENTTYPE, [COMPONENTSUBTYPE] The OpenDefaultComponent function allows your application to gain access to the services provided by a component. Your application must open a component before it can call any component functions. You specify the component type and subtype values of the component to open. The Component Manager searches for a component that meets those criteria. If you want to exert more control over the selection process, you can use the FindNextComponent() and OpenComponent() functions. Returns ComponentInstance. RegisterComponentResourceFile RESREFNUM, GLOBAL The RegisterComponentResourceFile function registers all component resources in the given resource file according to the flags specified in the global parameter. Returns an integer value. AUTHOR
Written by Matthias Ulrich Neeracher <neeracher@mac.com>, documentation by Bob Dalgleish <bob.dalgleish@sasknet.sk.ca>. Currently maintained by Chris Nandor <pudge@pobox.com>. perl v5.16.2 2013-08-25 Components(3)