Esempio n. 1
0
        public static int Main(string[] args)
        {
            Application.Init ();

            MozWindow main_win = new MozWindow("/tmp/mono-test", "MonoSharpTest");

            Application.Run ();
            return 0;
        }
Esempio n. 2
0
        void moz_new_win_cb(object obj, NewWindowArgs args)
        {
            MozWindow new_win  = new MozWindow(args.Chromemask);

              args.NewEmbed = new_win.moz_widget;
        }