summaryrefslogtreecommitdiffstats
path: root/athena/screen/public/screen_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'athena/screen/public/screen_manager.h')
-rw-r--r--athena/screen/public/screen_manager.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/athena/screen/public/screen_manager.h b/athena/screen/public/screen_manager.h
index 622f047..9e87306 100644
--- a/athena/screen/public/screen_manager.h
+++ b/athena/screen/public/screen_manager.h
@@ -29,11 +29,14 @@ namespace athena {
class ATHENA_EXPORT ScreenManager {
public:
struct ContainerParams {
- ContainerParams(const std::string& name);
+ ContainerParams(const std::string& name, int z_order_priority);
std::string name;
// True if the container can activate its child window.
bool can_activate_children;
+
+ // Defines the z_order priority of the container.
+ int z_order_priority;
};
// Creates, returns and deletes the singleton object of the ScreenManager