Page 1 of 1

Panelgadget Multirows Option

Posted: Sun Dec 06, 2009 4:10 am
by Guimauve
Hello,

For the moment I use a function like this to force the PanelGadget to display it's Tab in Multirows.

Code: Select all

Procedure ForcePanelGadgetToMultiRows(GadgetID.l)
  
  OldStyle.l = GetWindowLongPtr_(GadgetID(GadgetID), #GWL_STYLE)
  NewStyle.l = OldStyle | #TCS_MULTILINE | #TCS_RIGHTJUSTIFY
  SetWindowLongPtr_(GadgetID(GadgetID), #GWL_STYLE, NewStyle)
  SetGadgetState(GadgetID, 0)
  
EndProcedure
But it should be nice to have an option on the current PanelGadget to control this behaviour.

Best Regards

Guimauve

Re: Panelgadget Multirows Option

Posted: Sun Dec 06, 2009 1:37 pm
by Fluid Byte
That request will never happen since it's not possible on Mac and Linux.