Hello Sieghard.

I will do it step by step.

Fisrt: MSEclock.

It compiles and runs fine. (when copy all files from /MSEclock/newdialogs/ into 
MSEclock)
- The Font dialog: very nice and usefull, t should be added in 
MSEgui/MSEdialogs.
I suppose that the options Bold, Italic, Underline, Strikeout, Blank are not 
yet enabled because in the test-caption it does not work.
(See attachment)

' Rounded form works well too.
  I like your method Self.Window.RecreateWindow; (that I will deeply studdy)
  Maybe it would be good to make the clock movable (with click+hold on the 
clock-form).
  Something like this:

var
oripoint  :  pointty;
....

procedure tclockworkfo.ev_onmouseevent(const sender: twidget;
               var ainfo: mouseeventinfoty);
begin
  if ainfo.eventkind = ek_buttonpress then
    begin
      ispressed := True;
      oripoint  := ainfo.pos;
      cursor := cr_pointinghand;
    end;
  if ainfo.eventkind = ek_buttonrelease then
    begin
      ispressed := False;
      cursor := cr_default;
    end;
  if (ispressed = True) and (ainfo.eventkind = ek_mousemove) then
    begin
      left := left + ainfo.pos.x - oripoint.x;
      top  := top + ainfo.pos.y - oripoint.y;
    end;
end;

. Language selection is OK too.

I see in /MSEclock/newdialogs/ lot of dialogs-units, did you change all those 
dialogs from original MSEsource?
If yes, what is mainly changed?

I will not eat all your other delicious code tonnight and keep some for today.

Congrats and thanks Seighard.

Fre;D
_______________________________________________
mseide-msegui-talk mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk

Reply via email to