You can add a html file as a resource by adding it as a DATA resource.
For example: 'DATA' 2024 "HTML Resource" { "BrowserContent.html" } The
resource can be loaded like this (I did not compile it): GS::UniString
htmlStr; GSHandle resHandle = RSLoadR...
And you can also show a webpage inside your dialog by adding a
DG::Browser dialog item and loading the URL by calling the LoadURL
(const GS::UniString& url) member function.
You can detect right mouse click by implementing/overriding the virtual
void ListBoxContextMenuRequested (const ListBoxContextMenuEvent& ev,
bool* processed); virtual function of the ListboxObserver. And you can
create a custom context menu like this...
The right mouse click usually invokes a context menu request. In case of
the listbox control a right click in the header results a notification
in the attached observer: virtual void ListBoxContextMenuRequested
(const ListBoxContextMenuEvent& ev, boo...