mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
This PR adds the features CPUserNotification and CPUserNotificationCenter in Foundation. The CPUserNotificationCenter allows you to send user notification to the system. Right now, we only propose what the W3C proposes. We can set for a notification the title, informativeText and the icon. We only support local notification yet. The protocol CPUserNotificationCenterDelegate has been added as well. Test app in Tests/Manual/CPUserNotificationTest
101 lines
2.7 KiB
Plaintext
Executable File
101 lines
2.7 KiB
Plaintext
Executable File
/*
|
|
* Foundation.j
|
|
* Foundation
|
|
*
|
|
* Created by Francisco Tolmasky.
|
|
* Copyright 2008, 280 North, Inc.
|
|
*
|
|
* This library 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 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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 this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
@import "_CGGeometry.j"
|
|
@import "CPArray.j"
|
|
@import "CPBundle.j"
|
|
@import "CPByteCountFormatter.j"
|
|
@import "CPCache.j"
|
|
@import "CPCharacterSet.j"
|
|
@import "CPCoder.j"
|
|
@import "CPComparisonPredicate.j"
|
|
@import "CPCompoundPredicate.j"
|
|
@import "CPData.j"
|
|
@import "CPDate.j"
|
|
@import "CPDateFormatter.j"
|
|
@import "CPDecimal.j"
|
|
@import "CPDecimalNumber.j"
|
|
@import "CPDelayedPerform.j"
|
|
@import "CPDictionary.j"
|
|
@import "CPEnumerator.j"
|
|
@import "CPError.j"
|
|
@import "CPException.j"
|
|
@import "CPExpression.j"
|
|
@import "CPFormatter.j"
|
|
@import "CPIndexPath.j"
|
|
@import "CPIndexSet.j"
|
|
@import "CPInvocation.j"
|
|
@import "CPJSONPConnection.j"
|
|
@import "CPKeyedArchiver.j"
|
|
@import "CPKeyedUnarchiver.j"
|
|
@import "CPKeyValueCoding.j"
|
|
@import "CPKeyValueObserving.j"
|
|
@import "CPLocale.j"
|
|
@import "CPMutableArray.j"
|
|
@import "CPMutableSet.j"
|
|
@import "CPNotification.j"
|
|
@import "CPNotificationCenter.j"
|
|
@import "CPNull.j"
|
|
@import "CPNumber.j"
|
|
@import "CPNumberFormatter.j"
|
|
@import "CPObject.j"
|
|
@import "CPObjJRuntime.j"
|
|
@import "CPOperation.j"
|
|
@import "CPOperationQueue.j"
|
|
@import "CPPredicate.j"
|
|
@import "CPPropertyListSerialization.j"
|
|
@import "CPRange.j"
|
|
@import "CPRunLoop.j"
|
|
@import "CPScanner.j"
|
|
@import "CPSet.j"
|
|
@import "CPSortDescriptor.j"
|
|
@import "CPString.j"
|
|
@import "CPTimer.j"
|
|
@import "CPTimeZone.j"
|
|
@import "CPUndoManager.j"
|
|
@import "CPURL.j"
|
|
@import "CPURLConnection.j"
|
|
@import "CPURLError.j"
|
|
@import "CPURLRequest.j"
|
|
@import "CPURLResponse.j"
|
|
@import "CPUserDefaults.j"
|
|
@import "CPUserNotification.j"
|
|
@import "CPUserNotificationCenter.j"
|
|
@import "CPUserSessionManager.j"
|
|
@import "CPValue.j"
|
|
@import "CPValueTransformer.j"
|
|
|
|
/*! @mainpage
|
|
Cappuccino is distributed under the @ref license "GNU LGPL".
|
|
|
|
@htmlinclude README.html
|
|
|
|
@page license License
|
|
@htmlonly <pre>@endhtmlonly
|
|
@htmlinclude LICENSE
|
|
@htmlonly </pre>@endhtmlonly
|
|
|
|
@defgroup appkit AppKit
|
|
@defgroup foundation Foundation
|
|
@defgroup compatability Cocoa Compatability
|
|
*/
|