Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
How to build own ide in Lazarus
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
[hacked for now] Changing...
by
jamie
[
Today
at 09:00:23 pm]
Error: Enumeration symbol...
by
tetrastes
[
Today
at 08:51:41 pm]
Access Violation - Databa...
by
1HuntnMan
[
Today
at 07:01:25 pm]
MVP made easier.
by
cdbc
[
Today
at 05:14:40 pm]
Lazarus is not working
by
Fred vS
[
Today
at 05:14:20 pm]
TIBDataSet "Closing"? on ...
by
RedOctober
[
Today
at 04:52:18 pm]
Recomendations for conver...
by
BlueIcaro
[
Today
at 04:44:57 pm]
Running External Tools
by
JuhaManninen
[
Today
at 04:08:28 pm]
Why does the call via fun...
by
jamie
[
Today
at 03:19:59 pm]
The start of yet another ...
by
TBMan
[
Today
at 03:16:21 pm]
Need help with Runcommand...
by
marcov
[
Today
at 12:46:25 pm]
Military Grade Directives
by
Thaddy
[
Today
at 11:46:44 am]
Cannot find Online Packag...
by
Thaddy
[
Today
at 11:37:58 am]
Anyone interested in help...
by
ad1mt
[
Today
at 08:56:20 am]
Hashing pointers by using...
by
440bx
[
Today
at 03:16:33 am]
exception external SIGSEG...
by
dseligo
[
Today
at 02:24:28 am]
[SOLVED] Is this a compil...
by
jamie
[
Today
at 01:46:54 am]
Problem installing LazPro...
by
peter.dell
[
Today
at 01:32:53 am]
AI interactions
by
Joanna
[December 13, 2025, 11:47:24 pm]
project - count source li...
by
bobonwhidbey
[December 13, 2025, 10:30:31 pm]
FPC 3.2.4-rc1 available
by
PeterBB
[December 13, 2025, 08:31:32 pm]
fpsockets error: 10047
by
parcel
[December 13, 2025, 04:03:56 pm]
So many "newbies"
by
Joanna
[December 13, 2025, 02:52:06 pm]
Is it possible to run "mo...
by
Thausand
[December 13, 2025, 02:42:56 pm]
TLazSerial : serial port ...
by
CM630
[December 13, 2025, 02:20:24 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: How to build own ide in Lazarus (Read 1489 times)
Packs
Sr. Member
Posts: 492
How to build own ide in Lazarus
«
on:
October 06, 2024, 09:53:05 pm »
I would like to build my own ide like Lazarus ide.
There should be component plate with minimum component.
Minimum property,form,object inspector
Please guide me
Logged
Warfley
Hero Member
Posts: 2033
Re: How to build own ide in Lazarus
«
Reply #1 on:
October 06, 2024, 10:15:02 pm »
Some of the components like the code editor (synedit) or the property editor are easily usable packages. A long time ago I've built this:
https://github.com/Warfley/AU3IDE
But granted it's not the best code base, especially the form editor is kinda terrible in retrospect.
Other than that, personally I prefer building add-ons for vscode, that's way easier than building your own ide from scratch
Logged
GitHub:
https://github.com/Warfley
af0815
Hero Member
Posts: 1406
Re: How to build own ide in Lazarus
«
Reply #2 on:
October 07, 2024, 11:05:14 am »
Object inspector is a (standalone) component. See examples objectinspector (..path to lazarus..\lazarus\examples\objectinspector)
Logged
regards
Andreas
Ștefan-Iulian Alecu
New Member
Posts: 30
Re: How to build own ide in Lazarus
«
Reply #3 on:
October 08, 2024, 09:40:47 pm »
Adding to the example Warfley gave, D has an IDE named Dexed that might as well be Lazarus from another universe looks-wise:
https://gitlab.com/basile.b/dexed
. This used to be maintained too:
https://github.com/rpcope1/Coedit
.
https://github.com/oliverhermanni/XC-Edit
is another example, but it's debatable if it's an IDE or not.
In terms of text editors (smaller in scope), you can take a look at
https://github.com/parmaja/miniedit
or
https://github.com/Alexey-T/CudaText
.
https://github.com/dertuxmalwieder/groffstudio
is even smaller than those two, but hey, it's worth shouting it out, it's pretty good at its job.
https://github.com/mse-org/mseide-msegui
I've been keeping an eye on this particular project, it's definitely made in Free Pascal, but the MSE people have their own toolkit. Might be relevant, might be not.
Logged
Packs
Sr. Member
Posts: 492
Re: How to build own ide in Lazarus
«
Reply #4 on:
October 10, 2024, 08:56:56 am »
jvRuntimeDesigner componet gives form at runtime and user can able to button,label,image , panel
Logged
Edson
Hero Member
Posts: 1325
Re: How to build own ide in Lazarus
«
Reply #5 on:
October 10, 2024, 05:50:51 pm »
I've several libraries that can be used for building an IDE:
Setting forms:
https://github.com/t-edson/MiConfig
SynEdit Highlighter:
https://github.com/t-edson/SynFacilSyn
SynEdit Completion tool and highlighter:
https://github.com/t-edson/SynFacilCompletion
Utilities for SynEdit:
https://github.com/t-edson/SynFacilUtils
You can check my IDE/compiler in order to see how it's implemented using these libraries:
https://github.com/t-edson/P65Pas
Logged
Lazarus 2.2.6 - FPC 3.2.2 - x86_64-win64 on Windows 10
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
How to build own ide in Lazarus
TinyPortal
© 2005-2018