www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Is there any web browser control in D Lang to display html file ?

reply Jayam <sathanu26 yahoo.com> writes:
I creating one simple desktop application using dlang. I need to 
display some html file in my desktop application. How can make it 
works ?
Mar 16 2018
next sibling parent reply Alex <sascha.orlov gmail.com> writes:
On Friday, 16 March 2018 at 10:31:51 UTC, Jayam wrote:
 I creating one simple desktop application using dlang. I need 
 to display some html file in my desktop application. How can 
 make it works ?
Do you mean something like this? http://vibed.org/api/diet.dom/
Mar 16 2018
parent reply bauss <jj_1337 live.dk> writes:
On Friday, 16 March 2018 at 10:52:14 UTC, Alex wrote:
 On Friday, 16 March 2018 at 10:31:51 UTC, Jayam wrote:
 I creating one simple desktop application using dlang. I need 
 to display some html file in my desktop application. How can 
 make it works ?
Do you mean something like this? http://vibed.org/api/diet.dom/
I think he means something like an embedded web browser component.
Mar 16 2018
parent reply Jayam <sathanu26 yahoo.com> writes:
On Friday, 16 March 2018 at 10:53:39 UTC, bauss wrote:
 On Friday, 16 March 2018 at 10:52:14 UTC, Alex wrote:
 On Friday, 16 March 2018 at 10:31:51 UTC, Jayam wrote:
 I creating one simple desktop application using dlang. I need 
 to display some html file in my desktop application. How can 
 make it works ?
Do you mean something like this? http://vibed.org/api/diet.dom/
I think he means something like an embedded web browser component.
Yes, I need component like Web Browser of windows form.
Mar 16 2018
parent bauss <jj_1337 live.dk> writes:
On Friday, 16 March 2018 at 11:04:31 UTC, Jayam wrote:
 On Friday, 16 March 2018 at 10:53:39 UTC, bauss wrote:
 On Friday, 16 March 2018 at 10:52:14 UTC, Alex wrote:
 On Friday, 16 March 2018 at 10:31:51 UTC, Jayam wrote:
 I creating one simple desktop application using dlang. I 
 need to display some html file in my desktop application. 
 How can make it works ?
Do you mean something like this? http://vibed.org/api/diet.dom/
I think he means something like an embedded web browser component.
Yes, I need component like Web Browser of windows form.
I don't think there is any written in D, but you could probably bind against webkit or gecko.
Mar 16 2018
prev sibling next sibling parent Jesse Phillips <Jesse.K.Phillips+D gmail.com> writes:
On Friday, 16 March 2018 at 10:31:51 UTC, Jayam wrote:
 I creating one simple desktop application using dlang. I need 
 to display some html file in my desktop application. How can 
 make it works ?
I believe on is available in dtw. http://help.eclipse.org/kepler/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fapi%2Forg%2Feclipse%2Fswt%2Fbrowser%2FBrowser.html
Mar 16 2018
prev sibling parent reply visitor <visitor gmail.com> writes:
On Friday, 16 March 2018 at 10:31:51 UTC, Jayam wrote:
 I creating one simple desktop application using dlang. I need 
 to display some html file in my desktop application. How can 
 make it works ?
There's also gtkd sourceview : https://github.com/gtkd-developers/GtkD/tree/master/generated/sourceview
Mar 16 2018
parent reply aberba <karabutaworld gmail.com> writes:
On Friday, 16 March 2018 at 17:11:17 UTC, visitor wrote:
 On Friday, 16 March 2018 at 10:31:51 UTC, Jayam wrote:
 I creating one simple desktop application using dlang. I need 
 to display some html file in my desktop application. How can 
 make it works ?
There's also gtkd sourceview : https://github.com/gtkd-developers/GtkD/tree/master/generated/sourceview
I think you mean Gtk web view. It comes from WebKit.
Mar 16 2018
parent visitor <visitor gmail.com> writes:
On Friday, 16 March 2018 at 20:19:59 UTC, aberba wrote:
 On Friday, 16 March 2018 at 17:11:17 UTC, visitor wrote:
 On Friday, 16 March 2018 at 10:31:51 UTC, Jayam wrote:
 I creating one simple desktop application using dlang. I need 
 to display some html file in my desktop application. How can 
 make it works ?
There's also gtkd sourceview : https://github.com/gtkd-developers/GtkD/tree/master/generated/sourceview
I think you mean Gtk web view. It comes from WebKit.
oh yes, my bad, misreading, i thought OP wanted syntax highlighting and stuff...
Mar 16 2018