├── 1.png ├── 2.png ├── 3.png ├── example ├── addons.make ├── bin │ └── data │ │ └── verdana.ttf ├── src │ ├── main.cpp │ ├── ofApp.h │ └── ofApp.cpp ├── Makefile ├── example.qbs └── config.make ├── ofxaddons_thumbnail.png ├── src ├── jquery │ ├── images │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ ├── ui-icons_ffffff_256x240.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ └── ui-bg_highlight-soft_75_ffe45c_1x100.png │ ├── themes │ │ ├── mobile │ │ │ └── images │ │ │ │ └── ajax-loader.gif │ │ ├── flick │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_0073ea_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ ├── ui-icons_ff0084_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ │ │ └── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ ├── lefrog │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_4eb305_256x240.png │ │ │ │ ├── ui-icons_72b42d_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_glass_55_fbf5d0_1x400.png │ │ │ │ ├── ui-bg_inset-soft_10_285c00_1x100.png │ │ │ │ ├── ui-bg_diagonals-small_0_aaaaaa_40x40.png │ │ │ │ ├── ui-bg_highlight-hard_30_285c00_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_33_3a8104_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_50_4eb305_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_60_4ca20b_1x100.png │ │ │ │ ├── ui-bg_diagonals-thick_15_444444_40x40.png │ │ │ │ └── ui-bg_diagonals-thick_95_ffdc2e_40x40.png │ │ ├── start │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_0078ae_256x240.png │ │ │ │ ├── ui-icons_056b93_256x240.png │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ ├── ui-icons_e0fdff_256x240.png │ │ │ │ ├── ui-icons_f5e175_256x240.png │ │ │ │ ├── ui-icons_f7a50d_256x240.png │ │ │ │ ├── ui-icons_fcd113_256x240.png │ │ │ │ ├── ui-bg_flat_55_999999_40x100.png │ │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_glass_45_0078ae_1x400.png │ │ │ │ ├── ui-bg_glass_55_f8da4e_1x400.png │ │ │ │ ├── ui-bg_glass_75_79c9ec_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_45_e14f1c_500x100.png │ │ │ │ ├── ui-bg_gloss-wave_50_6eac2c_500x100.png │ │ │ │ ├── ui-bg_gloss-wave_75_2191c0_500x100.png │ │ │ │ └── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ ├── sunny │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_3d3d3d_256x240.png │ │ │ │ ├── ui-icons_bd7b00_256x240.png │ │ │ │ ├── ui-icons_d19405_256x240.png │ │ │ │ ├── ui-icons_eb990f_256x240.png │ │ │ │ ├── ui-icons_ed9f26_256x240.png │ │ │ │ ├── ui-icons_fadc7a_256x240.png │ │ │ │ ├── ui-icons_ffe180_256x240.png │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ ├── ui-bg_inset-soft_30_ffffff_1x100.png │ │ │ │ ├── ui-bg_gloss-wave_45_817865_500x100.png │ │ │ │ ├── ui-bg_gloss-wave_60_fece2f_500x100.png │ │ │ │ ├── ui-bg_gloss-wave_70_ffdd57_500x100.png │ │ │ │ ├── ui-bg_gloss-wave_90_fff9e5_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_feeebd_1x100.png │ │ │ │ └── ui-bg_diagonals-medium_20_d34d17_40x40.png │ │ ├── vader │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ ├── ui-icons_aaaaaa_256x240.png │ │ │ │ ├── ui-icons_bbbbbb_256x240.png │ │ │ │ ├── ui-icons_c98000_256x240.png │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-icons_f29a00_256x240.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_inset-soft_15_121212_1x100.png │ │ │ │ ├── ui-bg_gloss-wave_16_121212_500x100.png │ │ │ │ ├── ui-bg_highlight-hard_15_888888_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_55_555555_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_35_adadad_1x100.png │ │ │ │ └── ui-bg_highlight-soft_60_dddddd_1x100.png │ │ ├── blitzer │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_004276_256x240.png │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ │ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ │ │ └── ui-bg_highlight-soft_15_cc0000_1x100.png │ │ ├── humanity │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_c47a23_256x240.png │ │ │ │ ├── ui-icons_cb672b_256x240.png │ │ │ │ ├── ui-icons_f08000_256x240.png │ │ │ │ ├── ui-icons_f35f07_256x240.png │ │ │ │ ├── ui-icons_ff7519_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_glass_100_f5f0e5_1x400.png │ │ │ │ ├── ui-bg_glass_25_cb842e_1x400.png │ │ │ │ ├── ui-bg_glass_70_ede4d4_1x400.png │ │ │ │ ├── ui-bg_inset-soft_100_f4f0ec_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png │ │ │ │ └── ui-bg_highlight-hard_100_f4f0ec_1x100.png │ │ ├── overcats │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_3383bb_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_70b2e1_256x240.png │ │ │ │ ├── ui-icons_999999_256x240.png │ │ │ │ ├── ui-icons_fbc856_256x240.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ ├── ui-bg_flat_55_c0402a_40x100.png │ │ │ │ ├── ui-bg_flat_55_eeeeee_40x100.png │ │ │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png │ │ │ │ ├── ui-bg_glass_35_dddddd_1x400.png │ │ │ │ ├── ui-bg_glass_60_eeeeee_1x400.png │ │ │ │ ├── ui-bg_inset-hard_75_999999_1x100.png │ │ │ │ └── ui-bg_inset-soft_50_c9c9c9_1x100.png │ │ ├── redmond │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ ├── ui-icons_f9bd01_256x240.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ │ └── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ ├── cupertino │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ └── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ ├── dark_hive │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ ├── ui-bg_loop_25_000000_21x21.png │ │ │ │ ├── ui-bg_highlight-hard_20_0972a5_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_33_003147_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png │ │ │ │ └── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ ├── egg_plant │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_734d99_256x240.png │ │ │ │ ├── ui-icons_8d78a5_256x240.png │ │ │ │ ├── ui-icons_a8a3ae_256x240.png │ │ │ │ ├── ui-icons_ebccce_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ ├── ui-bg_flat_55_994d53_40x100.png │ │ │ │ ├── ui-bg_flat_55_fafafa_40x100.png │ │ │ │ ├── ui-bg_gloss-wave_30_3d3644_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_dcd9de_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eae6ea_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_25_30273a_1x100.png │ │ │ │ └── ui-bg_highlight-soft_45_5f5964_1x100.png │ │ ├── excite_bike │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_0a82eb_256x240.png │ │ │ │ ├── ui-icons_0b54d5_256x240.png │ │ │ │ ├── ui-icons_5fa5e3_256x240.png │ │ │ │ ├── ui-icons_fcdd4a_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_0_e69700_40x100.png │ │ │ │ ├── ui-bg_flat_0_e6b900_40x100.png │ │ │ │ ├── ui-bg_inset-hard_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_diagonals-small_25_c5ddfc_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_e69700_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_22_1484e6_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_26_2293f7_40x40.png │ │ │ │ └── ui-bg_highlight-soft_100_f9f9f9_1x100.png │ │ ├── hot_snakes │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_88a206_256x240.png │ │ │ │ ├── ui-icons_c02669_256x240.png │ │ │ │ ├── ui-icons_e1e463_256x240.png │ │ │ │ ├── ui-icons_ffeb33_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_75_ba9217_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_dots-medium_80_ffff38_4x4.png │ │ │ │ ├── ui-bg_dots-small_35_35414f_2x2.png │ │ │ │ ├── ui-bg_white-lines_85_f7f7ba_40x100.png │ │ │ │ ├── ui-bg_diagonals-small_40_db4865_40x40.png │ │ │ │ ├── ui-bg_diagonals-small_50_93c3cd_40x40.png │ │ │ │ ├── ui-bg_diagonals-small_50_ff3853_40x40.png │ │ │ │ └── ui-bg_diagonals-small_75_ccd232_40x40.png │ │ ├── smoothess │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-darkness │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ │ └── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ ├── south_street │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_808080_256x240.png │ │ │ │ ├── ui-icons_847e71_256x240.png │ │ │ │ ├── ui-icons_8DC262_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── ui-icons_eeeeee_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_glass_55_fcf0ba_1x400.png │ │ │ │ ├── ui-bg_inset-soft_15_2b2922_1x100.png │ │ │ │ ├── ui-bg_gloss-wave_100_ece8da_500x100.png │ │ │ │ ├── ui-bg_highlight-hard_100_f5f3e5_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_100_fafaf4_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_15_459e00_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_95_cccccc_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_25_67b021_1x100.png │ │ │ │ └── ui-bg_highlight-soft_95_ffedad_1x100.png │ │ ├── ui-lightness │ │ │ └── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ └── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ └── pepper_grinder │ │ │ └── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_3572ac_256x240.png │ │ │ ├── ui-icons_8c291d_256x240.png │ │ │ ├── ui-icons_b83400_256x240.png │ │ │ ├── ui-icons_fbdb93_256x240.png │ │ │ ├── ui-icons_ffffff_256x240.png │ │ │ ├── ui-bg_fine-grain_10_eceadf_60x60.png │ │ │ ├── ui-bg_fine-grain_10_f8f7f6_60x60.png │ │ │ ├── ui-bg_fine-grain_15_eceadf_60x60.png │ │ │ ├── ui-bg_fine-grain_15_f7f3de_60x60.png │ │ │ ├── ui-bg_fine-grain_15_ffffff_60x60.png │ │ │ ├── ui-bg_fine-grain_65_654b24_60x60.png │ │ │ ├── ui-bg_fine-grain_68_b83400_60x60.png │ │ │ ├── ui-bg_diagonal-maze_20_6e4f1c_10x10.png │ │ │ └── ui-bg_diagonal-maze_40_000000_10x10.png │ ├── simplewebscoket.js │ ├── jquery.websocket-0.0.1.js │ ├── jquery.json-2.2.min.js │ ├── jquery-ui.theme.min.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ └── jquery-ui.structure.css ├── ofxUIJquery.h └── ofxUIJquery.cpp └── README.md /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/1.png -------------------------------------------------------------------------------- /2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/2.png -------------------------------------------------------------------------------- /3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/3.png -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- 1 | ofxGui 2 | ofxUIJquery 3 | ofxNetwork 4 | ofxLibwebsockets 5 | -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /example/bin/data/verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/example/bin/data/verdana.ttf -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- 1 | #include "ofApp.h" 2 | 3 | int main( ){ 4 | ofSetupOpenGL(683, 760, OF_WINDOW); 5 | ofRunApp(new ofApp()); 6 | } 7 | -------------------------------------------------------------------------------- /src/jquery/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/jquery/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /src/jquery/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /src/jquery/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /src/jquery/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/mobile/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/mobile/images/ajax-loader.gif -------------------------------------------------------------------------------- /src/jquery/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /src/jquery/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/jquery/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /src/jquery/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/start/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /src/jquery/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /src/jquery/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/jquery/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-icons_0073ea_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-icons_0073ea_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-icons_666666_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-icons_666666_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-icons_ff0084_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-icons_ff0084_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-icons_4eb305_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-icons_4eb305_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-icons_72b42d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-icons_72b42d_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-icons_0078ae_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-icons_0078ae_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-icons_056b93_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-icons_056b93_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-icons_e0fdff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-icons_e0fdff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-icons_f5e175_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-icons_f5e175_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-icons_f7a50d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-icons_f7a50d_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-icons_fcd113_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-icons_fcd113_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-icons_3d3d3d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-icons_3d3d3d_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-icons_bd7b00_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-icons_bd7b00_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-icons_d19405_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-icons_d19405_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-icons_eb990f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-icons_eb990f_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-icons_ed9f26_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-icons_ed9f26_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-icons_fadc7a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-icons_fadc7a_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-icons_ffe180_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-icons_ffe180_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-icons_666666_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-icons_666666_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-icons_aaaaaa_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-icons_aaaaaa_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-icons_bbbbbb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-icons_bbbbbb_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-icons_c98000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-icons_c98000_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-icons_f29a00_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-icons_f29a00_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/ui-icons_004276_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/ui-icons_004276_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-icons_2694e8_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-icons_2694e8_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-icons_3d80b3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-icons_3d80b3_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-icons_72a7cf_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-icons_72a7cf_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-icons_734d99_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-icons_734d99_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-icons_8d78a5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-icons_8d78a5_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-icons_a8a3ae_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-icons_a8a3ae_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-icons_ebccce_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-icons_ebccce_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-bg_flat_55_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-bg_flat_55_ffffff_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-icons_c47a23_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-icons_c47a23_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-icons_cb672b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-icons_cb672b_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-icons_f08000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-icons_f08000_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-icons_f35f07_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-icons_f35f07_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-icons_ff7519_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-icons_ff7519_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-icons_3383bb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-icons_3383bb_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-icons_70b2e1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-icons_70b2e1_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-icons_999999_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-icons_999999_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-icons_fbc856_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-icons_fbc856_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/animated-overlay.gif -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-icons_217bc0_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-icons_217bc0_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-icons_469bdd_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-icons_469bdd_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-icons_6da8d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-icons_6da8d5_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-icons_d8e7f3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-icons_d8e7f3_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-icons_f9bd01_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-icons_f9bd01_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-bg_flat_55_999999_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-bg_flat_55_999999_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-bg_flat_75_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-bg_flat_75_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-bg_glass_45_0078ae_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-bg_glass_45_0078ae_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-bg_glass_55_f8da4e_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-bg_glass_75_79c9ec_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/ui-bg_flat_0_333333_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/ui-bg_flat_0_333333_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/ui-bg_flat_65_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/ui-bg_flat_65_ffffff_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/ui-bg_glass_55_fbf8ee_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-icons_0a82eb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-icons_0a82eb_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-icons_0b54d5_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-icons_0b54d5_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-icons_5fa5e3_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-icons_5fa5e3_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-icons_fcdd4a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-icons_fcdd4a_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-icons_88a206_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-icons_88a206_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-icons_c02669_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-icons_c02669_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-icons_e1e463_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-icons_e1e463_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-icons_ffeb33_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-icons_ffeb33_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-bg_glass_55_fbf5d0_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-bg_glass_55_fbf5d0_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-bg_flat_55_fbec88_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-bg_flat_55_fbec88_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-bg_glass_85_dfeffc_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-icons_4b8e0b_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-icons_a83300_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-icons_a83300_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-icons_cccccc_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-icons_cccccc_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/ui-bg_dots-small_65_a6a6a6_2x2.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-bg_flat_15_cd0a0a_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-bg_glass_100_e4f1fb_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-bg_glass_50_3baae3_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-bg_glass_80_d7ebf9_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-bg_loop_25_000000_21x21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-bg_loop_25_000000_21x21.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-bg_flat_55_994d53_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-bg_flat_55_994d53_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-bg_flat_55_fafafa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-bg_flat_55_fafafa_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-bg_flat_0_e69700_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-bg_flat_0_e69700_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-bg_flat_0_e6b900_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-bg_flat_0_e6b900_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-bg_flat_75_ba9217_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-bg_flat_75_ba9217_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-bg_flat_75_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-bg_flat_75_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-bg_glass_100_f5f0e5_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-bg_glass_25_cb842e_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-bg_glass_70_ede4d4_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-bg_flat_55_c0402a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-bg_flat_55_c0402a_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-bg_flat_55_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-bg_flat_55_eeeeee_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-bg_glass_100_f8f8f8_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-bg_glass_100_f8f8f8_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-bg_glass_35_dddddd_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-bg_glass_35_dddddd_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-bg_glass_60_eeeeee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-bg_glass_60_eeeeee_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-icons_3572ac_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-icons_3572ac_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-icons_8c291d_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-icons_8c291d_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-icons_b83400_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-icons_b83400_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-icons_fbdb93_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-icons_fbdb93_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-icons_808080_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-icons_808080_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-icons_847e71_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-icons_847e71_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-icons_8DC262_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-icons_8DC262_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-icons_eeeeee_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-icons_eeeeee_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-bg_inset-soft_15_121212_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-bg_inset-soft_10_285c00_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-bg_inset-soft_10_285c00_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-bg_glass_55_fcf0ba_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-bg_glass_55_fcf0ba_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-bg_gloss-wave_45_e14f1c_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-bg_gloss-wave_50_6eac2c_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-bg_gloss-wave_75_2191c0_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/start/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-bg_gloss-wave_90_fff9e5_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-bg_flat_30_cccccc_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-bg_flat_50_5c5c5c_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-bg_glass_20_555555_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-bg_glass_40_0078a3_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-bg_glass_40_ffc73d_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-bg_gloss-wave_16_121212_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-bg_highlight-soft_100_f6f6f6_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-bg_highlight-soft_25_0073ea_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/flick/images/ui-bg_highlight-soft_50_dddddd_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-bg_dots-medium_80_ffff38_4x4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-bg_dots-medium_80_ffff38_4x4.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-bg_dots-small_35_35414f_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-bg_dots-small_35_35414f_2x2.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-bg_inset-soft_100_f4f0ec_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-bg_highlight-hard_30_285c00_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-bg_highlight-hard_30_285c00_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-bg_highlight-soft_33_3a8104_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-bg_highlight-soft_33_3a8104_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-bg_highlight-soft_50_4eb305_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-bg_highlight-soft_50_4eb305_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-bg_highlight-soft_60_4ca20b_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-bg_highlight-soft_60_4ca20b_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-bg_inset-hard_75_999999_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-bg_inset-hard_75_999999_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/overcats/images/ui-bg_inset-soft_50_c9c9c9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/overcats/images/ui-bg_inset-soft_50_c9c9c9_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-bg_highlight-hard_15_888888_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-bg_highlight-hard_15_888888_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-bg_highlight-hard_55_555555_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-bg_highlight-hard_55_555555_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-bg_highlight-soft_35_adadad_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/vader/images/ui-bg_highlight-soft_60_dddddd_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/ui-bg_diagonals-thick_75_f3d8d8_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/ui-bg_highlight-hard_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/ui-bg_highlight-hard_100_f6f6f6_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/blitzer/images/ui-bg_highlight-soft_15_cc0000_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-bg_gloss-wave_30_3d3644_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-bg_gloss-wave_30_3d3644_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-bg_inset-hard_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-bg_white-lines_85_f7f7ba_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-bg_white-lines_85_f7f7ba_40x100.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-bg_highlight-hard_65_fee4bd_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-bg_highlight-hard_75_f5f5b5_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-bg_diagonals-thick_15_444444_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-bg_diagonals-thick_15_444444_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/lefrog/images/ui-bg_diagonals-thick_95_ffdc2e_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/lefrog/images/ui-bg_diagonals-thick_95_ffdc2e_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-bg_inset-soft_15_2b2922_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-bg_inset-soft_15_2b2922_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/sunny/images/ui-bg_diagonals-medium_20_d34d17_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-bg_inset-soft_25_000000_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-bg_inset-soft_30_f58400_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-bg_diagonals-thick_90_eeeeee_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-bg_highlight-hard_70_000000_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-bg_highlight-soft_100_deedf7_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/cupertino/images/ui-bg_highlight-soft_25_ffef8f_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-bg_highlight-hard_20_0972a5_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-bg_highlight-soft_33_003147_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-bg_highlight-soft_33_003147_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-bg_highlight-soft_35_222222_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-bg_highlight-soft_35_222222_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-bg_highlight-soft_44_444444_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-bg_highlight-soft_44_444444_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/dark_hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/dark_hive/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-bg_highlight-soft_25_30273a_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-bg_highlight-soft_25_30273a_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/egg_plant/images/ui-bg_highlight-soft_45_5f5964_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/egg_plant/images/ui-bg_highlight-soft_45_5f5964_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-bg_diagonals-small_40_db4865_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-bg_diagonals-small_40_db4865_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-bg_diagonals-small_50_93c3cd_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-bg_diagonals-small_50_93c3cd_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-bg_diagonals-small_50_ff3853_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-bg_diagonals-small_50_ff3853_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/hot_snakes/images/ui-bg_diagonals-small_75_ccd232_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/hot_snakes/images/ui-bg_diagonals-small_75_ccd232_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/humanity/images/ui-bg_highlight-hard_100_f4f0ec_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_10_eceadf_60x60.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_10_f8f7f6_60x60.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_15_eceadf_60x60.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_15_f7f3de_60x60.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_15_ffffff_60x60.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_65_654b24_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_65_654b24_60x60.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_68_b83400_60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-bg_fine-grain_68_b83400_60x60.png -------------------------------------------------------------------------------- /src/jquery/themes/smoothess/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/smoothess/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-bg_gloss-wave_100_ece8da_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-bg_gloss-wave_100_ece8da_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-bg_gloss-wave_25_333333_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-darkness/images/ui-bg_highlight-soft_80_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-bg_diagonals-small_25_c5ddfc_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-bg_diagonals-thick_20_e69700_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-bg_diagonals-thick_22_1484e6_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-bg_diagonals-thick_26_2293f7_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/excite_bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/excite_bike/images/ui-bg_highlight-soft_100_f9f9f9_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-bg_diagonal-maze_20_6e4f1c_10x10.png -------------------------------------------------------------------------------- /src/jquery/themes/pepper_grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/pepper_grinder/images/ui-bg_diagonal-maze_40_000000_10x10.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-bg_highlight-hard_100_f5f3e5_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-bg_highlight-hard_100_fafaf4_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-bg_highlight-hard_15_459e00_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-bg_highlight-hard_15_459e00_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-bg_highlight-hard_95_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-bg_highlight-hard_95_cccccc_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-bg_highlight-soft_25_67b021_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-bg_highlight-soft_25_67b021_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/south_street/images/ui-bg_highlight-soft_95_ffedad_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/south_street/images/ui-bg_highlight-soft_95_ffedad_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /src/jquery/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kashimAstro/ofxUIJquery/HEAD/src/jquery/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- 1 | # Attempt to load a config.make file. 2 | # If none is found, project defaults in config.project.make will be used. 3 | ifneq ($(wildcard config.make),) 4 | include config.make 5 | endif 6 | 7 | # make sure the the OF_ROOT location is defined 8 | ifndef OF_ROOT 9 | OF_ROOT=$(realpath ../../..) 10 | endif 11 | 12 | # call the project makefile! 13 | include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ofxUIJquery 2 | 3 | Control applications remotely, with a simple interface "jquery-ui" 4 | your application server opens tcp/http interface and generates an html/javascript from your ofxGui. 5 | 6 | 7 | Dependencies: 8 | ofxGui 9 | ofxNetwork 10 | ofxLibwebsockets: https://github.com/labatrockwell/ofxLibwebsockets 11 | 12 | Still under construction, there are a lot of bugs! 13 | 14 | video: 15 | https://www.youtube.com/watch?v=Kb7UOyNLqBQ 16 | 17 | ![alt tag](https://github.com/kashimAstro/ofxUIJquery/blob/master/1.png) 18 | ![alt tag](https://github.com/kashimAstro/ofxUIJquery/blob/master/2.png) 19 | ![alt tag](https://github.com/kashimAstro/ofxUIJquery/blob/master/3.png) 20 | -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- 1 | #include "ofMain.h" 2 | #include "ofxGui.h" 3 | #include "ofxUIJquery.h" 4 | 5 | class ofApp : public ofBaseApp { 6 | public: 7 | ofEasyCam camera; 8 | vector rp; 9 | vector rc; 10 | ofxPanel gui; 11 | ofParameter dark; 12 | ofParameter dis; 13 | ofParameter pos; 14 | ofParameter color; 15 | ofParameter vec44; 16 | ofParameter disablelight; 17 | ofParameter fullscreen; 18 | ofParameter testint; 19 | ofParameter info; 20 | ofxUIJquery host; 21 | 22 | ofLight pointLight; 23 | ofLight spotLight; 24 | ofLight directionalLight; 25 | ofMaterial material; 26 | ofTrueTypeFont font; 27 | 28 | int w,h; 29 | int PORT,PORTWS; 30 | 31 | void setup(); 32 | void update(); 33 | void draw(); 34 | void exit(); 35 | void keyPressed(int key); 36 | }; 37 | -------------------------------------------------------------------------------- /src/jquery/simplewebscoket.js: -------------------------------------------------------------------------------- 1 | var FancyWebSocket = function(url) 2 | { 3 | var callbacks = {}; 4 | var ws_url = url; 5 | var conn; 6 | 7 | this.bind = function(event_name, callback){ 8 | callbacks[event_name] = callbacks[event_name] || []; 9 | callbacks[event_name].push(callback); 10 | return this;// chainable 11 | }; 12 | 13 | this.send = function(event_name, event_data){ 14 | this.conn.send( event_data ); 15 | return this; 16 | }; 17 | 18 | this.connect = function() { 19 | if ( typeof(MozWebSocket) == 'function' ) 20 | this.conn = new MozWebSocket(url); 21 | else 22 | this.conn = new WebSocket(url); 23 | 24 | // dispatch to the right handlers 25 | this.conn.onmessage = function(evt){ 26 | dispatch('message', evt.data); 27 | }; 28 | 29 | this.conn.onclose = function(){dispatch('close',null)} 30 | this.conn.onopen = function(){dispatch('open',null)} 31 | }; 32 | 33 | this.disconnect = function() { 34 | this.conn.close(); 35 | }; 36 | 37 | var dispatch = function(event_name, message){ 38 | var chain = callbacks[event_name]; 39 | if(typeof chain == 'undefined') return; // no callbacks for this event 40 | for(var i = 0; i < chain.length; i++){ 41 | chain[i]( message ) 42 | } 43 | } 44 | }; -------------------------------------------------------------------------------- /src/jquery/jquery.websocket-0.0.1.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery Web Sockets Plugin v0.0.1 3 | * http://code.google.com/p/jquery-websocket/ 4 | * 5 | * This document is licensed as free software under the terms of the 6 | * MIT License: http://www.opensource.org/licenses/mit-license.php 7 | * 8 | * Copyright (c) 2010 by shootaroo (Shotaro Tsubouchi). 9 | */ 10 | (function($){ 11 | $.extend({ 12 | websocketSettings: { 13 | open: function(){}, 14 | close: function(){}, 15 | message: function(){}, 16 | options: {}, 17 | events: {} 18 | }, 19 | websocket: function(url, s) { 20 | var ws = WebSocket ? new WebSocket( url ) : { 21 | send: function(m){ return false }, 22 | close: function(){} 23 | }; 24 | $(ws) 25 | .bind('open', $.websocketSettings.open) 26 | .bind('close', $.websocketSettings.close) 27 | .bind('message', $.websocketSettings.message) 28 | .bind('message', function(e){ 29 | var m = $.evalJSON(e.originalEvent.data); 30 | var h = $.websocketSettings.events[m.type]; 31 | if (h) h.call(this, m); 32 | }); 33 | ws._settings = $.extend($.websocketSettings, s); 34 | ws._send = ws.send; 35 | ws.send = function(type, data) { 36 | var m = {type: type}; 37 | m = $.extend(true, m, $.extend(true, {}, $.websocketSettings.options, m)); 38 | if (data) m['data'] = data; 39 | return this._send($.toJSON(m)); 40 | } 41 | $(window).unload(function(){ ws.close(); ws = null }); 42 | return ws; 43 | } 44 | }); 45 | })(jQuery); 46 | -------------------------------------------------------------------------------- /example/example.qbs: -------------------------------------------------------------------------------- 1 | import qbs 2 | import qbs.Process 3 | import qbs.File 4 | import qbs.FileInfo 5 | import qbs.TextFile 6 | import "../../../libs/openFrameworksCompiled/project/qtcreator/ofApp.qbs" as ofApp 7 | 8 | Project{ 9 | property string of_root: "../../.." 10 | 11 | ofApp { 12 | name: { return FileInfo.baseName(path) } 13 | 14 | files: [ 15 | "src/main.cpp", 16 | "src/ofApp.cpp", 17 | "src/ofApp.h", 18 | ] 19 | 20 | of.addons: [ 21 | 'ofxGui','ofxUIJquery','ofxNetwork','ofxLibwebsockets' 22 | ] 23 | 24 | // additional flags for the project. the of module sets some 25 | // flags by default to add the core libraries, search paths... 26 | // this flags can be augmented through the following properties: 27 | of.pkgConfigs: [] // list of additional system pkgs to include 28 | of.includePaths: [] // include search paths 29 | of.cFlags: [] // flags passed to the c compiler 30 | of.cxxFlags: [] // flags passed to the c++ compiler 31 | of.linkerFlags: [] // flags passed to the linker 32 | of.defines: [] // defines are passed as -D to the compiler 33 | // and can be checked with #ifdef or #if in the code 34 | 35 | // other flags can be set through the cpp module: http://doc.qt.io/qbs/cpp-module.html 36 | // eg: this will enable ccache when compiling 37 | // 38 | // cpp.compilerWrapper: 'ccache' 39 | 40 | Depends{ 41 | name: "cpp" 42 | } 43 | 44 | // common rules that parse the include search paths, core libraries... 45 | Depends{ 46 | name: "of" 47 | } 48 | 49 | // dependency with the OF library 50 | Depends{ 51 | name: "openFrameworks" 52 | } 53 | } 54 | 55 | references: [FileInfo.joinPaths(of_root, "/libs/openFrameworksCompiled/project/qtcreator/openFrameworks.qbs")] 56 | } 57 | -------------------------------------------------------------------------------- /src/jquery/jquery.json-2.2.min.js: -------------------------------------------------------------------------------- 1 | 2 | (function($){$.toJSON=function(o) 3 | {if(typeof(JSON)=='object'&&JSON.stringify) 4 | return JSON.stringify(o);var type=typeof(o);if(o===null) 5 | return"null";if(type=="undefined") 6 | return undefined;if(type=="number"||type=="boolean") 7 | return o+"";if(type=="string") 8 | return $.quoteString(o);if(type=='object') 9 | {if(typeof o.toJSON=="function") 10 | return $.toJSON(o.toJSON());if(o.constructor===Date) 11 | {var month=o.getUTCMonth()+1;if(month<10)month='0'+month;var day=o.getUTCDate();if(day<10)day='0'+day;var year=o.getUTCFullYear();var hours=o.getUTCHours();if(hours<10)hours='0'+hours;var minutes=o.getUTCMinutes();if(minutes<10)minutes='0'+minutes;var seconds=o.getUTCSeconds();if(seconds<10)seconds='0'+seconds;var milli=o.getUTCMilliseconds();if(milli<100)milli='0'+milli;if(milli<10)milli='0'+milli;return'"'+year+'-'+month+'-'+day+'T'+ 12 | hours+':'+minutes+':'+seconds+'.'+milli+'Z"';} 13 | if(o.constructor===Array) 14 | {var ret=[];for(var i=0;i *> stringParam; 28 | vector *> charParam; 29 | vector *> intParam; 30 | vector *> boolParam; 31 | vector *> floatParam; 32 | vector *> vec2Param; 33 | vector *> vec3Param; 34 | vector *> vec4Param; 35 | 36 | string buffer; 37 | string sock_value; 38 | string Response; 39 | string LOCAL_IP_ADDRESS; 40 | bool request; 41 | bool bSetup; 42 | int PORT_CLIENT; 43 | 44 | ofxUIJquery(); 45 | virtual ~ofxUIJquery(); 46 | 47 | int getPort(); 48 | string getResult(); 49 | string prepareHeader(int _size); 50 | string setStyle(STYLE TYPE); 51 | string response(string value); 52 | string place(ofxPanel &p); 53 | 54 | void init(); 55 | void setup(string ADRESS, int port, int port2, ofPoint bg, STYLE TYPE = REDMOND); 56 | void threadedFunction(); 57 | void start();//not use 58 | void stop();//not use 59 | void update(); 60 | void upsocketUI(int port); 61 | void exit(); 62 | void log(string _file,string _buffer); 63 | 64 | void setParameterBool(ofParameter &p, ofPoint bg, ofPoint color); 65 | void setParameterString(ofParameter &p, ofPoint bg, ofPoint color); 66 | void setParameterChar(ofParameter &p, ofPoint bg, ofPoint color); 67 | void setParameterInt(ofParameter &p, ofPoint bg, ofPoint color); 68 | void setParameterFloat(ofParameter &p, ofPoint bg, ofPoint color); 69 | void setParameterVec2(ofParameter &p, ofPoint bg, ofPoint color); 70 | void setParameterVec3(ofParameter &p, ofPoint bg, ofPoint color); 71 | void setParameterVec4(ofParameter &p, ofPoint bg, ofPoint color); 72 | 73 | /* websocket callback */ 74 | void onConnect( ofxLibwebsockets::Event& args ); 75 | void onOpen( ofxLibwebsockets::Event& args ); 76 | void onClose( ofxLibwebsockets::Event& args ); 77 | void onIdle( ofxLibwebsockets::Event& args ); 78 | void onMessage( ofxLibwebsockets::Event& args ); 79 | void onBroadcast( ofxLibwebsockets::Event& args ); 80 | }; 81 | 82 | #endif // OFXUIJQUERY_H 83 | -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- 1 | #include "ofApp.h" 2 | 3 | void ofApp::setup(){ 4 | //ofSetLogLevel(OF_LOG_SILENT); 5 | 6 | ofSetFrameRate(60); 7 | w=ofGetWidth(); 8 | h=ofGetHeight(); 9 | font.load("verdana.ttf",58); 10 | 11 | gui.setup(); 12 | gui.add(dark.set("dark",0.,0.,255.)); 13 | gui.add(testint.set("inttest",0,0,255)); 14 | gui.add(dis.set("dis",ofVec2f(0),ofVec2f(0),ofVec2f(10))); 15 | gui.add(pos.set("position",ofVec3f(0),ofVec3f(0),ofVec3f(500))); 16 | gui.add(color.set("color",ofVec3f(0),ofVec3f(0),ofVec3f(255))); 17 | gui.add(vec44.set("vec44",ofVec4f(0),ofVec4f(0),ofVec4f(255))); 18 | gui.add(disablelight.set("disablelight", true)); 19 | gui.add(fullscreen.set("fullscreen", false)); 20 | gui.add(info.set("info", "")); 21 | gui.setPosition(ofVec3f(10,65,0)); 22 | host.place(gui);//this test 23 | 24 | /*ofxUIjquery */ 25 | PORT=80; 26 | PORTWS=9092; 27 | /* 28 | BLITZER, 29 | CUPERTINO, 30 | DARK_HIVE, 31 | FLICK, 32 | LEFROG, 33 | OVERCATS, 34 | SMOOTHESS, 35 | SUNNY, 36 | VADER, 37 | REDMOND 38 | */ 39 | STYLE c = REDMOND; 40 | host.setup("192.168.8.102", PORT, PORTWS, ofPoint(186,65,25), c); 41 | host.setParameterBool(disablelight,ofPoint(242,47,136), ofPoint(50,205,50)); 42 | host.setParameterBool(fullscreen, ofPoint(242,47,136), ofPoint(204,0,56)); 43 | //host.setParameterInt(testint, ofPoint(242,47,136), ofPoint(0,5,50)); //bug 44 | host.setParameterFloat(dark, ofPoint(242,47,136), ofPoint(50,205,50)); 45 | host.setParameterVec2(dis, ofPoint(242,47,136), ofPoint(204,0,56)); 46 | host.setParameterVec3(pos, ofPoint(242,47,136), ofPoint(50,205,50)); 47 | host.setParameterVec3(color, ofPoint(242,47,136), ofPoint(204,0,56)); 48 | host.setParameterVec4(vec44, ofPoint(242,47,136), ofPoint(24,110,56)); 49 | host.setParameterString(info, ofPoint(242,47,136), ofPoint(50,205,50)); 50 | host.init(); 51 | 52 | host.prepareHeader(1); 53 | 54 | /**/ 55 | 56 | rp.resize(40); 57 | rc.resize(rp.size() ); 58 | for (int i=0; i fn = p.getControlNames(); 15 | for(int i = 0; i < fn.size(); i++) { 16 | ofLog()<\r\n"); 125 | 126 | ofxLibwebsockets::ServerOptions options = ofxLibwebsockets::defaultServerOptions(); 127 | options.port = getPort(); 128 | options.bUseSSL = false; 129 | server.addListener(this); 130 | bSetup = server.setup( options ); 131 | 132 | stringstream CSSbuffer; 133 | ifstream CSSfile(setStyle(TYPE).c_str()); 134 | if(CSSfile.is_open()) { 135 | CSSbuffer << CSSfile.rdbuf(); 136 | } 137 | stringstream jQuerybuffer; 138 | ifstream jQfile(ofToDataPath("../../../../ofxUIJquery/src/jquery/external/jquery/jquery.js").c_str()); 139 | if(jQfile.is_open()) { 140 | jQuerybuffer << jQfile.rdbuf(); 141 | } 142 | stringstream JUIbuffer; 143 | ifstream UIfile(ofToDataPath("../../../../ofxUIJquery/src/jquery/jquery-ui.min.js").c_str()); 144 | if(UIfile.is_open()) { 145 | JUIbuffer << UIfile.rdbuf(); 146 | } 147 | stringstream JSONbuffer; 148 | ifstream JSONfile(ofToDataPath("../../../../ofxUIJquery/src/jquery/jquery.json-2.2.min.js").c_str()); 149 | if(JSONfile.is_open()) { 150 | JSONbuffer << JSONfile.rdbuf(); 151 | } 152 | stringstream WEBSbuffer; 153 | ifstream WEBSfile(ofToDataPath("../../../../ofxUIJquery/src/jquery/simplewebscoket.js").c_str()); 154 | if(WEBSfile.is_open()) { 155 | WEBSbuffer << WEBSfile.rdbuf(); 156 | } 157 | 158 | buffer+="ofxUIJquery"; 159 | buffer+=""; 168 | buffer+=""; 171 | buffer+=""; 174 | buffer+=""; 177 | 178 | buffer+=""; 196 | 197 | buffer+=""; 198 | string rgb = ofToString(bg.x)+","+ofToString(bg.y)+","+ofToString(bg.z); 199 | buffer+="
"; 200 | request = true; 201 | } 202 | 203 | int ofxUIJquery::getPort(){ 204 | return PORT_CLIENT; 205 | } 206 | 207 | void ofxUIJquery::init(){ 208 | buffer+="
"; 209 | buffer+="\r\n"; 210 | } 211 | 212 | string ofxUIJquery::response(string value) { 213 | vector sp = ofSplitString(value,":"); 214 | string token,tvalue,name; 215 | 216 | if(sp[0]!="") token = sp[0]; //inutile 217 | if(sp[1]!="") tvalue = sp[1];//inutile 218 | 219 | if(token!=""&&tvalue!="") { 220 | /* string */ 221 | if(token=="UIString"){ 222 | name=sp[2]; 223 | string c; 224 | ofLog()<<"UIString detect:"<getName()==name){ 227 | c+=tvalue; 228 | stringParam[i]->set(name, c); 229 | } 230 | } 231 | } 232 | /**/ 233 | 234 | /* bool */ 235 | if(token=="UIBool"){ 236 | ofLog()<<"UIBool detect:"<getName()==tvalue){ 239 | boolParam[i]->set(tvalue, !boolParam[i]->get()); 240 | } 241 | } 242 | } 243 | /**/ 244 | 245 | /* int */ 246 | if(token=="UIinteger"){ 247 | name=sp[2]; 248 | ofLog()<<"UIinteger detect:"<getName()==name){ 251 | intParam[i]->set(name,ofToInt(tvalue)); 252 | } 253 | } 254 | } 255 | /**/ 256 | 257 | /* float */ 258 | if(token=="UIFloat"){ 259 | name=sp[2]; 260 | ofLog()<<"UIFloat detect:"<getName()==name){ 263 | floatParam[i]->set(name,ofToFloat(tvalue)); 264 | } 265 | } 266 | } 267 | /**/ 268 | 269 | /* vec2 */ 270 | if(token=="XUIVec2"){ 271 | name=sp[2]; 272 | ofLog()<<"XUIVec2 detect!"; 273 | for(int i = 0; i < vec2Param.size(); i++){ 274 | if(vec2Param[i]->getName()==name){ 275 | vec2Param[i]->set(name,ofVec2f(ofToFloat(tvalue),vec2Param[i]->get().y)); 276 | } 277 | } 278 | } 279 | if(token=="YUIVec2"){ 280 | name=sp[2]; 281 | ofLog()<<"YUIVec2 detect!"; 282 | for(int i = 0; i < vec2Param.size(); i++){ 283 | if(vec2Param[i]->getName()==name){ 284 | vec2Param[i]->set(name,ofVec2f(vec2Param[i]->get().x,ofToFloat(tvalue))); 285 | } 286 | } 287 | } 288 | /**/ 289 | 290 | /* vec3 */ 291 | if(token=="XUIVec3"){ 292 | name=sp[2]; 293 | ofLog()<<"XUIVec3 detect!"; 294 | for(int i = 0; i < vec3Param.size(); i++){ 295 | if(vec3Param[i]->getName()==name){ 296 | vec3Param[i]->set(name,ofVec3f(ofToFloat(tvalue),vec3Param[i]->get().y,vec3Param[i]->get().z)); 297 | } 298 | } 299 | } 300 | if(token=="YUIVec3"){ 301 | name=sp[2]; 302 | ofLog()<<"YUIVec3 detect!"; 303 | for(int i = 0; i < vec3Param.size(); i++){ 304 | if(vec3Param[i]->getName()==name){ 305 | vec3Param[i]->set(name,ofVec3f(vec3Param[i]->get().x,ofToFloat(tvalue),vec3Param[i]->get().z)); 306 | } 307 | } 308 | } 309 | if(token=="ZUIVec3"){ 310 | name=sp[2]; 311 | ofLog()<<"ZUIVec3 detect!"; 312 | for(int i = 0; i < vec3Param.size(); i++){ 313 | if(vec3Param[i]->getName()==name){ 314 | vec3Param[i]->set(ofVec3f(vec3Param[i]->get().x,vec3Param[i]->get().y,ofToFloat(tvalue))); 315 | } 316 | } 317 | } 318 | /**/ 319 | 320 | /* vec4 */ 321 | if(token=="XUIVec4"){ 322 | name=sp[2]; 323 | ofLog()<<"XUIVec4 detect!"; 324 | for(int i = 0; i < vec4Param.size(); i++){ 325 | if(vec4Param[i]->getName()==name){ 326 | vec4Param[i]->set(ofVec4f(ofToFloat(tvalue),vec4Param[i]->get().y,vec4Param[i]->get().z,vec4Param[i]->get().w)); 327 | } 328 | } 329 | } 330 | if(token=="YUIVec4"){ 331 | name=sp[2]; 332 | ofLog()<<"YUIVec4 detect!"; 333 | for(int i = 0; i < vec4Param.size(); i++){ 334 | if(vec4Param[i]->getName()==name){ 335 | vec4Param[i]->set(ofVec4f(vec4Param[i]->get().x,ofToFloat(tvalue),vec4Param[i]->get().z,vec4Param[i]->get().w)); 336 | } 337 | } 338 | } 339 | if(token=="ZUIVec4"){ 340 | name=sp[2]; 341 | ofLog()<<"ZUIVec4 detect!"; 342 | for(int i = 0; i < vec4Param.size(); i++){ 343 | if(vec4Param[i]->getName()==name){ 344 | vec4Param[i]->set(ofVec4f(vec4Param[i]->get().x,vec4Param[i]->get().y,ofToFloat(tvalue),vec4Param[i]->get().w)); 345 | } 346 | } 347 | } 348 | if(token=="WUIVec4"){ 349 | name=sp[2]; 350 | ofLog()<<"WUIVec4 detect!"; 351 | for(int i = 0; i < vec4Param.size(); i++){ 352 | if(vec4Param[i]->getName()==name){ 353 | vec4Param[i]->set(ofVec4f(vec4Param[i]->get().x,vec4Param[i]->get().y,vec4Param[i]->get().z,ofToFloat(tvalue))); 354 | } 355 | } 356 | } 357 | /**/ 358 | } 359 | return Response; 360 | } 361 | 362 | void ofxUIJquery::threadedFunction() { 363 | while(isThreadRunning()) { 364 | 365 | } 366 | } 367 | 368 | void ofxUIJquery::start(){ 369 | startThread(true, false); 370 | } 371 | 372 | void ofxUIJquery::stop(){ 373 | stopThread(); 374 | } 375 | 376 | void ofxUIJquery::exit(){ 377 | TCP.close(); 378 | server.close(); 379 | } 380 | 381 | void ofxUIJquery::update(){ 382 | for(int i = 0; i < TCP.getLastID(); i++) { 383 | if( TCP.isClientConnected(i) && request == true) { 384 | string h = prepareHeader(strlen(buffer.c_str())); 385 | string p = ofToString(h)+""+ofToString(buffer); 386 | 387 | TCP.send(i, p); 388 | log("ofxUIJquery.log",p); 389 | ofLog()<\r\n"); 400 | } 401 | 402 | void ofxUIJquery::setParameterBool(ofParameter &p, ofPoint bg, ofPoint color) { 403 | boolParam.push_back(&p); 404 | buffer+="\n\n"; 407 | buffer+="\n\n"; 410 | } 411 | 412 | void ofxUIJquery::setParameterString(ofParameter &p, ofPoint bg, ofPoint color) { 413 | stringParam.push_back(&p); 414 | buffer+="
"; 415 | buffer+="

"+ofToString(p.getName())+":
"; 416 | buffer+="

"; 417 | buffer+=""; 420 | } 421 | 422 | void ofxUIJquery::setParameterChar(ofParameter &p, ofPoint bg, ofPoint color) { //serve? 423 | charParam.push_back(&p); 424 | buffer+="

Char

"; 425 | } 426 | 427 | void ofxUIJquery::setParameterInt(ofParameter &p, ofPoint bg, ofPoint color) { //bug 428 | intParam.push_back(&p); 429 | buffer+="
"; 430 | buffer+="
  "+p.getName()+":
0
"; 431 | buffer+="

"; 432 | buffer+="

"; 433 | buffer+=""; 434 | } 435 | 436 | void ofxUIJquery::setParameterFloat(ofParameter &p, ofPoint bg, ofPoint color) { 437 | floatParam.push_back(&p); 438 | buffer+="
"; 439 | buffer+="
  "+p.getName()+":
0
"; 440 | buffer+="

"; 441 | buffer+="

"; 442 | buffer+=""; 443 | } 444 | 445 | void ofxUIJquery::setParameterVec2(ofParameter &p, ofPoint bg, ofPoint color) { 446 | vec2Param.push_back(&p); 447 | buffer+="
"; 448 | buffer+="
  "+p.getName()+":
ofVec2f(0,
0)
"; 449 | buffer+="

"; 450 | buffer+="

"; 451 | buffer+="

"; 452 | buffer+=""; 453 | buffer+=""; 454 | } 455 | 456 | void ofxUIJquery::setParameterVec3(ofParameter &p, ofPoint bg, ofPoint color) { 457 | vec3Param.push_back(&p); 458 | buffer+="
"; 459 | buffer+="
  "+p.getName()+":
ofVec3f(0,
0,
0)
"; 460 | buffer+="

"; 461 | buffer+="

"; 462 | buffer+="

"; 463 | buffer+="

"; 464 | buffer+=""; 465 | buffer+=""; 466 | buffer+=""; 467 | } 468 | 469 | void ofxUIJquery::setParameterVec4(ofParameter &p, ofPoint bg, ofPoint color) { 470 | vec4Param.push_back(&p); 471 | buffer+="
"; 472 | buffer+="
  "+p.getName()+":
ofVec4f(0,
0,
0,
0)
"; 473 | buffer+="

"; 474 | buffer+="

"; 475 | buffer+="

"; 476 | buffer+="

"; 477 | buffer+="

"; 478 | buffer+=""; 479 | buffer+=""; 480 | buffer+=""; 481 | buffer+=""; 482 | } 483 | 484 | /*void ofxUIJquery::setParameterColor(ofParameter &p) { //poi.. 485 | buffer+=""; 486 | buffer+=""; 487 | buffer+=""; 488 | //buffer+=""; 489 | 490 | buffer+="
"; 491 | buffer+=p.getName(); 492 | buffer+="

"; 493 | //buffer+="

"; 494 | buffer+="

"; 495 | buffer+="

"; 496 | buffer+="

"; 497 | }*/ 498 | 499 | --------------------------------------------------------------------------------