dev.stuconnolly.com / svn / safaritabs

  1. /*
  2.  *  $Id: STConstants.m 227 2011-08-14 12:17:49Z stuart $
  3.  *
  4.  *  SafariTabs
  5.  *  http://stuconnolly.com/projects/safaritabs/
  6.  *
  7.  *  Copyright (c) 2010 Stuart Connolly. All rights reserved.
  8.  *
  9.  *  This program is free software: you can redistribute it and/or modify
  10.  *  it under the terms of the GNU General Public License as published by
  11.  *  the Free Software Foundation, either version 3 of the License, or
  12.  *  (at your option) any later version.
  13.  *
  14.  *  This program is distributed in the hope that it will be useful,
  15.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17.  *  GNU General Public License for more details.
  18.  *
  19.  *  You should have received a copy of the GNU General Public License
  20.  *  along with this program. If not, see <http://www.gnu.org/licenses/>.
  21.  */
  22.  
  23. #import "STConstants.h"
  24.  
  25. // Preference keys
  26. NSString *STTabRestoreLaunchAction            = @"STTabRestoreLaunchAction";
  27. NSString *STTabRestoreQuitAction              = @"STTabRestoreQuitAction";
  28. NSString *STTabWindowSaveOption               = @"STTabWindowSaveOption";
  29. NSString *STCheckForUpdates                   = @"STCheckForUpdates";
  30. NSString *STWindowsAndTabs                    = @"STWindowsAndTabs";
  31. NSString *STForceNewWindowsInTabs             = @"STForceNewWindowsInTabs";
  32. NSString *STForceNewWindowsInTabsInBackground = @"STForceNewWindowsInTabsInBackground";
  33.  
  34. // Info.plist keys
  35. NSString *STUpdateURL                         = @"STUpdateURL";
  36. NSString *STSupportedSafariVersions           = @"STSupportedSafariVersions";
  37. NSString *STMinSafariVersion                  = @"STMinSafariVersion";
  38. NSString *STMaxSafariVersion                  = @"STMaxSafariVersion";
  39.  
  40. // XML update plist keys
  41. NSString *STUserVersionKey                    = @"SafariTabsUserVersion";
  42. NSString *STBundleVersionKey                  = @"SafariTabsBundleVersion";
  43. NSString *STDownloadURLKey                    = @"SafariTabsDownloadURL";
  44.  
  45. // Saved tabs dictionary keys
  46. NSString *STTabTitleKey                       = @"STTabTitleKey";
  47. NSString *STTabURLKey                         = @"STTabURLKey";
  48. NSString *STTabIconKey                        = @"STTabIconKey";
  49.  
  50. // Other
  51. NSString *STVersionNumberSeparator            = @".";
  52. NSString *STDefaultsPlistName                 = @"Defaults";
  53. NSString *STPreferencesNibName                = @"STPreferences";
  54. NSString *STBundleIdentifier                  = @"com.connolly.SafariTabs";
  55.  
  56. // Table view column identifiers
  57. NSString *STTableViewTabTitleColumnIdentifier = @"tabTitle";
  58.