jedi

Cannot find jedi within my Delphi 5 file using XE6 [closed]

旧巷老猫 提交于 2019-12-25 17:43:35
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I have a multi-file project that was created in Delphi5 and I am attempting to compile in Delphi XE6. In my DSPack.pas file I get the error: "'jedi.inc' could not be found..." related to the code line: {$I jedi.inc} ... there are also many, mostly "undeclared identifier", errors shown as errors - but named as

Delphi JvDockServer JvDockClient notification for undocking (floating) of a client form

安稳与你 提交于 2019-12-25 02:43:09
问题 Using the JEDI VCL library with Delphi, I put a JvDockServer on the main form, and on another that should be docked to the main form, I have JvDockClient using dock style JvDockVIDVCStyle. While Docking works great, I would like to be notified when a client form changes from docked to undocked (floating) mode. 回答1: Update The JVCL is now modified to contain this feature built in! The TForm's built in events is now fired when you dock a form. Check out the DockingInCode demo in the JEDI JVCL,

JEDI JCL Compression library wont open spanned archive files

拜拜、爱过 提交于 2019-12-23 07:08:58
问题 Summary: I am having trouble to get the JCL compression library to open any spanned archives. It presents the error "(0000001) Incorrect Function" as defined in borlands 'windows.pas'; scenerios: A single archive compressed using the JCL compression example. -Will uncompress in both the JCL example and the 7zip gui. A spanned archive over 7 files compressed using the JCL compression example. -Will uncompress in only the 7zip gui. Fails to uncompress using JCL example. A single archive

How to use JEDI TJCLHashMap classes?

微笑、不失礼 提交于 2019-12-22 10:38:06
问题 I'm trying to use TJCLHashMap family of classes, but apparently this class has no useful public methods. All methods are "protected". How to use this class? Although JCL comes with some samples, I seem to miss something. A basic example would be great. 回答1: You should use the interfaces declared in JclContainerIntf.pas. The classes in JclHashMaps implement those interfaces. Take a look at jcl\examples\common\containers\hashing\HashingExample.dpr for a few examples (integer, strings, objects,

Jedi Inspector not firing event?

孤街浪徒 提交于 2019-12-11 04:16:02
问题 I noticed the TJvInspector has a OnItemDoubleClicked event which I thought would be just what I require as I need to detect if the mouse was double clicked on a Color Item property (I want to show my own Color Form to allow selecting custom colors etc). But I cannot even get the event to fire at all, for example: procedure TfrmInspector.JvInspector1ItemDoubleClicked(Sender: TObject; Item: TJvCustomInspectorItem); begin if Item is TJvInspectorColorItem then ShowMessage('you double clicked on a

Error in JCL installation into Delphi 10 Seattle

北城以北 提交于 2019-12-08 21:27:48
问题 I am trying to install JCL/JVCL into Delphi-10-Seattle I got the following Error: Using Embarcadero RAD Studio 10 Seattle Embarcadero Delphi for Win32 compiler version 30.0... E:\Delphi-10\Jedi\jcl\source\common\JclSysUtils.pas(3034) Error: E2010 Incompatible types: 'TJclWaitResult' and 'TWaitResult' JclInstall.pas(2264) Fatal: F2063 Could not compile used unit 'JclSysUtils.pas' Line 3034 in 'JclSysUtils.pas' is: if (ProcessEvent.WaitForever = {$IFDEF RTL280_UP}TJclWaitResult.{$ENDIF RTL280

multiples jediepcserver.py for multiples virtualenvs

南笙酒味 提交于 2019-12-08 12:50:34
问题 I'm trying to run multiples jediepcserver.py for multiples virtualenvs for different projects. My idea is to have the proper autocompletion in each of the projects that I'm working on Emacs. For example, I'm working on two projects at the moment, one using Django 1.5 and another one using Django 1.7, so autocompletion should be different for each of the projects. This is my configuration file: (setq python-environment-directory "~/.virtualenvs") (autoload 'jedi:setup "jedi" nil t) (add-hook

Looking for an event scheduler for Delphi?

夙愿已清 提交于 2019-12-07 05:28:40
问题 I was recently looking at TJvScheduledEvents that comes with the JVCL library because I have a need for a dynamic scheduler in a Delphi application. Initially this looked to fit the bill, but I have run into some concerns. Limited documentation other than the code itself The event scheduler form that lets you create events appears to be a design time form with no runtime interface. Issues with storing dynamically created scheduled events to a file or database so that they are not lost when

Emacs & Anaconda. Linking problems

白昼怎懂夜的黑 提交于 2019-12-06 08:15:41
问题 I have a problem where: In order to run Anaconda, I need to unset LD_LIBRARY_PATH In order to run Emacs (as well as other programs), I need to set LD_LIBRARY_PATH If I try to run Emacs while unsetting LD_LIBRARY_PATH I run into linking problems, e.g. symbol lookup error: /usr/lib64/libpangocairo-1.0.so.0: undefined symbol: cairo_ft_font_options_substitute And I run into the same problem if I try to load gedit or other programs. Given this, I am currently unable to use Anaconda and Emacs in

How to use JEDI TJCLHashMap classes?

旧街凉风 提交于 2019-12-06 03:11:17
I'm trying to use TJCLHashMap family of classes, but apparently this class has no useful public methods. All methods are "protected". How to use this class? Although JCL comes with some samples, I seem to miss something. A basic example would be great. You should use the interfaces declared in JclContainerIntf.pas. The classes in JclHashMaps implement those interfaces. Take a look at jcl\examples\common\containers\hashing\HashingExample.dpr for a few examples (integer, strings, objects, etc.) Extend it and add public methods that call the protected methods internally? 来源: https://stackoverflow