com.github.kklisura.cdt.protocol.commands.CSS Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdt-java-client Show documentation
Show all versions of cdt-java-client Show documentation
Chrome DevTools java client
The newest version!
package com.github.kklisura.cdt.protocol.commands;
/*-
* #%L
* cdt-java-client
* %%
* Copyright (C) 2018 - 2023 Kenan Klisura
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import com.github.kklisura.cdt.protocol.events.css.FontsUpdated;
import com.github.kklisura.cdt.protocol.events.css.MediaQueryResultChanged;
import com.github.kklisura.cdt.protocol.events.css.StyleSheetAdded;
import com.github.kklisura.cdt.protocol.events.css.StyleSheetChanged;
import com.github.kklisura.cdt.protocol.events.css.StyleSheetRemoved;
import com.github.kklisura.cdt.protocol.support.annotations.EventName;
import com.github.kklisura.cdt.protocol.support.annotations.Experimental;
import com.github.kklisura.cdt.protocol.support.annotations.ParamName;
import com.github.kklisura.cdt.protocol.support.annotations.ReturnTypeParameter;
import com.github.kklisura.cdt.protocol.support.annotations.Returns;
import com.github.kklisura.cdt.protocol.support.types.EventHandler;
import com.github.kklisura.cdt.protocol.support.types.EventListener;
import com.github.kklisura.cdt.protocol.types.css.BackgroundColors;
import com.github.kklisura.cdt.protocol.types.css.CSSComputedStyleProperty;
import com.github.kklisura.cdt.protocol.types.css.CSSMedia;
import com.github.kklisura.cdt.protocol.types.css.CSSRule;
import com.github.kklisura.cdt.protocol.types.css.CSSStyle;
import com.github.kklisura.cdt.protocol.types.css.InlineStylesForNode;
import com.github.kklisura.cdt.protocol.types.css.MatchedStylesForNode;
import com.github.kklisura.cdt.protocol.types.css.PlatformFontUsage;
import com.github.kklisura.cdt.protocol.types.css.RuleUsage;
import com.github.kklisura.cdt.protocol.types.css.SelectorList;
import com.github.kklisura.cdt.protocol.types.css.SourceRange;
import com.github.kklisura.cdt.protocol.types.css.StyleDeclarationEdit;
import com.github.kklisura.cdt.protocol.types.css.TakeCoverageDelta;
import com.github.kklisura.cdt.protocol.types.css.Value;
import java.util.List;
/**
* This domain exposes CSS read/write operations. All CSS objects (stylesheets, rules, and styles)
* have an associated `id` used in subsequent operations on the related object. Each object type has
* a specific `id` structure, and those are not interchangeable between objects of different kinds.
* CSS objects can be loaded using the `get*ForNode()` calls (which accept a DOM node id). A client
* can also keep track of stylesheets via the `styleSheetAdded`/`styleSheetRemoved` events and
* subsequently load the required stylesheet contents using the `getStyleSheet[Text]()` methods.
*/
@Experimental
public interface CSS {
/**
* Inserts a new rule with the given `ruleText` in a stylesheet with given `styleSheetId`, at the
* position specified by `location`.
*
* @param styleSheetId The css style sheet identifier where a new rule should be inserted.
* @param ruleText The text of a new rule.
* @param location Text position of a new rule in the target style sheet.
*/
@Returns("rule")
CSSRule addRule(
@ParamName("styleSheetId") String styleSheetId,
@ParamName("ruleText") String ruleText,
@ParamName("location") SourceRange location);
/**
* Returns all class names from specified stylesheet.
*
* @param styleSheetId
*/
@Returns("classNames")
@ReturnTypeParameter(String.class)
List collectClassNames(@ParamName("styleSheetId") String styleSheetId);
/**
* Creates a new special "via-inspector" stylesheet in the frame with given `frameId`.
*
* @param frameId Identifier of the frame where "via-inspector" stylesheet should be created.
*/
@Returns("styleSheetId")
String createStyleSheet(@ParamName("frameId") String frameId);
/** Disables the CSS agent for the given page. */
void disable();
/**
* Enables the CSS agent for the given page. Clients should not assume that the CSS agent has been
* enabled until the result of this command is received.
*/
void enable();
/**
* Ensures that the given node will have specified pseudo-classes whenever its style is computed
* by the browser.
*
* @param nodeId The element id for which to force the pseudo state.
* @param forcedPseudoClasses Element pseudo classes to force when computing the element's style.
*/
void forcePseudoState(
@ParamName("nodeId") Integer nodeId,
@ParamName("forcedPseudoClasses") List forcedPseudoClasses);
/** @param nodeId Id of the node to get background colors for. */
BackgroundColors getBackgroundColors(@ParamName("nodeId") Integer nodeId);
/**
* Returns the computed style for a DOM node identified by `nodeId`.
*
* @param nodeId
*/
@Returns("computedStyle")
@ReturnTypeParameter(CSSComputedStyleProperty.class)
List getComputedStyleForNode(@ParamName("nodeId") Integer nodeId);
/**
* Returns the styles defined inline (explicitly in the "style" attribute and implicitly, using
* DOM attributes) for a DOM node identified by `nodeId`.
*
* @param nodeId
*/
InlineStylesForNode getInlineStylesForNode(@ParamName("nodeId") Integer nodeId);
/**
* Returns requested styles for a DOM node identified by `nodeId`.
*
* @param nodeId
*/
MatchedStylesForNode getMatchedStylesForNode(@ParamName("nodeId") Integer nodeId);
/** Returns all media queries parsed by the rendering engine. */
@Returns("medias")
@ReturnTypeParameter(CSSMedia.class)
List getMediaQueries();
/**
* Requests information about platform fonts which we used to render child TextNodes in the given
* node.
*
* @param nodeId
*/
@Returns("fonts")
@ReturnTypeParameter(PlatformFontUsage.class)
List getPlatformFontsForNode(@ParamName("nodeId") Integer nodeId);
/**
* Returns the current textual content for a stylesheet.
*
* @param styleSheetId
*/
@Returns("text")
String getStyleSheetText(@ParamName("styleSheetId") String styleSheetId);
/**
* Starts tracking the given computed styles for updates. The specified array of properties
* replaces the one previously specified. Pass empty array to disable tracking. Use
* takeComputedStyleUpdates to retrieve the list of nodes that had properties modified. The
* changes to computed style properties are only tracked for nodes pushed to the front-end by the
* DOM agent. If no changes to the tracked properties occur after the node has been pushed to the
* front-end, no updates will be issued for the node.
*
* @param propertiesToTrack
*/
@Experimental
void trackComputedStyleUpdates(
@ParamName("propertiesToTrack") List propertiesToTrack);
/** Polls the next batch of computed style updates. */
@Experimental
@Returns("nodeIds")
@ReturnTypeParameter(Integer.class)
List takeComputedStyleUpdates();
/**
* Find a rule with the given active property for the given node and set the new value for this
* property
*
* @param nodeId The element id for which to set property.
* @param propertyName
* @param value
*/
void setEffectivePropertyValueForNode(
@ParamName("nodeId") Integer nodeId,
@ParamName("propertyName") String propertyName,
@ParamName("value") String value);
/**
* Modifies the keyframe rule key text.
*
* @param styleSheetId
* @param range
* @param keyText
*/
@Returns("keyText")
Value setKeyframeKey(
@ParamName("styleSheetId") String styleSheetId,
@ParamName("range") SourceRange range,
@ParamName("keyText") String keyText);
/**
* Modifies the rule selector.
*
* @param styleSheetId
* @param range
* @param text
*/
@Returns("media")
CSSMedia setMediaText(
@ParamName("styleSheetId") String styleSheetId,
@ParamName("range") SourceRange range,
@ParamName("text") String text);
/**
* Modifies the rule selector.
*
* @param styleSheetId
* @param range
* @param selector
*/
@Returns("selectorList")
SelectorList setRuleSelector(
@ParamName("styleSheetId") String styleSheetId,
@ParamName("range") SourceRange range,
@ParamName("selector") String selector);
/**
* Sets the new stylesheet text.
*
* @param styleSheetId
* @param text
*/
@Returns("sourceMapURL")
String setStyleSheetText(
@ParamName("styleSheetId") String styleSheetId, @ParamName("text") String text);
/**
* Applies specified style edits one after another in the given order.
*
* @param edits
*/
@Returns("styles")
@ReturnTypeParameter(CSSStyle.class)
List setStyleTexts(@ParamName("edits") List edits);
/** Enables the selector recording. */
void startRuleUsageTracking();
/**
* Stop tracking rule usage and return the list of rules that were used since last call to
* `takeCoverageDelta` (or since start of coverage instrumentation)
*/
@Returns("ruleUsage")
@ReturnTypeParameter(RuleUsage.class)
List stopRuleUsageTracking();
/**
* Obtain list of rules that became used since last call to this method (or since start of
* coverage instrumentation)
*/
TakeCoverageDelta takeCoverageDelta();
/**
* Enables/disables rendering of local CSS fonts (enabled by default).
*
* @param enabled Whether rendering of local fonts is enabled.
*/
@Experimental
void setLocalFontsEnabled(@ParamName("enabled") Boolean enabled);
/**
* Fires whenever a web font is updated. A non-empty font parameter indicates a successfully
* loaded web font
*/
@EventName("fontsUpdated")
EventListener onFontsUpdated(EventHandler eventListener);
/**
* Fires whenever a MediaQuery result changes (for example, after a browser window has been
* resized.) The current implementation considers only viewport-dependent media features.
*/
@EventName("mediaQueryResultChanged")
EventListener onMediaQueryResultChanged(EventHandler eventListener);
/** Fired whenever an active document stylesheet is added. */
@EventName("styleSheetAdded")
EventListener onStyleSheetAdded(EventHandler eventListener);
/** Fired whenever a stylesheet is changed as a result of the client operation. */
@EventName("styleSheetChanged")
EventListener onStyleSheetChanged(EventHandler eventListener);
/** Fired whenever an active document stylesheet is removed. */
@EventName("styleSheetRemoved")
EventListener onStyleSheetRemoved(EventHandler eventListener);
}