2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-05-03 10:53:54 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 08:58:59 +08:00
|
|
|
#ifndef ATOM_BROWSER_BROWSER_OBSERVER_H_
|
|
|
|
#define ATOM_BROWSER_BROWSER_OBSERVER_H_
|
2013-05-03 10:53:54 +08:00
|
|
|
|
2013-05-30 16:03:10 +08:00
|
|
|
#include <string>
|
|
|
|
|
2013-05-03 10:53:54 +08:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class BrowserObserver {
|
|
|
|
public:
|
2015-02-25 19:33:42 -08:00
|
|
|
// The browser is about to close all windows.
|
|
|
|
virtual void OnBeforeQuit(bool* prevent_default) {}
|
2015-02-25 21:57:25 -08:00
|
|
|
|
2013-05-03 10:53:54 +08:00
|
|
|
// The browser has closed all windows and will quit.
|
|
|
|
virtual void OnWillQuit(bool* prevent_default) {}
|
|
|
|
|
|
|
|
// The browser has closed all windows. If the browser is quiting, then this
|
|
|
|
// method will not be called, instead it will call OnWillQuit.
|
|
|
|
virtual void OnWindowAllClosed() {}
|
|
|
|
|
2014-09-25 21:47:54 +08:00
|
|
|
// The browser is quitting.
|
|
|
|
virtual void OnQuit() {}
|
|
|
|
|
2013-05-30 16:03:10 +08:00
|
|
|
// The browser has opened a file by double clicking in Finder or dragging the
|
|
|
|
// file to the Dock icon. (OS X only)
|
|
|
|
virtual void OnOpenFile(bool* prevent_default,
|
|
|
|
const std::string& file_path) {}
|
|
|
|
|
2013-07-10 16:10:38 +08:00
|
|
|
// Browser is used to open a url.
|
|
|
|
virtual void OnOpenURL(const std::string& url) {}
|
|
|
|
|
2014-03-05 18:09:44 +08:00
|
|
|
// The browser is activated with no open windows (usually by clicking on the
|
|
|
|
// dock icon).
|
|
|
|
virtual void OnActivateWithNoOpenWindows() {}
|
|
|
|
|
2013-05-30 19:12:14 +08:00
|
|
|
// The browser has finished loading.
|
2013-06-03 15:31:46 +08:00
|
|
|
virtual void OnWillFinishLaunching() {}
|
2013-05-30 19:12:14 +08:00
|
|
|
virtual void OnFinishLaunching() {}
|
|
|
|
|
2013-05-03 10:53:54 +08:00
|
|
|
protected:
|
|
|
|
virtual ~BrowserObserver() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2014-03-16 08:58:59 +08:00
|
|
|
#endif // ATOM_BROWSER_BROWSER_OBSERVER_H_
|