Page 1 of 1

Views/Aura in simple words ?

PostPosted: Fri Sep 22, 2017 2:48 pm
by Tom741
Hello,
Last time I played with CEF was with the 2623. I just downloaded the last one available on spotify binaries (3163) to start a new project.
I saw some code related to "views" that could be interesting for me, however:
- Can someone explain to me the major differences of using it or not ? (I can't consider myself as a very experienced CEF user).

- I saw some code related to child/parent manipulation. My typical usage of CEF is the following:
    * I have an App that spawn another process (let say cefsimple to stay... simple^^).
    * After the cefsimple process is spawned, I set the parent to be my App
    * I do some style/move modification and here you go, I have cefsimple integrated in my App.
    * Communication between the App and cefsimple process is mainly done with SendMessage (on Windows)
Does this Aura/views thingy can help me to integrate CEF in my App more easily ?

Many thanks,

Re: Views/Aura in simple words ?

PostPosted: Fri Sep 22, 2017 3:55 pm
by magreenblatt
For a description of the views framework see https://bitbucket.org/chromiumembedded/cef/issues/1749. What functionality do you need in the window after you create it?

Re: Views/Aura in simple words ?

PostPosted: Fri Sep 29, 2017 10:32 am
by Tom741
Hello,
Sorry for the late reply.

I just need to have a simple way of spawning/communicating between the Main app and cefsimple.
Both are 2 different processes and I handle the com with SendMessage/PostMessage which is not really ideal (but it works ^^).

As an example, if I want to make a "browser" with multiple tabs, each tabs as a a different cefsimple process (in case one of the tab crashes), can it help me ?

Thanks,