2013-05-03 02:53:54 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-05-03 02:53:54 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:58:59 +00:00
|
|
|
#ifndef ATOM_BROWSER_BROWSER_OBSERVER_H_
|
|
|
|
#define ATOM_BROWSER_BROWSER_OBSERVER_H_
|
2013-05-03 02:53:54 +00:00
|
|
|
|
2013-05-30 08:03:10 +00:00
|
|
|
#include <string>
|
|
|
|
|
2013-05-03 02:53:54 +00:00
|
|
|
namespace atom {
|
|
|
|
|
|
|
|
class BrowserObserver {
|
|
|
|
public:
|
|
|
|
// 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 13:47:54 +00:00
|
|
|
// The browser is quitting.
|
|
|
|
virtual void OnQuit() {}
|
|
|
|
|
2013-05-30 08:03:10 +00: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 08:10:38 +00:00
|
|
|
// Browser is used to open a url.
|
|
|
|
virtual void OnOpenURL(const std::string& url) {}
|
|
|
|
|
2014-03-05 10:09:44 +00:00
|
|
|
// The browser is activated with no open windows (usually by clicking on the
|
|
|
|
// dock icon).
|
|
|
|
virtual void OnActivateWithNoOpenWindows() {}
|
|
|
|
|
2013-05-30 11:12:14 +00:00
|
|
|
// The browser has finished loading.
|
2013-06-03 07:31:46 +00:00
|
|
|
virtual void OnWillFinishLaunching() {}
|
2013-05-30 11:12:14 +00:00
|
|
|
virtual void OnFinishLaunching() {}
|
|
|
|
|
2013-05-03 02:53:54 +00:00
|
|
|
protected:
|
|
|
|
virtual ~BrowserObserver() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2014-03-16 00:58:59 +00:00
|
|
|
#endif // ATOM_BROWSER_BROWSER_OBSERVER_H_
|