Closed mark-summerfield closed 3 years ago
Hello.
Yes of course but, imho, for the graphic things it is much easier to use the msegui-form-designer provided in mseide.
mseide has as goal to be the most compact and simple possible. I prefer to not touch to original mseide code (only to fix bug if it appears).
I guess that means I'd need some kind of make file?
No, only the command line for fpc. For example to compile mseide from command line, just do:
$ cd /dir-of-mseide-msegui/ // go to directory of mseide-msegui
Then for Linux:
$ fpc -Fulib/common/* -Fulib/common/kernel/linux apps/ide/mseide.pas
For Windows:
$ fpc -Fulib\common* -Fulib\common\kernel\windows apps\ide\mseide.pas
Hello.
In last commit https://github.com/fredvs/ideU/commit/dfcede4244194ef6b2f03c2c871d00688690bf97 of ideU there is option to stop blinking caret:
Re-hello.
If you want to stop the blinking-caret in mseide, you may do this in /mseide-msegui/lib/common/kernel/msepointer.pas
At line 489:
procedure tcaret.restart;
begin
updatestate;
// ftimer.interval:= ftimer.interval; // comment this
// ftimer.enabled:= true; // comment this
end;
And recompile mseide.
Thank you!