Commit 41eecab5925f3e8bffd93af9a33944e49c1e40f8
1 parent
2e8d5143
create icons_set.anubis in replacement of the direct definition into buttons.anu…
…bis. The icons can have different use than button.
Showing
2 changed files
with
27 additions
and
8 deletions
Show diff stats
web/widgets/button.anubis
| @@ -9,16 +9,10 @@ | @@ -9,16 +9,10 @@ | ||
| 9 | read calexium_lib/web/CXM_making_a_web_site.anubis | 9 | read calexium_lib/web/CXM_making_a_web_site.anubis |
| 10 | read calexium_lib/web/CXM_jquery.anubis | 10 | read calexium_lib/web/CXM_jquery.anubis |
| 11 | read calexium_lib/web/js_tools.anubis | 11 | read calexium_lib/web/js_tools.anubis |
| 12 | +transmit calexium_lib/web/widgets/icons_set.anubis | ||
| 12 | read tools/basis.anubis | 13 | read tools/basis.anubis |
| 13 | 14 | ||
| 14 | -public define String icn16_cross = "icons/16x16/cross.png". | ||
| 15 | -public define String icn16_edit = "icons/16x16/edit.png". | ||
| 16 | -public define String icn16_check = "icons/16x16/check.png". | ||
| 17 | -public define String icn16_phone = "icons/16x16/phone.png". | ||
| 18 | -public define String icn16_locked = "icons/16x16/locked.png". | ||
| 19 | -public define String icn16_clock = "icons/16x16/clock.png". | ||
| 20 | -public define String icn16_html = "icons/16x16/mimetypes/html.png". | ||
| 21 | -public define String icn16_txt = "icons/16x16/mimetypes/txt.png". | 15 | + |
| 22 | 16 | ||
| 23 | public define HTML_Partial_Content | 17 | public define HTML_Partial_Content |
| 24 | img_button_flink | 18 | img_button_flink |
| 1 | +/* | ||
| 2 | + * Created by PyramIDE. | ||
| 3 | + * User: フランスのトトロ | ||
| 4 | + * Date: 19/07/2015 | ||
| 5 | + * Time: 13:26 | ||
| 6 | + * © Calexium | ||
| 7 | + */ | ||
| 8 | + | ||
| 9 | +public define String icn16_cross = "icons/16x16/cross.png". | ||
| 10 | +public define String icn16_edit = "icons/16x16/edit.png". | ||
| 11 | +public define String icn16_check = "icons/16x16/check.png". | ||
| 12 | +public define String icn16_phone = "icons/16x16/phone.png". | ||
| 13 | +public define String icn16_locked = "icons/16x16/locked.png". | ||
| 14 | +public define String icn16_clock = "icons/16x16/clock.png". | ||
| 15 | +public define String icn16_vcard_add = "icons/16x16/vcard_add.png". | ||
| 16 | +public define String icn16_folder_edit = "icons/16x16/folder_edit.png". | ||
| 17 | + | ||
| 18 | + /****------------------ MIME PART -----------------****/ | ||
| 19 | + | ||
| 20 | +public define String icn16_mime_html = "icons/16x16/mimetypes/html.png". | ||
| 21 | +public define String icn16_mime_txt = "icons/16x16/mimetypes/txt.png". | ||
| 22 | +public define String icn16_mime_csv = "icons/16x16/mimetypes/csv.png". | ||
| 23 | +public define String icn16_mime_unknown = "icons/16x16/mimetypes/unknown.png". | ||
| 24 | + | ||
| 25 | +public define String icn16_mime(String mimetype) = "icons/16x16/mimetypes/"+mimetype+".png". |