Inheritance: MonoMac.Foundation.NSObject
Esempio n. 1
0
        public UI()
        {
            // FIXME: The second time windows are shown, the windows
            // don't have the smooth ease in animation, but appear abruptly.
            // The ease out animation always seems to work
            Setup   = new Setup();
            About   = new About();
            Bubbles = new Bubbles();
            //StatusIcon = new StatusIcon ();

            Program.Controller.UIHasLoaded();
        }
Esempio n. 2
0
        public UI()
        {
            using (var a = new NSAutoreleasePool())
            {
                GrowlApplicationBridge.WeakDelegate = this;
                GrowlApplicationBridge.Delegate     = new CmisSyncGrowlDelegate();

                NSApplication.SharedApplication.ApplicationIconImage = NSImage.ImageNamed("cmissync-app.icns");

                SetFolderIcon();

                Setup      = new Setup();
                About      = new About();
                Bubbles    = new Bubbles();
                StatusIcon = new StatusIcon();

                Program.Controller.UIHasLoaded();
            }
        }
Esempio n. 3
0
        public UI ()
        {
            using (var a = new NSAutoreleasePool ())
            {
                GrowlApplicationBridge.WeakDelegate = this;
                GrowlApplicationBridge.Delegate     = new CmisSyncGrowlDelegate ();

                NSApplication.SharedApplication.ApplicationIconImage = NSImage.ImageNamed ("cmissync-app.icns");

                SetFolderIcon ();
    
                Setup      = new Setup ();
                About      = new About ();
                Bubbles    = new Bubbles ();
                StatusIcon = new StatusIcon ();

                Program.Controller.UIHasLoaded ();
            }
        }