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-02 23:43:23 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_BROWSER_H_
|
|
|
|
#define ATOM_BROWSER_BROWSER_H_
|
|
|
|
|
2014-03-16 09:13:06 +08:00
|
|
|
#include <string>
|
2014-11-17 17:19:41 +08:00
|
|
|
#include <vector>
|
2014-03-16 09:13:06 +08:00
|
|
|
|
2016-08-26 15:30:02 -07:00
|
|
|
#include "atom/browser/browser_observer.h"
|
|
|
|
#include "atom/browser/window_list_observer.h"
|
2013-05-02 23:43:23 +08:00
|
|
|
#include "base/compiler_specific.h"
|
2016-08-26 15:30:02 -07:00
|
|
|
#include "base/macros.h"
|
2013-05-03 10:53:54 +08:00
|
|
|
#include "base/observer_list.h"
|
2015-11-03 15:16:45 +08:00
|
|
|
#include "base/strings/string16.h"
|
2016-10-10 13:30:58 -07:00
|
|
|
#include "base/values.h"
|
2016-05-23 11:49:46 -04:00
|
|
|
#include "native_mate/arguments.h"
|
2013-05-02 23:43:23 +08:00
|
|
|
|
2014-11-17 15:55:49 +08:00
|
|
|
#if defined(OS_WIN)
|
2014-11-17 17:19:41 +08:00
|
|
|
#include "base/files/file_path.h"
|
2014-11-17 15:55:49 +08:00
|
|
|
#endif
|
|
|
|
|
2014-11-17 13:05:06 +08:00
|
|
|
namespace base {
|
|
|
|
class FilePath;
|
|
|
|
}
|
|
|
|
|
2016-01-24 08:30:14 +09:00
|
|
|
namespace gfx {
|
|
|
|
class Image;
|
|
|
|
}
|
|
|
|
|
2013-05-02 23:43:23 +08:00
|
|
|
namespace atom {
|
|
|
|
|
2016-07-02 11:47:40 +09:00
|
|
|
class AtomMenuModel;
|
2015-10-28 19:34:01 +08:00
|
|
|
class LoginHandler;
|
|
|
|
|
2013-05-02 23:43:23 +08:00
|
|
|
// This class is used for control application-wide operations.
|
|
|
|
class Browser : public WindowListObserver {
|
|
|
|
public:
|
|
|
|
Browser();
|
|
|
|
~Browser();
|
|
|
|
|
|
|
|
static Browser* Get();
|
|
|
|
|
|
|
|
// Try to close all windows and quit the application.
|
|
|
|
void Quit();
|
|
|
|
|
2015-11-06 18:27:13 +08:00
|
|
|
// Exit the application immediately and set exit code.
|
2016-08-30 13:30:56 +10:00
|
|
|
void Exit(mate::Arguments* args);
|
2015-11-06 18:27:13 +08:00
|
|
|
|
2014-04-10 15:22:17 +08:00
|
|
|
// Cleanup everything and shutdown the application gracefully.
|
|
|
|
void Shutdown();
|
2013-05-02 23:43:23 +08:00
|
|
|
|
2013-05-30 19:24:47 +08:00
|
|
|
// Focus the application.
|
|
|
|
void Focus();
|
|
|
|
|
2013-06-19 13:41:54 +08:00
|
|
|
// Returns the version of the executable (or bundle).
|
2013-12-05 10:26:01 +08:00
|
|
|
std::string GetVersion() const;
|
|
|
|
|
|
|
|
// Overrides the application version.
|
|
|
|
void SetVersion(const std::string& version);
|
2013-06-19 13:41:54 +08:00
|
|
|
|
2016-09-16 15:57:07 -07:00
|
|
|
// Returns the application's name, default is just Electron.
|
2013-12-05 10:32:58 +08:00
|
|
|
std::string GetName() const;
|
|
|
|
|
|
|
|
// Overrides the application name.
|
|
|
|
void SetName(const std::string& name);
|
|
|
|
|
2014-11-17 13:05:06 +08:00
|
|
|
// Add the |path| to recent documents list.
|
|
|
|
void AddRecentDocument(const base::FilePath& path);
|
|
|
|
|
2014-11-17 16:13:47 +08:00
|
|
|
// Clear the recent documents list.
|
|
|
|
void ClearRecentDocuments();
|
|
|
|
|
2015-11-03 15:09:31 +08:00
|
|
|
// Set the application user model ID.
|
|
|
|
void SetAppUserModelID(const base::string16& name);
|
|
|
|
|
2016-03-24 10:55:09 -07:00
|
|
|
// Remove the default protocol handler registry key
|
2016-08-16 15:54:30 +10:00
|
|
|
bool RemoveAsDefaultProtocolClient(const std::string& protocol,
|
2016-08-22 09:50:58 +09:00
|
|
|
mate::Arguments* args);
|
2016-03-24 10:55:09 -07:00
|
|
|
|
2016-03-21 11:24:25 -07:00
|
|
|
// Set as default handler for a protocol.
|
2016-08-16 15:54:30 +10:00
|
|
|
bool SetAsDefaultProtocolClient(const std::string& protocol,
|
|
|
|
mate::Arguments* args);
|
2016-03-21 11:24:25 -07:00
|
|
|
|
2016-04-24 22:17:01 -07:00
|
|
|
// Query the current state of default handler for a protocol.
|
2016-08-16 15:54:30 +10:00
|
|
|
bool IsDefaultProtocolClient(const std::string& protocol,
|
2016-08-22 09:50:58 +09:00
|
|
|
mate::Arguments* args);
|
2016-04-24 22:17:01 -07:00
|
|
|
|
2016-07-01 17:39:01 +09:00
|
|
|
// Set/Get the badge count.
|
2016-07-01 22:18:39 +09:00
|
|
|
bool SetBadgeCount(int count);
|
2016-07-01 17:39:01 +09:00
|
|
|
int GetBadgeCount();
|
|
|
|
|
2016-07-11 10:57:53 -07:00
|
|
|
// Set/Get the login item settings of the app
|
2016-07-07 16:29:09 -07:00
|
|
|
struct LoginItemSettings {
|
|
|
|
bool open_at_login = false;
|
|
|
|
bool open_as_hidden = false;
|
|
|
|
bool restore_state = false;
|
|
|
|
bool opened_at_login = false;
|
|
|
|
bool opened_as_hidden = false;
|
2017-01-30 14:01:40 -08:00
|
|
|
base::string16 path;
|
|
|
|
std::vector<base::string16> args;
|
2016-07-07 16:29:09 -07:00
|
|
|
};
|
2017-01-30 14:01:40 -08:00
|
|
|
void SetLoginItemSettings(LoginItemSettings settings);
|
2017-03-29 21:29:52 +02:00
|
|
|
LoginItemSettings GetLoginItemSettings(const LoginItemSettings& options);
|
2016-07-07 16:29:09 -07:00
|
|
|
|
2016-07-11 10:57:53 -07:00
|
|
|
#if defined(OS_MACOSX)
|
2016-01-29 22:51:06 +01:00
|
|
|
// Hide the application.
|
|
|
|
void Hide();
|
|
|
|
|
2016-01-30 21:40:32 +01:00
|
|
|
// Show the application.
|
|
|
|
void Show();
|
|
|
|
|
2016-04-29 17:35:07 -07:00
|
|
|
// Creates an activity and sets it as the one currently in use.
|
2016-04-29 22:05:36 -07:00
|
|
|
void SetUserActivity(const std::string& type,
|
2016-05-23 11:49:46 -04:00
|
|
|
const base::DictionaryValue& user_info,
|
|
|
|
mate::Arguments* args);
|
2016-04-29 22:05:36 -07:00
|
|
|
|
2016-05-03 15:51:31 -07:00
|
|
|
// Returns the type name of the current user activity.
|
|
|
|
std::string GetCurrentActivityType();
|
|
|
|
|
2016-04-29 17:36:04 -07:00
|
|
|
// Resumes an activity via hand-off.
|
2016-05-05 16:26:44 +09:00
|
|
|
bool ContinueUserActivity(const std::string& type,
|
|
|
|
const base::DictionaryValue& user_info);
|
2016-04-29 17:36:04 -07:00
|
|
|
|
2013-08-06 16:19:56 +08:00
|
|
|
// Bounce the dock icon.
|
|
|
|
enum BounceType {
|
|
|
|
BOUNCE_CRITICAL = 0,
|
|
|
|
BOUNCE_INFORMATIONAL = 10,
|
|
|
|
};
|
|
|
|
int DockBounce(BounceType type);
|
|
|
|
void DockCancelBounce(int request_id);
|
|
|
|
|
2016-05-10 15:02:56 -04:00
|
|
|
// Bounce the Downloads stack.
|
|
|
|
void DockDownloadFinished(const std::string& filePath);
|
|
|
|
|
2013-08-06 16:39:31 +08:00
|
|
|
// Set/Get dock's badge text.
|
2013-08-06 16:19:56 +08:00
|
|
|
void DockSetBadgeText(const std::string& label);
|
2013-08-06 16:39:31 +08:00
|
|
|
std::string DockGetBadgeText();
|
2014-06-25 11:55:33 +08:00
|
|
|
|
|
|
|
// Hide/Show dock.
|
|
|
|
void DockHide();
|
|
|
|
void DockShow();
|
2016-08-01 15:22:37 -07:00
|
|
|
bool DockIsVisible();
|
2014-11-16 23:04:31 +08:00
|
|
|
|
|
|
|
// Set docks' menu.
|
2016-07-02 11:47:40 +09:00
|
|
|
void DockSetMenu(AtomMenuModel* model);
|
2016-01-24 08:30:14 +09:00
|
|
|
|
|
|
|
// Set docks' icon.
|
|
|
|
void DockSetIcon(const gfx::Image& image);
|
2016-10-10 13:30:58 -07:00
|
|
|
|
|
|
|
void ShowAboutPanel();
|
|
|
|
void SetAboutPanelOptions(const base::DictionaryValue& options);
|
2013-08-06 16:19:56 +08:00
|
|
|
#endif // defined(OS_MACOSX)
|
|
|
|
|
2014-11-17 15:55:49 +08:00
|
|
|
#if defined(OS_WIN)
|
2014-11-17 17:19:41 +08:00
|
|
|
struct UserTask {
|
|
|
|
base::FilePath program;
|
|
|
|
base::string16 arguments;
|
|
|
|
base::string16 title;
|
|
|
|
base::string16 description;
|
2014-11-17 17:35:51 +08:00
|
|
|
base::FilePath icon_path;
|
|
|
|
int icon_index;
|
2014-11-17 17:19:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// Add a custom task to jump list.
|
2016-08-08 00:22:32 +02:00
|
|
|
bool SetUserTasks(const std::vector<UserTask>& tasks);
|
2014-11-17 17:19:41 +08:00
|
|
|
|
2015-11-03 14:55:43 +08:00
|
|
|
// Returns the application user model ID, if there isn't one, then create
|
|
|
|
// one from app's name.
|
|
|
|
// The returned string managed by Browser, and should not be modified.
|
|
|
|
PCWSTR GetAppUserModelID();
|
2016-06-26 02:00:41 +02:00
|
|
|
#endif // defined(OS_WIN)
|
2016-06-26 01:55:24 +02:00
|
|
|
|
|
|
|
#if defined(OS_LINUX)
|
2016-07-01 17:39:01 +09:00
|
|
|
// Whether Unity launcher is running.
|
|
|
|
bool IsUnityRunning();
|
2016-06-26 02:00:41 +02:00
|
|
|
#endif // defined(OS_LINUX)
|
2014-11-17 15:55:49 +08:00
|
|
|
|
2013-05-30 16:03:10 +08:00
|
|
|
// Tell the application to open a file.
|
|
|
|
bool OpenFile(const std::string& file_path);
|
|
|
|
|
2013-07-10 16:10:38 +08:00
|
|
|
// Tell the application to open a url.
|
|
|
|
void OpenURL(const std::string& url);
|
|
|
|
|
2015-09-14 18:34:27 -07:00
|
|
|
// Tell the application that application is activated with visible/invisible
|
|
|
|
// windows.
|
2015-09-14 19:05:53 -07:00
|
|
|
void Activate(bool has_visible_windows);
|
2015-09-14 19:28:13 +08:00
|
|
|
|
2013-05-30 19:12:14 +08:00
|
|
|
// Tell the application the loading has been done.
|
2013-06-03 15:31:46 +08:00
|
|
|
void WillFinishLaunching();
|
2016-08-31 17:17:44 -07:00
|
|
|
void DidFinishLaunching(const base::DictionaryValue& launch_info);
|
2013-05-30 19:12:14 +08:00
|
|
|
|
2016-07-11 14:32:14 -07:00
|
|
|
void OnAccessibilitySupportChanged();
|
2016-07-11 14:04:56 -07:00
|
|
|
|
2015-10-28 19:34:01 +08:00
|
|
|
// Request basic auth login.
|
2016-06-08 19:22:21 +05:30
|
|
|
void RequestLogin(LoginHandler* login_handler,
|
|
|
|
std::unique_ptr<base::DictionaryValue> request_details);
|
2015-10-28 19:34:01 +08:00
|
|
|
|
2013-05-03 10:53:54 +08:00
|
|
|
void AddObserver(BrowserObserver* obs) {
|
|
|
|
observers_.AddObserver(obs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RemoveObserver(BrowserObserver* obs) {
|
|
|
|
observers_.RemoveObserver(obs);
|
|
|
|
}
|
2013-05-02 23:43:23 +08:00
|
|
|
|
2015-10-22 16:24:35 +08:00
|
|
|
bool is_shutting_down() const { return is_shutdown_; }
|
2013-06-26 17:22:24 +08:00
|
|
|
bool is_quiting() const { return is_quiting_; }
|
2014-10-30 21:32:35 +08:00
|
|
|
bool is_ready() const { return is_ready_; }
|
2013-06-26 17:22:24 +08:00
|
|
|
|
2013-05-02 23:43:23 +08:00
|
|
|
protected:
|
2013-12-05 10:26:01 +08:00
|
|
|
// Returns the version of application bundle or executable file.
|
|
|
|
std::string GetExecutableFileVersion() const;
|
|
|
|
|
2013-12-05 10:42:04 +08:00
|
|
|
// Returns the name of application bundle or executable file.
|
|
|
|
std::string GetExecutableFileProductName() const;
|
|
|
|
|
2014-04-10 15:22:17 +08:00
|
|
|
// Send the will-quit message and then shutdown the application.
|
|
|
|
void NotifyAndShutdown();
|
2013-05-03 10:53:54 +08:00
|
|
|
|
2015-02-25 19:33:42 -08:00
|
|
|
// Send the before-quit message and start closing windows.
|
|
|
|
bool HandleBeforeQuit();
|
|
|
|
|
2013-05-02 23:43:23 +08:00
|
|
|
bool is_quiting_;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// WindowListObserver implementations:
|
2014-11-16 19:47:04 +08:00
|
|
|
void OnWindowCloseCancelled(NativeWindow* window) override;
|
|
|
|
void OnWindowAllClosed() override;
|
2013-05-02 23:43:23 +08:00
|
|
|
|
2013-05-03 10:53:54 +08:00
|
|
|
// Observers of the browser.
|
2015-09-02 15:16:49 +08:00
|
|
|
base::ObserverList<BrowserObserver> observers_;
|
2013-05-03 10:53:54 +08:00
|
|
|
|
2016-03-31 10:12:03 -04:00
|
|
|
// Whether `app.exit()` has been called
|
|
|
|
bool is_exiting_;
|
|
|
|
|
2014-10-30 21:32:35 +08:00
|
|
|
// Whether "ready" event has been emitted.
|
|
|
|
bool is_ready_;
|
|
|
|
|
2016-03-31 10:12:03 -04:00
|
|
|
// The browser is being shutdown.
|
2015-10-04 19:20:52 +08:00
|
|
|
bool is_shutdown_;
|
|
|
|
|
2013-12-05 10:26:01 +08:00
|
|
|
std::string version_override_;
|
2013-12-05 10:32:58 +08:00
|
|
|
std::string name_override_;
|
2013-12-05 10:26:01 +08:00
|
|
|
|
2016-07-02 10:36:11 +09:00
|
|
|
int badge_count_ = 0;
|
2016-06-26 01:55:24 +02:00
|
|
|
|
2014-11-17 15:55:49 +08:00
|
|
|
#if defined(OS_WIN)
|
|
|
|
base::string16 app_user_model_id_;
|
|
|
|
#endif
|
|
|
|
|
2016-10-10 13:30:58 -07:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
base::DictionaryValue about_panel_options_;
|
|
|
|
#endif
|
|
|
|
|
2013-05-02 23:43:23 +08:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(Browser);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_BROWSER_H_
|