blob: c74895db4cb9cdc310525f4ee0cd66b8d1035dad [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_APP_RESTORE_APP_RESTORE_DATA_H_
#define COMPONENTS_APP_RESTORE_APP_RESTORE_DATA_H_
#include <memory>
#include <vector>
#include "base/component_export.h"
#include "chromeos/ui/base/window_state_type.h"
#include "components/services/app_service/public/mojom/types.mojom.h"
#include "third_party/abseil-cpp/absl/types/optional.h"
#include "ui/base/ui_base_types.h"
#include "ui/gfx/geometry/rect.h"
#include "url/gurl.h"
namespace base {
class Value;
}
namespace app_restore {
struct AppLaunchInfo;
struct WindowInfo;
// This is the struct used by RestoreData to save both app launch parameters and
// app window information. This struct can be converted to JSON format to be
// written to the FullRestoreData file.
struct COMPONENT_EXPORT(APP_RESTORE) AppRestoreData {
AppRestoreData();
explicit AppRestoreData(base::Value&& value);
explicit AppRestoreData(std::unique_ptr<AppLaunchInfo> app_launch_info);
AppRestoreData(const AppRestoreData&) = delete;
AppRestoreData& operator=(const AppRestoreData&) = delete;
~AppRestoreData();
std::unique_ptr<AppRestoreData> Clone() const;
// Converts the struct AppRestoreData to base::Value, e.g.:
// {
// "event_flag": 0,
// "container": 0,
// "disposition": 1,
// "display_id": "22000000",
// "url": "abc.com",
// "intent": { "action": "xx", "url": "cc.com", ... },
// "file_paths": { "aa.cc", "bb.h", ... },
// "index": 3,
// "desk_id": 1,
// "restored_bounds": { 0, 100, 200, 300 },
// "current_bounds": { 100, 200, 200, 300 },
// "window_state_type": 256,
// }
base::Value ConvertToValue() const;
// Modifies the window's information based on |window_info|.
void ModifyWindowInfo(const WindowInfo& window_info);
// Modifies the window's theme colors.
void ModifyThemeColor(uint32_t window_primary_color,
uint32_t window_status_bar_color);
// Clears the window's information.
void ClearWindowInfo();
// Gets the app launch information.
std::unique_ptr<AppLaunchInfo> GetAppLaunchInfo(const std::string& app_id,
int window_id) const;
// Gets the window information.
std::unique_ptr<WindowInfo> GetWindowInfo() const;
// Returns apps::mojom::WindowInfoPtr for app launch interfaces.
apps::mojom::WindowInfoPtr GetAppWindowInfo() const;
// App launch parameters.
absl::optional<int32_t> event_flag;
absl::optional<int32_t> container;
absl::optional<int32_t> disposition;
absl::optional<int64_t> display_id;
absl::optional<std::string> handler_id;
absl::optional<std::vector<GURL>> urls;
absl::optional<int32_t> active_tab_index;
absl::optional<apps::mojom::IntentPtr> intent;
absl::optional<std::vector<base::FilePath>> file_paths;
absl::optional<bool> app_type_browser;
absl::optional<std::string> app_name;
// Window's information.
absl::optional<int32_t> activation_index;
absl::optional<int32_t> desk_id;
absl::optional<gfx::Rect> current_bounds;
absl::optional<chromeos::WindowStateType> window_state_type;
absl::optional<ui::WindowShowState> pre_minimized_show_state_type;
// Extra ARC window's information.
absl::optional<gfx::Size> minimum_size;
absl::optional<gfx::Size> maximum_size;
absl::optional<std::u16string> title;
absl::optional<gfx::Rect> bounds_in_root;
absl::optional<uint32_t> primary_color;
absl::optional<uint32_t> status_bar_color;
};
} // namespace app_restore
#endif // COMPONENTS_APP_RESTORE_APP_RESTORE_DATA_H_