void GrabEdge::AddProperties(debug::IntrospectionData& data) { Edge::AddProperties(data); data.add("button_down", button_down_) .add("maximizable", IsMaximizable()) .add("always_wait_grab_timeout", always_wait_grab_timeout_); }
void Manager::AddProperties(debug::IntrospectionData& data) { data.add("shadow_offset", shadow_offset()) .add("active_shadow_color", active_shadow_color()) .add("active_shadow_radius", active_shadow_radius()) .add("inactive_shadow_color", inactive_shadow_color()) .add("inactive_shadow_radius", inactive_shadow_radius()) .add("active_window", screen->activeWindow()); }
void FilterExpanderLabel::AddProperties(debug::IntrospectionData& introspection) { bool content_has_focus = false; auto focus_area = nux::GetWindowCompositor().GetKeyFocusArea(); if (focus_area && contents_) content_has_focus = focus_area->IsChildOf(contents_.GetPointer()); introspection.add("expander-has-focus", (expander_view_ && expander_view_->HasKeyFocus())) .add("expanded", expanded()) .add(GetAbsoluteGeometry()) .add("content-has-focus", content_has_focus); }
void SimpleLauncherIcon::AddProperties(debug::IntrospectionData& introspection) { LauncherIcon::AddProperties(introspection); introspection.add("icon_name", icon_name); }
void OverlaySpinner::AddProperties(debug::IntrospectionData& introspection) { introspection.add(GetAbsoluteGeometry()); }
void ScopeBarIcon::AddProperties(debug::IntrospectionData& wrapper) { wrapper.add(GetAbsoluteGeometry()); wrapper.add("name", id); }
void FilterBar::AddProperties(debug::IntrospectionData& introspection) { introspection.add(GetAbsoluteGeometry()); }
void IconTexture::AddProperties(debug::IntrospectionData& introspection) { introspection.add(GetAbsoluteGeometry()) .add("icon_name", _icon_name); }
void Controller::AddProperties(debug::IntrospectionData& introspection) { introspection.add("visible", visible_) .add("ideal_monitor", GetIdealMonitor()) .add("monitor", monitor_); }