dev.stuconnolly.com / svn / safaritabs

  1. /*
  2.  *  $Id: AppController-FileInternal.h 198 2010-01-06 23:05:30Z 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 "AppController.h"
  24.  
  25. @interface AppController (FileInternal)
  26.  
  27. + (void)_initializeNSUserDefaults;
  28. + (void)_initializeSQLiteDatabases;
  29. + (void)_initializeURLCache;
  30. + (void)_initializeWebIconDatabase;
  31. + (void)_registerForCustomURLSchemes;
  32. + (id)_settingsDirectoryPath;
  33. - (BOOL)_OKToCloseBrowserWindowsForExplicitCloseAllCommand:(BOOL)arg1;
  34. - (void)_cancelModalCloseAllConfirmation;
  35. - (id)_closeAllMenuItem;
  36. - (id)_closeCurrentTabMenuItem;
  37. - (id)_closeInactiveTabsMenuItem;
  38. - (id)_closeMenuItem;
  39. - (void)_computeLastSessionStateIfNecessary;
  40. - (BOOL)_confirmStealthMode;
  41. - (void)_defaultsDidChange;
  42. - (id)_editMenu;
  43. - (void)_enableStealthMode;
  44. - (id)_fileMenu;
  45. - (void)_handleURLEvent:(id)arg1 withReplyEvent:(id)arg2;
  46. - (void)_hideBookmarksMenu;
  47. - (void)_insertShowHideTabBarMenuItem;
  48. - (id)_lastSessionFile;
  49. - (id)_lastSessionState;
  50. - (void)_newWindowFromDock:(id)arg1;
  51. - (BOOL)_openUntitledFileWhileLaunching:(BOOL)arg1;
  52. - (void)_parentalControlsDidChange;
  53. - (void)_performDelayedLaunchOperations;
  54. - (void)_reopenWindows;
  55. - (void)_savePendingData:(id)arg1;
  56. - (void)_saveSessionNow;
  57. - (void)_setKeyEquivalentForMenuItem:(id)arg1 toIncludeShiftKey:(BOOL)arg2;
  58. - (void)_showBookmarksMenu;
  59. - (void)_showHTMLResourceFile:(id)arg1;
  60. - (void)_showResourceFileWithName:(id)arg1 extension:(id)arg2;
  61. - (void)_startBonjourSearchIfNecessary;
  62. - (void)_togglePrivateBrowsingSuppressingConfirmation:(BOOL)arg1;
  63. - (void)_updateCloseKeyEquivalents;
  64. - (void)_updateCreateWebClipMenuItem;
  65. - (BOOL)_updateLastClosedWindowStateForWindow:(id)arg1;
  66. - (void)_updateTextEncodingMenu;
  67. - (BOOL)_userHasEmptyHomePage;
  68.  
  69. @end
  70.  
  71.