mirror of https://github.com/BOINC/boinc.git
54 lines
1.9 KiB
Plaintext
54 lines
1.9 KiB
Plaintext
|
// This file is part of BOINC.
|
||
|
// http://boinc.berkeley.edu
|
||
|
// Copyright (C) 2013 University of California
|
||
|
//
|
||
|
// BOINC is free software; you can redistribute it and/or modify it
|
||
|
// under the terms of the GNU Lesser General Public License
|
||
|
// as published by the Free Software Foundation,
|
||
|
// either version 3 of the License, or (at your option) any later version.
|
||
|
//
|
||
|
// BOINC is distributed in the hope that it will be useful,
|
||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||
|
// See the GNU Lesser General Public License for more details.
|
||
|
//
|
||
|
// You should have received a copy of the GNU Lesser General Public License
|
||
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
// BOINCGUIApp.mm
|
||
|
|
||
|
#include "MacGUI.pch"
|
||
|
#include "BOINCGUIApp.h"
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
|
||
|
// Cocoa routines which are part of CBOINCGUIApp
|
||
|
|
||
|
// HideThisApp() is called from CBOINCGUIApp::ShowApplication(bool)
|
||
|
// and replaces a call of ShowHideProcess() which is deprecated
|
||
|
// under OS 10.9.
|
||
|
void CBOINCGUIApp::HideThisApp() {
|
||
|
[ NSApp hide:NSApp ];
|
||
|
}
|
||
|
|
||
|
// Override standard wxCocoa wxApp::CallOnInit() to allow Manager
|
||
|
// to run properly when launched hidden on login via Login Item.
|
||
|
bool CBOINCGUIApp::CallOnInit() {
|
||
|
NSAutoreleasePool *mypool = [[NSAutoreleasePool alloc] init];
|
||
|
|
||
|
NSEvent *event = [NSEvent otherEventWithType:NSApplicationDefined
|
||
|
location:NSMakePoint(0.0, 0.0)
|
||
|
modifierFlags:0
|
||
|
timestamp:0
|
||
|
windowNumber:0
|
||
|
context:nil
|
||
|
subtype:0 data1:0 data2:0];
|
||
|
[NSApp postEvent:event atStart:FALSE];
|
||
|
|
||
|
bool retVal = wxApp::CallOnInit();
|
||
|
|
||
|
[mypool release];
|
||
|
return retVal;
|
||
|
}
|
||
|
|