-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtestui.clj
29 lines (21 loc) · 830 Bytes
/
testui.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(ns testui
(:require [seesaw.rsyntax :as rsyntax]
[seesaw.font :as font]
[seesaw.swingx :as guix]
[burp-clj.utils :as utils]
[burp-clj.extender :as extender]
[seesaw.core :as gui])
)
(comment
(def fks (-> (javax.swing.UIManager/getDefaults)
(.keys)))
(font/default-font "TableHeader.font")
(javax.swing.UIManager/getFont "Label.font")
(->> (guix/titled-panel :title "Test"
:title-color :red
:content (guix/table-x :model [:columns [:age :height]
:rows [{:age 15 :height "test"}
{:age 18 :height "gogo"}]])
)
(utils/show-ui))
)