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
Pdf Viewer in Pascal
by
hedgehog
[
Today
at 07:57:23 am]
Very rough version of a s...
by
hedgehog
[
Today
at 07:21:25 am]
Which Control should I us...
by
paweld
[
Today
at 05:29:26 am]
Single and Double, Conver...
by
jamie
[
Today
at 12:00:51 am]
[New Component] ExtTabCtr...
by
wp
[June 13, 2026, 11:08:05 pm]
Lazarus Bugfix Release 4....
by
Martin_fr
[June 13, 2026, 11:02:41 pm]
Error with last fixes_3.2...
by
Fred vS
[June 13, 2026, 10:49:27 pm]
TCHATGPT — An Artificial ...
by
marcelomaurinmartins@gmai
[June 13, 2026, 10:14:50 pm]
Lazarus 4.8 on Sourceforg...
by
Enos68
[June 13, 2026, 08:00:47 pm]
Can /my/ AI help me with ...
by
microxa
[June 13, 2026, 06:49:37 pm]
Conscious Artificial Inte...
by
Dzandaa
[June 13, 2026, 05:59:22 pm]
If FileExists(
by
Bart
[June 13, 2026, 05:57:26 pm]
SynEdit theme
by
Martin_fr
[June 13, 2026, 05:17:43 pm]
docked IDE and form capti...
by
Paolo
[June 13, 2026, 02:53:50 pm]
New version of LazMapView...
by
wp
[June 13, 2026, 12:09:27 pm]
PadXml 1.1.0 – Portable A...
by
AlexanderT
[June 13, 2026, 10:38:42 am]
Arkanoid
by
Tomi
[June 13, 2026, 09:46:46 am]
Interesting video
by
Joanna
[June 13, 2026, 06:24:53 am]
IndySecOpenSSL is now ava...
by
TheMouseAUS
[June 13, 2026, 03:49:17 am]
Message CM_ShowingChanged...
by
LeP
[June 13, 2026, 02:13:51 am]
Fast Canvas Library V1.05...
by
Gigatron
[June 13, 2026, 01:48:44 am]
[SOLVED]Program experienc...
by
Cainnech
[June 13, 2026, 12:19:17 am]
TATTabs - how to stop a 3...
by
bobonwhidbey
[June 13, 2026, 12:03:15 am]
If you are looking for Wi...
by
avra
[June 12, 2026, 07:37:10 pm]
Testing with 3.2.4 prepar...
by
Martin_fr
[June 12, 2026, 03:50:17 pm]
« previous
next »
Print
Pages: [
1
]
2
Author
Topic: ATTabs: lite tab control (Read 17462 times)
AlexTP
Hero Member
Posts: 2714
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: 2714
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: 2714
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: 2714
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: 2714
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: 2714
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: 1958
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: 2714
-
«
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