add standard resources and library
|
@ -0,0 +1,5 @@
|
||||||
|
Dlang IDE
|
||||||
|
=========
|
||||||
|
|
||||||
|
Trying to write D language IDE using dlangUI library.
|
||||||
|
|
2
dub.json
|
@ -21,8 +21,6 @@
|
||||||
|
|
||||||
"mainSourceFile": "src/app.d",
|
"mainSourceFile": "src/app.d",
|
||||||
|
|
||||||
"libs-windows": ["dlanguilib", "phobos", "ole32", "kernel32", "user32", "comctl32", "comdlg32"],
|
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dlangui:dlanguilib": "~master"
|
"dlangui:dlanguilib": "~master"
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,65 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Copyright (C) 2011 The Android Open Source Project
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
|
<!-- Enabled states -->
|
||||||
|
|
||||||
|
<item android:state_checked="true" android:state_window_focused="false"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_check_on_holo_light" />
|
||||||
|
<item android:state_checked="false" android:state_window_focused="false"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_check_off_holo_light" />
|
||||||
|
|
||||||
|
<item android:state_checked="true" android:state_pressed="true"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_check_on_pressed_holo_light" />
|
||||||
|
<item android:state_checked="false" android:state_pressed="true"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_check_off_pressed_holo_light" />
|
||||||
|
|
||||||
|
<item android:state_checked="true" android:state_focused="true"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_check_on_focused_holo_light" />
|
||||||
|
<item android:state_checked="false" android:state_focused="true"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_check_off_focused_holo_light" />
|
||||||
|
|
||||||
|
<item android:state_checked="false"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_check_off_holo_light" />
|
||||||
|
<item android:state_checked="true"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_check_on_holo_light" />
|
||||||
|
|
||||||
|
|
||||||
|
<!-- Disabled states -->
|
||||||
|
|
||||||
|
<item android:state_checked="true" android:state_window_focused="false"
|
||||||
|
android:drawable="@drawable/btn_check_on_disabled_holo_light" />
|
||||||
|
<item android:state_checked="false" android:state_window_focused="false"
|
||||||
|
android:drawable="@drawable/btn_check_off_disabled_holo_light" />
|
||||||
|
|
||||||
|
<item android:state_checked="true" android:state_focused="true"
|
||||||
|
android:drawable="@drawable/btn_check_on_disabled_focused_holo_light" />
|
||||||
|
<item android:state_checked="false" android:state_focused="true"
|
||||||
|
android:drawable="@drawable/btn_check_off_disabled_focused_holo_light" />
|
||||||
|
|
||||||
|
<item android:state_checked="false" android:drawable="@drawable/btn_check_off_disabled_holo_light" />
|
||||||
|
<item android:state_checked="true" android:drawable="@drawable/btn_check_on_disabled_holo_light" />
|
||||||
|
|
||||||
|
</selector>
|
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 1.2 KiB |
|
@ -0,0 +1,33 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Copyright (C) 2008 The Android Open Source Project
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:state_window_focused="false" android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_default_small_normal" />
|
||||||
|
<item android:state_window_focused="false" android:state_enabled="false"
|
||||||
|
android:drawable="@drawable/btn_default_small_normal_disable" />
|
||||||
|
<item android:state_pressed="true"
|
||||||
|
android:drawable="@drawable/btn_default_small_pressed" />
|
||||||
|
<item android:state_focused="true" android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_default_small_selected" />
|
||||||
|
<item android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_default_small_normal" />
|
||||||
|
<item android:state_focused="true"
|
||||||
|
android:drawable="@drawable/btn_default_small_normal_disable_focused" />
|
||||||
|
<item
|
||||||
|
android:drawable="@drawable/btn_default_small_normal_disable" />
|
||||||
|
</selector>
|
||||||
|
|
|
@ -0,0 +1,26 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||||
|
<item
|
||||||
|
android:drawable="btn_default_small_normal_disable_focused"
|
||||||
|
color_transform_add1="0,0,0,0"
|
||||||
|
android:state_enabled="false"
|
||||||
|
android:state_focused="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="btn_default_small_normal_disable"
|
||||||
|
color_transform_add1="0,0,0,0"
|
||||||
|
android:state_focused="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="btn_default_small_pressed"
|
||||||
|
color_transform_add1="0,0,0,0"
|
||||||
|
android:state_pressed="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="btn_default_small_selected"
|
||||||
|
color_transform_add1="0,0,0,0"
|
||||||
|
android:state_selected="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="btn_default_small_normal_hover"
|
||||||
|
color_transform_add1="0,0,0,0"
|
||||||
|
android:state_hovered="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="@null" />
|
||||||
|
</selector>
|
|
@ -0,0 +1,59 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!-- Copyright (C) 2011 The Android Open Source Project
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
-->
|
||||||
|
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:state_checked="true" android:state_window_focused="false"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_radio_on_holo_light" />
|
||||||
|
<item android:state_checked="false" android:state_window_focused="false"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_radio_off_holo_light" />
|
||||||
|
|
||||||
|
<item android:state_checked="true" android:state_pressed="true"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_radio_on_pressed_holo_light" />
|
||||||
|
<item android:state_checked="false" android:state_pressed="true"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_radio_off_pressed_holo_light" />
|
||||||
|
|
||||||
|
<item android:state_checked="true" android:state_focused="true"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_radio_on_focused_holo_light" />
|
||||||
|
<item android:state_checked="false" android:state_focused="true"
|
||||||
|
android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_radio_off_focused_holo_light" />
|
||||||
|
|
||||||
|
<item android:state_checked="false" android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_radio_off_holo_light" />
|
||||||
|
<item android:state_checked="true" android:state_enabled="true"
|
||||||
|
android:drawable="@drawable/btn_radio_on_holo_light" />
|
||||||
|
|
||||||
|
<!-- Disabled states -->
|
||||||
|
|
||||||
|
<item android:state_checked="true" android:state_window_focused="false"
|
||||||
|
android:drawable="@drawable/btn_radio_on_disabled_holo_light" />
|
||||||
|
<item android:state_checked="false" android:state_window_focused="false"
|
||||||
|
android:drawable="@drawable/btn_radio_off_disabled_holo_light" />
|
||||||
|
|
||||||
|
<item android:state_checked="true" android:state_focused="true"
|
||||||
|
android:drawable="@drawable/btn_radio_on_disabled_focused_holo_light" />
|
||||||
|
<item android:state_checked="false" android:state_focused="true"
|
||||||
|
android:drawable="@drawable/btn_radio_off_disabled_focused_holo_light" />
|
||||||
|
|
||||||
|
<item android:state_checked="false" android:drawable="@drawable/btn_radio_off_disabled_holo_light" />
|
||||||
|
<item android:state_checked="true" android:drawable="@drawable/btn_radio_on_disabled_holo_light" />
|
||||||
|
|
||||||
|
</selector>
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||||
|
<item
|
||||||
|
android:drawable="main_menu_item_background_selected"
|
||||||
|
android:state_selected="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="main_menu_item_background_hover"
|
||||||
|
android:state_hovered="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="@null" />
|
||||||
|
</selector>
|
After Width: | Height: | Size: 347 B |
|
@ -0,0 +1,26 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--
|
||||||
|
/* //device/apps/common/assets/res/any/drawable/editbox_background.xml
|
||||||
|
**
|
||||||
|
** Copyright 2006, The Android Open Source Project
|
||||||
|
**
|
||||||
|
** Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
** you may not use this file except in compliance with the License.
|
||||||
|
** You may obtain a copy of the License at
|
||||||
|
**
|
||||||
|
** http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
**
|
||||||
|
** Unless required by applicable law or agreed to in writing, software
|
||||||
|
** distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
** See the License for the specific language governing permissions and
|
||||||
|
** limitations under the License.
|
||||||
|
*/
|
||||||
|
-->
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item android:state_focused="true" android:state_enabled="false" android:drawable="@drawable/editbox_background_disabled_focus_yellow" />
|
||||||
|
<item android:state_focused="true" android:drawable="@drawable/editbox_background_focus_yellow" />
|
||||||
|
<item android:state_enabled="false" android:drawable="@drawable/editbox_background_disabled" />
|
||||||
|
<item android:drawable="@drawable/editbox_background_normal" />
|
||||||
|
</selector>
|
||||||
|
|
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 371 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 2.2 KiB |
After Width: | Height: | Size: 215 B |
|
@ -0,0 +1,12 @@
|
||||||
|
#common actions, used in standard dialogs and controls
|
||||||
|
#english language resources
|
||||||
|
ACTION_OK=Ok
|
||||||
|
ACTION_CANCEL=Cancel
|
||||||
|
ACTION_YES=Yes
|
||||||
|
ACTION_NO=No
|
||||||
|
ACTION_CLOSE=Close
|
||||||
|
ACTION_ABORT=Abort
|
||||||
|
ACTION_RETRY=Retry
|
||||||
|
ACTION_IGNORE=Ignore
|
||||||
|
ACTION_OPEN=Open
|
||||||
|
ACTION_SAVE=Save
|
|
@ -0,0 +1,12 @@
|
||||||
|
#common actions, used in standard dialogs and controls
|
||||||
|
#russian language resources
|
||||||
|
ACTION_OK=Ок
|
||||||
|
ACTION_CANCEL=Отмена
|
||||||
|
ACTION_YES=Да
|
||||||
|
ACTION_NO=Нет
|
||||||
|
ACTION_CLOSE=Закрыть
|
||||||
|
ACTION_ABORT=Прервать
|
||||||
|
ACTION_RETRY=Повтор
|
||||||
|
ACTION_IGNORE=Игнорировать
|
||||||
|
ACTION_OPEN=Открыть
|
||||||
|
ACTION_SAVE=Сохранить
|
|
@ -0,0 +1,18 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||||
|
<item
|
||||||
|
android:drawable="#C0000000,1px"
|
||||||
|
android:state_enabled="false"
|
||||||
|
android:state_focused="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="#80000000,1px,#E04040FF"
|
||||||
|
android:state_focused="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="#A00000FF"
|
||||||
|
android:state_selected="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="#E04040FF"
|
||||||
|
android:state_hovered="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="@null" />
|
||||||
|
</selector>
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||||
|
<item
|
||||||
|
android:drawable="main_menu_item_background_selected"
|
||||||
|
android:state_selected="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="main_menu_item_background_hover"
|
||||||
|
android:state_hovered="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="@null" />
|
||||||
|
</selector>
|
After Width: | Height: | Size: 191 B |
After Width: | Height: | Size: 189 B |
After Width: | Height: | Size: 208 B |
After Width: | Height: | Size: 154 B |
After Width: | Height: | Size: 2.8 KiB |
After Width: | Height: | Size: 368 B |
After Width: | Height: | Size: 329 B |
After Width: | Height: | Size: 425 B |
After Width: | Height: | Size: 323 B |
After Width: | Height: | Size: 491 B |
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 632 B |
After Width: | Height: | Size: 508 B |
After Width: | Height: | Size: 1.7 KiB |
After Width: | Height: | Size: 1.5 KiB |
After Width: | Height: | Size: 1.9 KiB |
After Width: | Height: | Size: 582 B |
After Width: | Height: | Size: 557 B |
After Width: | Height: | Size: 466 B |
After Width: | Height: | Size: 476 B |
After Width: | Height: | Size: 469 B |
After Width: | Height: | Size: 919 B |
After Width: | Height: | Size: 479 B |
After Width: | Height: | Size: 1.0 KiB |
After Width: | Height: | Size: 533 B |
After Width: | Height: | Size: 1.8 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 736 B |
After Width: | Height: | Size: 1.4 KiB |
After Width: | Height: | Size: 578 B |
After Width: | Height: | Size: 1.3 KiB |
After Width: | Height: | Size: 3.0 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 3.3 KiB |
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 374 B |
After Width: | Height: | Size: 371 B |
After Width: | Height: | Size: 378 B |
After Width: | Height: | Size: 353 B |
After Width: | Height: | Size: 371 B |
After Width: | Height: | Size: 142 B |
After Width: | Height: | Size: 138 B |
After Width: | Height: | Size: 1.1 KiB |
|
@ -0,0 +1,14 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:constantSize="true"
|
||||||
|
android:dither="false"
|
||||||
|
android:variablePadding="false" >
|
||||||
|
<item
|
||||||
|
android:drawable="tab_btn_up_hover"
|
||||||
|
android:state_hovered="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="tab_btn_up_selected"
|
||||||
|
android:state_selected="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="tab_btn_up_normal" />
|
||||||
|
</selector>
|
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 2.1 KiB |
After Width: | Height: | Size: 266 B |
After Width: | Height: | Size: 286 B |
After Width: | Height: | Size: 267 B |
After Width: | Height: | Size: 333 B |
After Width: | Height: | Size: 263 B |
After Width: | Height: | Size: 258 B |
After Width: | Height: | Size: 258 B |
|
@ -0,0 +1,212 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<theme id="theme_default" fontSize="15" >
|
||||||
|
<style id="BUTTON"
|
||||||
|
backgroundImageId="btn_default_small"
|
||||||
|
align="Center"
|
||||||
|
margins="5,5,5,5"
|
||||||
|
/>
|
||||||
|
<style id="BUTTON_TRANSPARENT"
|
||||||
|
backgroundImageId="btn_default_small_transparent"
|
||||||
|
align="Center"
|
||||||
|
/>
|
||||||
|
<style id="BUTTON_LABEL"
|
||||||
|
layoutWidth="FILL_PARENT"
|
||||||
|
align="Left|VCenter"
|
||||||
|
/>
|
||||||
|
<style id="BUTTON_ICON"
|
||||||
|
align="Center"
|
||||||
|
/>
|
||||||
|
<style id="TEXT"
|
||||||
|
margins="2,2,2,2"
|
||||||
|
padding="1,1,1,1"
|
||||||
|
/>
|
||||||
|
<style id="HSPACER"
|
||||||
|
layoutWidth="FILL_PARENT"
|
||||||
|
layoutWeight="100"
|
||||||
|
minWidth="5"
|
||||||
|
/>
|
||||||
|
<style id="VSPACER"
|
||||||
|
layoutHeight="FILL_PARENT"
|
||||||
|
layoutWeight="100"
|
||||||
|
minHeight="5"
|
||||||
|
/>
|
||||||
|
<style id="BUTTON_NOMARGINS"
|
||||||
|
backgroundImageId="btn_default_small"
|
||||||
|
align="Center"
|
||||||
|
/>
|
||||||
|
<drawable id="scrollbar_button_up" value="scrollbar_btn_up"/>
|
||||||
|
<drawable id="scrollbar_button_down" value="scrollbar_btn_down"/>
|
||||||
|
<drawable id="scrollbar_button_left" value="scrollbar_btn_left"/>
|
||||||
|
<drawable id="scrollbar_button_right" value="scrollbar_btn_right"/>
|
||||||
|
<drawable id="scrollbar_indicator_vertical" value="scrollbar_indicator_vertical"/>
|
||||||
|
<drawable id="scrollbar_indicator_horizontal" value="scrollbar_indicator_horizontal"/>
|
||||||
|
<style id="SCROLLBAR"
|
||||||
|
backgroundColor="#C0808080"
|
||||||
|
align="Center"
|
||||||
|
/>
|
||||||
|
<style id="SCROLLBAR_BUTTON" parent="BUTTON"
|
||||||
|
/>
|
||||||
|
<style id="SLIDER"
|
||||||
|
/>
|
||||||
|
<style id="PAGE_SCROLL"
|
||||||
|
backgroundColor="#FFFFFFFF"
|
||||||
|
>
|
||||||
|
<state state_pressed="true" backgroundColor="#C0404080"/>
|
||||||
|
<state state_hovered="true" backgroundColor="#F0404080"/>
|
||||||
|
</style>
|
||||||
|
<style id="TAB_UP"
|
||||||
|
backgroundImageId="tab_up_background"
|
||||||
|
layoutWidth="FILL_PARENT"
|
||||||
|
>
|
||||||
|
<state state_selected="true" backgroundImageId="tab_up_backgrond_selected"/>
|
||||||
|
</style>
|
||||||
|
<style id="TAB_UP_BUTTON_TEXT"
|
||||||
|
textColor="#000000"
|
||||||
|
align="Center"
|
||||||
|
>
|
||||||
|
<state state_selected="true" state_focused="true" textColor="#000000"/>
|
||||||
|
<state state_selected="true" textColor="#000000"/>
|
||||||
|
<state state_focused="true" textColor="#000000"/>
|
||||||
|
<state state_hovered="true" textColor="#808000"/>
|
||||||
|
</style>
|
||||||
|
<style id="TAB_UP_BUTTON"
|
||||||
|
backgroundImageId="tab_btn_up"
|
||||||
|
/>
|
||||||
|
<style id="TAB_HOST"
|
||||||
|
layoutWidth="FILL_PARENT"
|
||||||
|
layoutHeight="FILL_PARENT"
|
||||||
|
backgroundColor="#F0F0F0"
|
||||||
|
/>
|
||||||
|
<style id="TAB_WIDGET"
|
||||||
|
padding="3,3,3,3"
|
||||||
|
backgroundColor="#EEEEEE"
|
||||||
|
/>
|
||||||
|
<style id="MAIN_MENU"
|
||||||
|
layoutWidth="FILL_PARENT"
|
||||||
|
backgroundColor="#EFEFF2"
|
||||||
|
/>
|
||||||
|
<style id="MAIN_MENU_ITEM"
|
||||||
|
padding="4,2,4,2"
|
||||||
|
backgroundImageId="main_menu_item_background"
|
||||||
|
textFlags="Parent"
|
||||||
|
/>
|
||||||
|
<style id="MENU_ITEM"
|
||||||
|
padding="4,2,4,2"
|
||||||
|
>
|
||||||
|
<state state_focused="true" backgroundColor="#40C0C000"/>
|
||||||
|
<state state_pressed="true" backgroundColor="#4080C000"/>
|
||||||
|
<state state_selected="true" backgroundColor="#00F8F9Fa"/>
|
||||||
|
<state state_hovered="true" backgroundColor="#C0FFFF00"/>
|
||||||
|
</style>
|
||||||
|
<style id="MENU_ICON"
|
||||||
|
margins="2,2,2,2"
|
||||||
|
align="Left|VCenter"
|
||||||
|
>
|
||||||
|
<state state_enabled="false" alpha="160"/>
|
||||||
|
</style>
|
||||||
|
<style id="MENU_LABEL"
|
||||||
|
margins="4,2,4,2"
|
||||||
|
align="Left|VCenter"
|
||||||
|
textFlags="UnderlineHotKeys"
|
||||||
|
>
|
||||||
|
<state state_enabled="false" textColor="#80404040"/>
|
||||||
|
</style>
|
||||||
|
<style id="MAIN_MENU_LABEL"
|
||||||
|
margins="4,2,4,2"
|
||||||
|
align="Left|VCenter"
|
||||||
|
textFlags="Parent"
|
||||||
|
>
|
||||||
|
<state state_enabled="false" textColor="#80404040"/>
|
||||||
|
</style>
|
||||||
|
<style id="MENU_ACCEL"
|
||||||
|
margins="4,2,4,2"
|
||||||
|
align="Left|VCenter"
|
||||||
|
>
|
||||||
|
<state state_enabled="false" textColor="#80404040"/>
|
||||||
|
</style>
|
||||||
|
<style id="TRANSPARENT_BUTTON_BACKGROUND"
|
||||||
|
backgroundImageId="transparent_button_background"
|
||||||
|
padding="4,2,4,2"
|
||||||
|
/>
|
||||||
|
<style id="POPUP_MENU"
|
||||||
|
backgroundImageId="popup_menu_background_normal"
|
||||||
|
/>
|
||||||
|
<style id="LIST_ITEM"
|
||||||
|
backgroundImageId="list_item_background"
|
||||||
|
/>
|
||||||
|
<style id="EDIT_LINE"
|
||||||
|
backgroundImageId="editbox_background"
|
||||||
|
padding="5,6,5,6"
|
||||||
|
margins="2,2,2,2"
|
||||||
|
minWidth="40"
|
||||||
|
fontFace="Arial"
|
||||||
|
fontFamily="SansSerif"
|
||||||
|
fontSize="16"
|
||||||
|
/>
|
||||||
|
<style id="EDIT_BOX"
|
||||||
|
backgroundImageId="editbox_background"
|
||||||
|
padding="5,6,5,6"
|
||||||
|
margins="2,2,2,2"
|
||||||
|
minWidth="100"
|
||||||
|
minHeight="60"
|
||||||
|
layoutWidth="FILL_PARENT"
|
||||||
|
layoutHeight="FILL_PARENT"
|
||||||
|
fontFace="Courier New"
|
||||||
|
fontFamily="MonoSpace"
|
||||||
|
fontSize="16"
|
||||||
|
/>
|
||||||
|
<style id="TREE_ITEM"
|
||||||
|
padding="2,2,2,2"
|
||||||
|
margins="0,0,0,0"
|
||||||
|
minWidth="100"
|
||||||
|
minHeight="16"
|
||||||
|
layoutWidth="FILL_PARENT"
|
||||||
|
layoutHeight="WRAP_CONTENT"
|
||||||
|
fontFace="Arial"
|
||||||
|
fontFamily="SansSerif"
|
||||||
|
fontSize="16">
|
||||||
|
<state state_focused="true" backgroundColor="#40C0C000"/>
|
||||||
|
<state state_pressed="true" backgroundColor="#4080C000"/>
|
||||||
|
<state state_selected="true" backgroundColor="#00F8F9Fa"/>
|
||||||
|
<state state_hovered="true" backgroundColor="#C0FFFF00"/>
|
||||||
|
</style>
|
||||||
|
<style id="TREE_ITEM_EXPAND_ICON"
|
||||||
|
margins="2,0,2,0"
|
||||||
|
align="Left|VCenter"
|
||||||
|
textFlags="Parent"
|
||||||
|
/>
|
||||||
|
<style id="TREE_ITEM_ICON"
|
||||||
|
margins="2,0,2,0"
|
||||||
|
align="Left|VCenter"
|
||||||
|
textFlags="Parent"
|
||||||
|
/>
|
||||||
|
<style id="TREE_ITEM_LABEL"
|
||||||
|
layoutWidth="FILL_PARENT"
|
||||||
|
layoutHeight="WRAP_CONTENT"
|
||||||
|
align="Left|VCenter"
|
||||||
|
textFlags="Parent"
|
||||||
|
/>
|
||||||
|
<style id="RESIZER_VERTICAL"
|
||||||
|
layoutWidth="FILL_PARENT"
|
||||||
|
layoutHeight="WRAP_CONTENT"
|
||||||
|
minHeight="7"
|
||||||
|
maxHeight="7"
|
||||||
|
backgroundColor="#E0E0E0">
|
||||||
|
<state state_focused="true" backgroundColor="#40C0C000"/>
|
||||||
|
<state state_pressed="true" backgroundColor="#4080C000"/>
|
||||||
|
<state state_selected="true" backgroundColor="#00F8F9Fa"/>
|
||||||
|
<state state_hovered="true" backgroundColor="#C0FFFF00"/>
|
||||||
|
</style>
|
||||||
|
<style id="RESIZER_HORIZONTAL"
|
||||||
|
layoutWidth="FILL_PARENT"
|
||||||
|
layoutHeight="WRAP_CONTENT"
|
||||||
|
minWidth="7"
|
||||||
|
maxWidth="7"
|
||||||
|
backgroundColor="#E0E0E0">
|
||||||
|
<state state_focused="true" backgroundColor="#40C0C000"/>
|
||||||
|
<state state_pressed="true" backgroundColor="#4080C000"/>
|
||||||
|
<state state_selected="true" backgroundColor="#00F8F9Fa"/>
|
||||||
|
<state state_hovered="true" backgroundColor="#C0FFFF00"/>
|
||||||
|
</style>
|
||||||
|
</theme>
|
||||||
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||||
|
<item
|
||||||
|
android:drawable="#C0000000,1px"
|
||||||
|
android:state_enabled="false"
|
||||||
|
android:state_focused="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="#A00000FF,1px,#F08080FF"
|
||||||
|
android:state_hovered="true"
|
||||||
|
android:state_focused="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="#A00000FF,1px"
|
||||||
|
android:state_focused="true"
|
||||||
|
/>
|
||||||
|
<item
|
||||||
|
android:drawable="#A00000FF"
|
||||||
|
android:state_selected="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="#F08080FF"
|
||||||
|
android:state_hovered="true" />
|
||||||
|
<item
|
||||||
|
android:drawable="@null" />
|
||||||
|
</selector>
|