/*
* $Id: STConstants.m 227 2011-08-14 12:17:49Z stuart $
*
* SafariTabs
* http://stuconnolly.com/projects/safaritabs/
*
* Copyright (c) 2010 Stuart Connolly. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#import "STConstants.h"
// Preference keys
NSString *STTabRestoreLaunchAction
= @"STTabRestoreLaunchAction";
NSString *STTabRestoreQuitAction
= @"STTabRestoreQuitAction";
NSString *STTabWindowSaveOption
= @"STTabWindowSaveOption";
NSString *STCheckForUpdates
= @"STCheckForUpdates";
NSString *STWindowsAndTabs
= @"STWindowsAndTabs";
NSString *STForceNewWindowsInTabs
= @"STForceNewWindowsInTabs";
NSString *STForceNewWindowsInTabsInBackground
= @"STForceNewWindowsInTabsInBackground";
// Info.plist keys
NSString *STSupportedSafariVersions
= @"STSupportedSafariVersions";
NSString *STMinSafariVersion
= @"STMinSafariVersion";
NSString *STMaxSafariVersion
= @"STMaxSafariVersion";
// XML update plist keys
NSString *STUserVersionKey
= @"SafariTabsUserVersion";
NSString *STBundleVersionKey
= @"SafariTabsBundleVersion";
NSString *STDownloadURLKey
= @"SafariTabsDownloadURL";
// Saved tabs dictionary keys
NSString *STTabTitleKey
= @"STTabTitleKey";
NSString *STTabIconKey
= @"STTabIconKey";
// Other
NSString *STVersionNumberSeparator
= @".";
NSString *STDefaultsPlistName
= @"Defaults";
NSString *STPreferencesNibName
= @"STPreferences";
NSString *STBundleIdentifier
= @"com.connolly.SafariTabs";
// Table view column identifiers
NSString *STTableViewTabTitleColumnIdentifier
= @"tabTitle";