Hello Martin.

> You never used that window in order to select an editor page? 

Yes and it is great.

> I think one should be thrifty with hint popups

Yes but, maybe it is because I like Geany IDE...
It also give a Tab-hint of the full path if you mouse-move on a tab.
And I recognize that lot of Geany-ideas give inspiration to ideU.

And you know what, now that tab-hint is enabled in ideU source-editor, I
like it so much that I added also the full-path + date of modification +
size in Kb.

procedure tsourcefo.updatehinttab;
var
x : integer;
ainfo: fileinfoty;

begin
for x:= 0 to files_tab.count-1 do 
begin
 getfileinfo(expandprmacros(tsourcepage(files_tab[x]).pathdisp.value),
ainfo);
tsourcepage(files_tab[x]).tabhint :=
tsourcepage(files_tab[x]).pathdisp.value 
+ ' | Date: ' + formatdatetime('YYYY-MM-DD HH:mm',ainfo.extinfo1.modtime) 
+ ' | Size: ' + IntToStr( ainfo.extinfo1.size div 1000) + ' Kb.'
end;
end;

By the way, is it possible to have a panel-hint with multi rows ?
(If no, no problems).

Thanks.

Fre;D



--
Sent from: http://mseide-msegui-talk.13964.n8.nabble.com/


_______________________________________________
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to