diff options
-rw-r--r-- | webkit/glue/resources/linux-checkbox-disabled-off.png | bin | 0 -> 2850 bytes | |||
-rw-r--r-- | webkit/glue/resources/linux-checkbox-disabled-on.png | bin | 0 -> 3015 bytes | |||
-rw-r--r-- | webkit/glue/resources/linux-radio-disabled-off.png | bin | 0 -> 2910 bytes | |||
-rw-r--r-- | webkit/glue/resources/linux-radio-disabled-on.png | bin | 0 -> 3015 bytes | |||
-rw-r--r-- | webkit/glue/webkit_resources.grd | 4 | ||||
-rw-r--r-- | webkit/glue/webkitclient_impl.cc | 4 |
6 files changed, 8 insertions, 0 deletions
diff --git a/webkit/glue/resources/linux-checkbox-disabled-off.png b/webkit/glue/resources/linux-checkbox-disabled-off.png Binary files differnew file mode 100644 index 0000000..c916674 --- /dev/null +++ b/webkit/glue/resources/linux-checkbox-disabled-off.png diff --git a/webkit/glue/resources/linux-checkbox-disabled-on.png b/webkit/glue/resources/linux-checkbox-disabled-on.png Binary files differnew file mode 100644 index 0000000..d9ff1c6 --- /dev/null +++ b/webkit/glue/resources/linux-checkbox-disabled-on.png diff --git a/webkit/glue/resources/linux-radio-disabled-off.png b/webkit/glue/resources/linux-radio-disabled-off.png Binary files differnew file mode 100644 index 0000000..97aa6f9 --- /dev/null +++ b/webkit/glue/resources/linux-radio-disabled-off.png diff --git a/webkit/glue/resources/linux-radio-disabled-on.png b/webkit/glue/resources/linux-radio-disabled-on.png Binary files differnew file mode 100644 index 0000000..07aed36 --- /dev/null +++ b/webkit/glue/resources/linux-radio-disabled-on.png diff --git a/webkit/glue/webkit_resources.grd b/webkit/glue/webkit_resources.grd index 18675ca..bbd40b6 100644 --- a/webkit/glue/webkit_resources.grd +++ b/webkit/glue/webkit_resources.grd @@ -29,8 +29,12 @@ <if expr="os == 'linux2'"> <include name="IDR_LINUX_CHECKBOX_OFF" file="resources\linux-checkbox-off.png" type="BINDATA" /> <include name="IDR_LINUX_CHECKBOX_ON" file="resources\linux-checkbox-on.png" type="BINDATA" /> + <include name="IDR_LINUX_CHECKBOX_DISABLED_OFF" file="resources\linux-checkbox-disabled-off.png" type="BINDATA" /> + <include name="IDR_LINUX_CHECKBOX_DISABLED_ON" file="resources\linux-checkbox-disabled-on.png" type="BINDATA" /> <include name="IDR_LINUX_RADIO_OFF" file="resources\linux-radio-off.png" type="BINDATA" /> <include name="IDR_LINUX_RADIO_ON" file="resources\linux-radio-on.png" type="BINDATA" /> + <include name="IDR_LINUX_RADIO_DISABLED_OFF" file="resources\linux-radio-disabled-off.png" type="BINDATA" /> + <include name="IDR_LINUX_RADIO_DISABLED_ON" file="resources\linux-radio-disabled-on.png" type="BINDATA" /> </if> <include name="IDC_ALIAS" file="resources\aliasb.cur" type="CURSOR" /> diff --git a/webkit/glue/webkitclient_impl.cc b/webkit/glue/webkitclient_impl.cc index 91152f4..1a8a86d 100644 --- a/webkit/glue/webkitclient_impl.cc +++ b/webkit/glue/webkitclient_impl.cc @@ -107,8 +107,12 @@ WebData WebKitClientImpl::loadResource(const char* name) { #if defined(OS_LINUX) { "linuxCheckboxOff", IDR_LINUX_CHECKBOX_OFF }, { "linuxCheckboxOn", IDR_LINUX_CHECKBOX_ON }, + { "linuxCheckboxDisabledOff", IDR_LINUX_CHECKBOX_DISABLED_OFF }, + { "linuxCheckboxDisabledOn", IDR_LINUX_CHECKBOX_DISABLED_ON }, { "linuxRadioOff", IDR_LINUX_RADIO_OFF }, { "linuxRadioOn", IDR_LINUX_RADIO_ON }, + { "linuxRadioDisabledOff", IDR_LINUX_RADIO_DISABLED_OFF }, + { "linuxRadioDisabledOn", IDR_LINUX_RADIO_DISABLED_ON }, #endif }; for (size_t i = 0; i < ARRAYSIZE_UNSAFE(resources); ++i) { |