mirror of
https://github.com/rustwasm/wasm-bindgen.git
synced 2024-11-28 23:14:12 +03:00
f2f2d7231a
* Create a new `web-sys` crate This will eventually contain all the WebIDL-generated bindings to Web APIs. * ci: Test the new `web-sys` crate in CI * web-sys: Add a small README * web-sys: Vendor all the WebIDL files from mozilla-central * backend: Add a pass to remove AST items that use undefined imports This is necessary for the WebIDL frontend, which can't translate many WebIDL constructs into equivalent wasm-bindgen AST things yet. It lets us make incremental progress: we can generate bindings to methods we can support right now even though there might be methods on the same interface that we can't support yet. * webidl: Add a bunch of missing semicolons * webidl: Make parsing private It was only `pub` so that we could test it, but we ended up moving towards integration tests rather than unit tests that assert particular ASTs are parsed from WebIDL files. * webidl: Remove uses of undefined import types * test-project-builder: Build projects in "very verbose" mode This helps for debugging failing WebIDL-related tests. * test-project-builder: Add more profiling timers * test-project-builder: Detect when webpack-dev-server fails Instead of going into an infinite loop, detect when webpack-dev-server fails to start up and early exit the test. * webidl: Specify version for dev-dependency on wasm-bindgen-backend Instead of only a relative path. * guide: Add section about contributing to `web-sys` * WIP enable Event.webidl Still need to fix and finish the test. * Update expected webidl output * Start out a test's status as incomplete That way if we don't fill it in the error message doesn't look quite so bizarre * Fix onerror function in headless mode Otherwise we don't see any output! * Fix package.json/node_modules handling in project generation Make sure these are looked up in the git project root rather than the crate root * Avoid logging body text This was meant for debugging and is otherwise pretty noisy * Fix a relative path * More expected test fixes * Fix a typo * test-project-builder: Allow asynchronous tests * webidl: Convert [Unforgeable] attributes into `#[wasm_bindgen(structural)]` Fixes #432 * test-project-builder: Print generated WebIDL bindings for debugging purposes Helps debug bad WebIDL bindings generation inside tests. * When we can't find a descriptor, say which one can't be found This helps when debugging things that need to become structural. * web-sys: Test bindings for Event * ci: Use `--manifest-path dir` instead of `cd dir && ...` * web-sys: Just move .webidl files isntead of symlinking to enable them * tests: Polyfill Array.prototype.values for older browsers in CI * test-project-builder: Don't panic on poisoned headless test mutex We only use it to serialize headless tests so that we don't try to bind the port concurrently. Its OK to run another headless test if an earlier one panicked. * JsValue: Add {is,as}_{object,function} methods Allows dynamically casting values to `js::Object` and `js::Function`. * tidy: Fix whitespace and missing semicolons * Allow for dynamic feature detection of methods If we create bindings to a method that doesn't exist in this implementation, then it shouldn't fail until if/when we actually try and invoke that missing method. * tests: Do feature detection in Array.prototype.values test * Add JsValue::{is_string, as_js_string} methods And document all the cast/convert/check methods for js value. * eslint: allow backtick string literals * Only generate a fallback import function for non-structural imports
197 lines
5.2 KiB
Plaintext
Vendored
197 lines
5.2 KiB
Plaintext
Vendored
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
interface MozTreeView;
|
|
interface nsIScriptableRegion;
|
|
|
|
dictionary TreeCellInfo {
|
|
long row = 0;
|
|
TreeColumn? col = null;
|
|
DOMString childElt = "";
|
|
};
|
|
|
|
[NoInterfaceObject]
|
|
interface TreeBoxObject : BoxObject {
|
|
|
|
/**
|
|
* Obtain the columns.
|
|
*/
|
|
readonly attribute TreeColumns? columns;
|
|
|
|
/**
|
|
* The view that backs the tree and that supplies it with its data.
|
|
* It is dynamically settable, either using a view attribute on the
|
|
* tree tag or by setting this attribute to a new value.
|
|
*/
|
|
[SetterThrows, NeedsCallerType]
|
|
attribute MozTreeView? view;
|
|
|
|
/**
|
|
* Whether or not we are currently focused.
|
|
*/
|
|
attribute boolean focused;
|
|
|
|
/**
|
|
* Obtain the treebody content node
|
|
*/
|
|
readonly attribute Element? treeBody;
|
|
|
|
/**
|
|
* Obtain the height of a row.
|
|
*/
|
|
readonly attribute long rowHeight;
|
|
|
|
/**
|
|
* Obtain the width of a row.
|
|
*/
|
|
readonly attribute long rowWidth;
|
|
|
|
/**
|
|
* Get the pixel position of the horizontal scrollbar.
|
|
*/
|
|
readonly attribute long horizontalPosition;
|
|
|
|
/**
|
|
* Return the region for the visible parts of the selection, in device pixels
|
|
*/
|
|
readonly attribute nsIScriptableRegion selectionRegion;
|
|
|
|
/**
|
|
* Get the index of the first visible row.
|
|
*/
|
|
long getFirstVisibleRow();
|
|
|
|
/**
|
|
* Get the index of the last visible row.
|
|
*/
|
|
long getLastVisibleRow();
|
|
|
|
/**
|
|
* Gets the number of possible visible rows.
|
|
*/
|
|
long getPageLength();
|
|
|
|
/**
|
|
* Ensures that a row at a given index is visible.
|
|
*/
|
|
void ensureRowIsVisible(long index);
|
|
|
|
/**
|
|
* Ensures that a given cell in the tree is visible.
|
|
*/
|
|
[Throws]
|
|
void ensureCellIsVisible(long row, TreeColumn? col);
|
|
|
|
/**
|
|
* Scrolls such that the row at index is at the top of the visible view.
|
|
*/
|
|
void scrollToRow(long index);
|
|
|
|
/**
|
|
* Scroll the tree up or down by numLines lines. Positive
|
|
* values move down in the tree. Prevents scrolling off the
|
|
* end of the tree.
|
|
*/
|
|
void scrollByLines(long numLines);
|
|
|
|
/**
|
|
* Scroll the tree up or down by numPages pages. A page
|
|
* is considered to be the amount displayed by the tree.
|
|
* Positive values move down in the tree. Prevents scrolling
|
|
* off the end of the tree.
|
|
*/
|
|
void scrollByPages(long numPages);
|
|
|
|
/**
|
|
* Invalidation methods for fine-grained painting control.
|
|
*/
|
|
void invalidate();
|
|
void invalidateColumn(TreeColumn? col);
|
|
void invalidateRow(long index);
|
|
void invalidateCell(long row, TreeColumn? col);
|
|
void invalidateRange(long startIndex, long endIndex);
|
|
|
|
/**
|
|
* A hit test that can tell you what row the mouse is over.
|
|
* returns -1 for invalid mouse coordinates.
|
|
*
|
|
* The coordinate system is the client coordinate system for the
|
|
* document this boxObject lives in, and the units are CSS pixels.
|
|
*/
|
|
long getRowAt(long x, long y);
|
|
|
|
/**
|
|
* A hit test that can tell you what cell the mouse is over.
|
|
* TreeCellInfo.row is the row index hit, returns -1 for invalid mouse
|
|
* coordinates. TreeCellInfo.col is the column hit.
|
|
* TreeCellInfo.childElt is the pseudoelement hit: this can have values of
|
|
* "cell", "twisty", "image", and "text".
|
|
*
|
|
* The coordinate system is the client coordinate system for the
|
|
* document this boxObject lives in, and the units are CSS pixels.
|
|
*/
|
|
[Throws]
|
|
TreeCellInfo getCellAt(long x, long y);
|
|
|
|
/**
|
|
* DEPRECATED: please use above version
|
|
*/
|
|
[Throws]
|
|
void getCellAt(long x, long y, object row, object column, object childElt);
|
|
|
|
/**
|
|
* Find the coordinates of an element within a specific cell.
|
|
*/
|
|
[Throws]
|
|
DOMRect? getCoordsForCellItem(long row, TreeColumn col, DOMString element);
|
|
|
|
/**
|
|
* DEPRECATED: Please use above version
|
|
*/
|
|
[Throws]
|
|
void getCoordsForCellItem(long row, TreeColumn col, DOMString element,
|
|
object x, object y, object width, object height);
|
|
|
|
/**
|
|
* Determine if the text of a cell is being cropped or not.
|
|
*/
|
|
[Throws]
|
|
boolean isCellCropped(long row, TreeColumn? col);
|
|
|
|
/**
|
|
* The view is responsible for calling these notification methods when
|
|
* rows are added or removed. Index is the position at which the new
|
|
* rows were added or at which rows were removed. For
|
|
* non-contiguous additions/removals, this method should be called multiple times.
|
|
*/
|
|
void rowCountChanged(long index, long count);
|
|
|
|
/**
|
|
* Notify the tree that the view is about to perform a batch
|
|
* update, that is, add, remove or invalidate several rows at once.
|
|
* This must be followed by calling endUpdateBatch(), otherwise the tree
|
|
* will get out of sync.
|
|
*/
|
|
void beginUpdateBatch();
|
|
|
|
/**
|
|
* Notify the tree that the view has completed a batch update.
|
|
*/
|
|
void endUpdateBatch();
|
|
|
|
/**
|
|
* Called on a theme switch to flush out the tree's style and image caches.
|
|
*/
|
|
void clearStyleAndImageCaches();
|
|
|
|
/**
|
|
* Remove an image source from the image cache to allow its invalidation.
|
|
*/
|
|
[Throws]
|
|
void removeImageCacheEntry(long row, TreeColumn col);
|
|
};
|