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
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Interesting article about...
by
440bx
[
Today
at 04:36:02 am]
had a question and found ...
by
egsuh
[
Today
at 03:57:14 am]
[Solved]Printing unicode ...
by
cdbc
[
Today
at 02:47:40 am]
How to set the desktop co...
by
Fibonacci
[
Today
at 02:42:15 am]
MIDI commands
by
finlazarus
[
Today
at 02:26:09 am]
FPSpreadSheet, ReadAsText...
by
andresayang
[
Today
at 02:13:18 am]
Lazarus for Windows on aa...
by
msintle
[
Today
at 01:53:20 am]
Common File Dialogs Have ...
by
msintle
[
Today
at 01:52:27 am]
Game Music Emulator
by
TRon
[
Today
at 01:23:56 am]
Constants in constant exp...
by
440bx
[December 08, 2024, 11:41:59 pm]
ColorDialog can have opti...
by
Bart
[December 08, 2024, 09:14:55 pm]
Array of String lookup gi...
by
TRon
[December 08, 2024, 09:04:03 pm]
kernel 6.8 and checking s...
by
MarkMLl
[December 08, 2024, 08:12:08 pm]
AVRPascal – free code edi...
by
ackarwow
[December 08, 2024, 07:34:07 pm]
Api/component pack for Ra...
by
MarkMLl
[December 08, 2024, 07:11:01 pm]
SAVE StringGrid to PDF
by
dseligo
[December 08, 2024, 06:37:39 pm]
How to save a Graphic fro...
by
Hartmut
[December 08, 2024, 05:57:03 pm]
Array of String lookup gi...
by
Wilko500
[December 08, 2024, 05:47:16 pm]
Developing a Kernel Modul...
by
Joanna from IRC
[December 08, 2024, 04:35:26 pm]
How to get hash of entire...
by
Warfley
[December 08, 2024, 01:30:18 pm]
IFS Fractals: Iterating t...
by
Dzandaa
[December 08, 2024, 11:51:08 am]
Баги CYBERGRAPHICS AmigaO...
by
Smalovsky
[December 08, 2024, 09:39:52 am]
C operators and shift
by
MarkMLl
[December 08, 2024, 09:33:12 am]
fphttpapp and Windows Ser...
by
Thaddy
[December 08, 2024, 08:36:36 am]
MIDI file generator - wor...
by
finlazarus
[December 08, 2024, 02:49:40 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: How to build own ide in Lazarus (Read 645 times)
Packs
Sr. Member
Posts: 368
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: 1761
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: 1379
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: 21
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: 368
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: 1314
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