Skip to content
This repository has been archived by the owner on Nov 26, 2022. It is now read-only.

Latest commit

 

History

History
35 lines (24 loc) · 1.07 KB

TODO.md

File metadata and controls

35 lines (24 loc) · 1.07 KB
  1. Add support for matching by class in class selectors.

  2. Swing: Create default style sheet

    • with specific adders for:

      1. JTabbedPane -- invoke addTab instead add (+ the *tab-icon and *tab-title props -- think of a better names)

      2. JScrolledPane -- invoke setViewportView (confirm the method)

    • any additional quirks?

  3. Consider using this "default" style sheet by default.

  4. Add function helpers for more convenient selecting objects at runtime. Like getting children of some object and selecting only those who belong to some group. (think of more)

  5. SWT: Add support for custom function running inside swt-loop to catch exceptions. Then user could write function like:

    (defn my-exception-handler [f]
      (try (f)
        (catch A a ...)
        (catch B b ...)
        (finally ...)))

    and invoke swt-loop like (swt-loop my-exception-handler)

    Alternative version: user writes only function that gets exceptions as a argument. (less likely, user have less control)