ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 Toolbar suggestions

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
PeterPanino Posted - Feb 04 2025 : 14:59:30
1. When a toolbar button shows a dialog (e.g., the Brush Properties dialog, etc.) and the Form owning the ImageEn toolbar has FormStyle = fsStayOnTop, then the dialog shown by the toolbar button is RANDOMLY hidden behind the Form. To prevent this, such internal dialogs should be shown by using a mechanism like the following one:

var OldSelfFormStyle := Self.FormStyle;
Self.FormStyle := fsNormal;
try
  SHOWINTERNALDIALOG;     
finally
  Self.FormStyle := OldSelfFormStyle;
end;


2. Apply suitable toolbar button actions to the selection if a selection exists: For example, if a selection exists, then the actions from this toolbar menu should be applied to the selection:



3. Although ImageEnViewToolbar.Wrapable = True, the toolbar does not wrap around. BTW, the term "Wrapable" cannot be found in the CHM documentation.