One Thumbnail per line
Moderators: Hacker, petermad, Stefan2, white
One Thumbnail per line
This is a exemple for a picture file :
Image: http://peter.mathias.free.fr/Total/Total.gif
And maybe for MP3 file. Total Commander use for Thumbnail a "folder.jpg" file on the directory.
Image: http://peter.mathias.free.fr/Total/Total.gif
And maybe for MP3 file. Total Commander use for Thumbnail a "folder.jpg" file on the directory.
I would like that too.
Currently I don't use the thumbnail mode very often, because it has a completely different layout than the standard mode. I have to set very big thumbnail size so I can see files' full names. Also, there is a different cursor navigation, not really compatible with my preferred SpecialCursorMovement=2.
This kind of layout would suit my needs much better.
Currently I don't use the thumbnail mode very often, because it has a completely different layout than the standard mode. I have to set very big thumbnail size so I can see files' full names. Also, there is a different cursor navigation, not really compatible with my preferred SpecialCursorMovement=2.
This kind of layout would suit my needs much better.
Windows 10 Pro x64, Windows 11 Pro x64
A similar feature has been requested in the German forum:
http://www.ghisler.ch/board/viewtopic.php?t=7703
and here:
http://ghisler.ch/board/viewtopic.php?t=34774
Don't miss the mockup:
http://ghisler.ch/board/viewtopic.php?p=250796#250796
http://www.ghisler.ch/board/viewtopic.php?t=7703
and here:
http://ghisler.ch/board/viewtopic.php?t=34774
Don't miss the mockup:
http://ghisler.ch/board/viewtopic.php?p=250796#250796
- ghisler(Author)
- Site Admin
- Posts: 50873
- Joined: 2003-02-04, 09:46 UTC
- Location: Switzerland
- Contact:
That's actually what the Android version does. Unfortunately it's not possible on Windows to create a listbox where the height of a line changes. Therefore all the lines would have to use the larger height for the images.
Author of Total Commander
https://www.ghisler.com
https://www.ghisler.com
Please try the following:ghisler(Author) wrote:Unfortunately it's not possible on Windows to create a listbox where the height of a line changes. Therefore all the lines would have to use the larger height for the images.
Code: Select all
unit Unit1;
interface
uses
Classes, Controls, Forms, StdCtrls;
type
TForm1 = class(TForm)
ListBox1: TListBox;
procedure FormCreate(Sender: TObject);
procedure ListBox1MeasureItem(Control: TWinControl; Index: Integer; var Height: Integer);
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.FormCreate(Sender: TObject);
begin
{You may set this also in the Property Editor}
ListBox1.Style:=lbOwnerDrawVariable;
ListBox1.OnMeasureItem:=ListBox1MeasureItem;
ListBox1.Items.Add('aaa');
ListBox1.Items.Add('bbb');
ListBox1.Items.Add('ccc');
ListBox1.Items.Add('ddd');
ListBox1.Items.Add('eee');
end;
procedure TForm1.ListBox1MeasureItem(Control: TWinControl; Index: Integer; var Height: Integer);
begin
Height:=10+Random(50);
end;
end.
One Thumbnail per line
This in my opinion would be a very useful feature. Also I vote for mp3 files to be supported in this way.
Re: One Thumbnail per line
What do you mean? The only thing that comes to my mind is an embedded album image. Does Explorer show them as thumbnails? (I don't know, 'cause I don't have such files.)Dennis41 wrote:Also I vote for mp3 files to be supported in this way.
Windows 10 Pro x64, Windows 11 Pro x64
Re: One Thumbnail per line
Not necessarily with the pictures (of embedded album images) but it would be nice if pictures could be included. Primarily I meant the native support of mp3, flac, ogg. And to be presented in the similar way as Crisis presented above.