Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Packages and Libraries
»
ATTabs: lite tab control
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
Conscious Artificial Inte...
by
schuler
[
Today
at 02:42:53 am]
Implementing an Elo ratin...
by
mas steindorff
[
Today
at 02:22:34 am]
[New Component] ExtTabCtr...
by
jianwt
[
Today
at 02:21:39 am]
You can embed Windows Con...
by
Aruna
[
Today
at 01:42:47 am]
Can /my/ AI help me with ...
by
microxa
[
Today
at 12:56:29 am]
IndySecOpenSSL is now ava...
by
TheMouseAUS
[
Today
at 12:08:51 am]
RunFormula: math expressi...
by
stormray
[June 17, 2026, 10:32:05 pm]
Codepage issue in console...
by
ASerge
[June 17, 2026, 09:36:27 pm]
Pdf Viewer in Pascal
by
Tomxe
[June 17, 2026, 07:18:20 pm]
Canvas size
by
Thaddy
[June 17, 2026, 07:15:50 pm]
[Reopened] TSaveDialog
by
Thaddy
[June 17, 2026, 05:12:17 pm]
What am I missing here? [...
by
Thaddy
[June 17, 2026, 03:39:02 pm]
Questions about 16 color ...
by
wp
[June 17, 2026, 01:45:07 pm]
TCHATGPT — An Artificial ...
by
Weiss
[June 17, 2026, 07:00:13 am]
FPC Unleashed (inline var...
by
440bx
[June 16, 2026, 11:53:51 pm]
RFC: Separation of MCU an...
by
ackarwow
[June 16, 2026, 11:06:14 pm]
Error with last fixes_3.2...
by
patyit
[June 16, 2026, 09:49:02 pm]
Mundo Medieval 3D MMORPG ...
by
Rodrigo Robles
[June 16, 2026, 06:06:17 pm]
Which Control should I us...
by
wp
[June 16, 2026, 05:08:55 pm]
Just Question App paramet...
by
eldonfsr
[June 16, 2026, 04:50:19 pm]
Content is distorting / w...
by
Handoko
[June 16, 2026, 03:53:02 pm]
ZxTune chiptunes player
by
Guva
[June 16, 2026, 12:41:14 pm]
Onscroll event for Tscrol...
by
laz_one_or2
[June 16, 2026, 11:16:39 am]
Fpcupdeluxe
by
CharlyTango
[June 16, 2026, 10:35:33 am]
Compiling Qt6 project on ...
by
wp
[June 16, 2026, 10:14:53 am]
« previous
next »
Print
Pages: [
1
]
2
Author
Topic: ATTabs: lite tab control (Read 17463 times)
AlexTP
Hero Member
Posts: 2715
ATTabs: lite tab control
«
on:
May 21, 2014, 04:56:55 pm »
I want to make such nice TabControl, maybe like ST2 editor.
I don't want OS themed control, only my custom painted with nice look.
I start at
https://github.com/Alexey-T/ATTabs
Sample attached
«
Last Edit: May 26, 2014, 04:50:41 am by Alex22
»
Logged
CudaText editor
-
ATSynEdit
-
More from me
kapibara
Hero Member
Posts: 662
Re: TabControl: my attempt needed?
«
Reply #1 on:
May 22, 2014, 04:20:25 am »
Nice!
I'm interested in such a control. Can it be used borderless? Or maybe thats just an issue with PageControls.
Some thoughts:
Associating an object with a tab (using Tabs.Objects) is something that Lazarus page/tab controls dont do at this time. Maybe your control will?
Tabs.Object[idx]:=MyControl
Flipping the page could then switch to the associated control stored in the Tabs.Objects[idx]
Or simpler, switching visible control could be done programmatically in the OnChange event. At the moment I'm using a separate list for storing the controls that will be shown when a tab is selected. But storing them as an object in the tab list feels more optimal.
«
Last Edit: May 22, 2014, 05:09:34 am by kapibara
»
Logged
Lazarus trunk / fpc 3.3.1 / Kubuntu 24.04 - 64 bit
r_1gm
New Member
Posts: 28
Re: TabControl: my attempt needed?
«
Reply #2 on:
May 22, 2014, 07:41:19 am »
Hi Alex,
Maybe you can improve Lazarus CustomDrawn control component.
Logged
AlexTP
Hero Member
Posts: 2715
Re: TabControl: my attempt needed?
«
Reply #3 on:
May 22, 2014, 05:28:20 pm »
Of course: each tab will have it's data, which is
- Caption
- Hilite color (default clNone - change to show colored label on tab)
- TObject
- Modified (bool for future, maybe I show some mark ltr)
EARLY early!! alpha is here:
https://github.com/Alexey-T/ATTabs
I start with Delphi: NO Lazarus yet!
I port it later
Logged
CudaText editor
-
ATSynEdit
-
More from me
kapibara
Hero Member
Posts: 662
Re: TabControl: my attempt needed?
«
Reply #4 on:
May 22, 2014, 06:45:06 pm »
Tried the alpha, it looks fine. Good balance between custom look and standard.
It would be useful if the control supports BorderStyle = bsNone. Lazarus TabControl dont do that.
You probably already planned to have a
TabPosition property, tpBottom etc.
Looking forward to the next version.
Logged
Lazarus trunk / fpc 3.3.1 / Kubuntu 24.04 - 64 bit
AlexTP
Hero Member
Posts: 2715
Re: TabControl: my attempt needed?
«
Reply #5 on:
May 22, 2014, 07:41:06 pm »
What do u mean (BorderStyle bsNone)? i don't paint any border. You may add "Issue" at Github. better discuss border-style there.
Logged
CudaText editor
-
ATSynEdit
-
More from me
AlexTP
Hero Member
Posts: 2715
Re: atTabs: TabControl in Sublime style
«
Reply #6 on:
May 22, 2014, 11:14:17 pm »
1st version OK for Lazarus, if you open Demo.dpr file, add Interfaces unit (as IDE tells! do it.) and run, you ll see working tab app.
I tested on Win. Of coz, I test later on M+L
«
Last Edit: May 22, 2014, 11:16:24 pm by Alex22
»
Logged
CudaText editor
-
ATSynEdit
-
More from me
andersonscinfo
Full Member
Posts: 156
Re: atTabs: TabControl in Sublime style
«
Reply #7 on:
May 23, 2014, 12:51:26 am »
Tested on Linux using Lazarus with FPC 2.6.2 RC1 1.2, ran cool, just seemed a bit slow, but it works perfect.
Att
Anderson Junior
Logged
AlexTP
Hero Member
Posts: 2715
Re: atTabs: TabControl in Sublime style
«
Reply #8 on:
May 23, 2014, 01:23:06 am »
Good- tkx! I test Lin later. No even Linux here
I ll add buttons <<, >> to scroll Long list.
Logged
CudaText editor
-
ATSynEdit
-
More from me
andersonscinfo
Full Member
Posts: 156
Re: atTabs: TabControl in Sublime style
«
Reply #9 on:
May 23, 2014, 02:43:16 am »
Getting this Very beautiful, congratulations.
Att.
Anderson Junior
Logged
kapibara
Hero Member
Posts: 662
Re: atTabs: TabControl in Sublime style
«
Reply #10 on:
May 23, 2014, 05:58:07 am »
Alex22: Ah, there is no border. sorry I missed that.
Seems to work fine under Windows 7 and FPC 2.7.1 - Lazarus SVN 44339
Logged
Lazarus trunk / fpc 3.3.1 / Kubuntu 24.04 - 64 bit
AlexTP
Hero Member
Posts: 2715
Re: atTabs: TabControl in Sublime style
«
Reply #11 on:
May 24, 2014, 01:19:49 am »
Im near beta.Updated. Buttons < > don't work yet (and scrollin)
Anyone may test it on Mac
?? Please. Does it work, slow or not
Logged
CudaText editor
-
ATSynEdit
-
More from me
kapibara
Hero Member
Posts: 662
Re: atTabs: TabControl in Sublime style
«
Reply #12 on:
May 24, 2014, 06:37:07 am »
Good progress. However I should report that in the latest version, the TabControl as a whole flickers when the mouse moves over it. (here: Lazarus/fpc 2.7.1/win7)
Logged
Lazarus trunk / fpc 3.3.1 / Kubuntu 24.04 - 64 bit
zeljko
Hero Member
Posts: 1959
Re: atTabs: TabControl in Sublime style
«
Reply #13 on:
May 24, 2014, 05:10:16 pm »
Works nice with Qt LCL under linux, mswin and mac.
Logged
AlexTP
Hero Member
Posts: 2715
-
«
Reply #14 on:
May 24, 2014, 05:12:13 pm »
Thanks for testin (I don't have a mac)
Logged
CudaText editor
-
ATSynEdit
-
More from me
Print
Pages: [
1
]
2
« previous
next »
Lazarus
»
Forum
»
Programming
»
Packages and Libraries
»
ATTabs: lite tab control
TinyPortal
© 2005-2018