[Suggestion] Copying/moving tabs
Moderators: Hacker, petermad, Stefan2, white
- Ivan Moratinos
- Junior Member
- Posts: 46
- Joined: 2003-11-25, 16:13 UTC
- Location: Spain
[Suggestion] Copying/moving tabs
I don't remember if someone suggested this before.
Now, if you drag a tab between panes, the tab is copied. It would be very useful if tabs could be moved too (holding shift key while dragging for instance)
Now, if you drag a tab between panes, the tab is copied. It would be very useful if tabs could be moved too (holding shift key while dragging for instance)
Esperanto estas la solvo - http://ikso.net/
Move Tabs
2Ivan Moratinos
Hi!
Rearrange tabs:
Simply by drag&drop to the desired position, even on the other panel.
Help & Tutorial...
Kind regards
Clo
Hi!
Rearrange tabs:
Simply by drag&drop to the desired position, even on the other panel.
Help & Tutorial...

Clo
#31505 Traducteur Français de T•C French translator Aide en Français Tutoriels Français English Tutorials
Re: [Suggestion] Copying/moving tabs
I've recommended this to Christian along with being able to double-click on a blank part of the tab bar to create a new tab, being able to drag a tab to a panel to copy (or move) that directory to the directory in the panel, etc.Ivan Moratinos wrote:I don't remember if someone suggested this before.
Now, if you drag a tab between panes, the tab is copied. It would be very useful if tabs could be moved too (holding shift key while dragging for instance)
- Ivan Moratinos
- Junior Member
- Posts: 46
- Joined: 2003-11-25, 16:13 UTC
- Location: Spain
Great!... like in Opera browserRandy wrote:I've recommended this to Christian along with being able to double-click on a blank part of the tab bar to create a new tab

I know that. But in TC you cannot move a tab by drag&drop now.Clo wrote:Simply by drag&drop to the desired position, even on the other panel.
Help & Tutorial...
Esperanto estas la solvo - http://ikso.net/
- pdavit
- Power Member
- Posts: 1529
- Joined: 2003-02-05, 21:41 UTC
- Location: Kavala -> Greece -> Europe -> Earth -> Solar System -> Milky Way -> Space
- Contact:
Yes, I do also like the Opera functionality over tabs. I also like the ability to make some actions via mouse gestures. If this is integrated to TC as well it would be very functional and fast to use.
What I also like about Opera is that you can configure how the wheel mouse button will behave. I've set it up so whenever a wheel-click a link that link will be opened on a new tab in the background. A similar behavior for folders in TC would be really welcome!
What I also like about Opera is that you can configure how the wheel mouse button will behave. I've set it up so whenever a wheel-click a link that link will be opened on a new tab in the background. A similar behavior for folders in TC would be really welcome!
"My only reason for still using M$ Window$ as an OS is the existence of Total Commander!"
Christian Ghisler Rules!!!
Christian Ghisler Rules!!!
- ghisler(Author)
- Site Admin
- Posts: 50479
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
Unfortunately I don't seem to get any notification on this double click, neither from Windows nor from the Delphi control.I've recommended this to Christian along with being able to double-click on a blank part of the tab bar to create a new tab
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
Get infos---
2ghisler(Author)
Hello Mr. Ghisler!
• This double-click on a blank location exists in the MyIE2 - interface-program for IE... It works quite fine!
Maybe could you contact the author(s) of MyIE2 to get some infos?
http://www.myie2.com
¤ There is none e-mail in the program-help... Also a Forum:
http://myiebbs.yeah.net
Hoping that'll help you,
Best regards,
Claude
Clo
Hello Mr. Ghisler!
• This double-click on a blank location exists in the MyIE2 - interface-program for IE... It works quite fine!
Maybe could you contact the author(s) of MyIE2 to get some infos?
http://www.myie2.com
¤ There is none e-mail in the program-help... Also a Forum:
http://myiebbs.yeah.net
Hoping that'll help you,

Claude
Clo
#31505 Traducteur Français de T•C French translator Aide en Français Tutoriels Français English Tutorials
- ghisler(Author)
- Site Admin
- Posts: 50479
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
Unfortunately I don't - it's sent to that control. I will probably have to subclass that window. But this doesn't solve everything - I will get the message also when clicking on a button, so I will have to figure out when the empty space is hit. You see, a lot of work for a small function.
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
2ghisler(Author)
Entire project can be downloaded from my homepage. The link is on the very bottom of the page.
I think the problem here is to define what "free space" is? In the example above, where a listbox is placed inside the tabcontrol, all middle mouse button clicks that are performed not directly on the form, on the listbox or on the tab buttons are recognized as clicks inside "free space"....
Code: Select all
procedure TFormTab.TabControlMouseUp(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
if (Button = mbMiddle) then
begin
ListBox.Items.Add('tab button');
end;
end;
procedure TFormTab.FormMouseUp(Sender: TObject; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer);
begin
// Clicked inside the TabControl
if ( (Button = mbMiddle) and
(X >= TabControl.Left) and
(X <= (TabControl.Width + TabControl.Left)) and
(Y >= TabControl.Top) and
(Y <= (TabControl.Height + TabControl.Top))) then
begin
ListBox.Items.Add('clicked inside free space');
end;
end;
I think the problem here is to define what "free space" is? In the example above, where a listbox is placed inside the tabcontrol, all middle mouse button clicks that are performed not directly on the form, on the listbox or on the tab buttons are recognized as clicks inside "free space"....