├── third_party ├── gtest │ └── PUT_GTEST_HERE ├── zlib │ └── PUT_ZLIB_HERE ├── protobuf │ └── PUT_PROTOBUF_HERE └── google_gadgets_for_linux │ ├── NEWS │ ├── packaging │ └── debian │ │ ├── compat │ │ ├── libggadget-1.0-0.docs │ │ ├── libggadget-gtk-1.0-0.install │ │ ├── libggadget-qt-1.0-0.install │ │ ├── google-gadgets-common.postrm │ │ ├── google-gadgets-common.postinst │ │ ├── libggadget-1.0-0.install │ │ ├── google-gadgets-gst.install │ │ ├── watch │ │ ├── google-gadgets-qt.menu │ │ ├── google-gadgets-gtk.menu │ │ ├── libggadget-qt-1.0-dev.install │ │ ├── libggadget-gtk-1.0-dev.install │ │ ├── google-gadgets-qt.install │ │ ├── google-gadgets-xul.install │ │ ├── google-gadgets-gtk.install │ │ ├── libggadget-1.0-dev.install │ │ └── changelog │ ├── gadgets │ ├── designer │ │ ├── blank_gadget │ │ │ ├── main.js │ │ │ ├── icon_large.png │ │ │ ├── icon_small.png │ │ │ ├── main.xml │ │ │ ├── stock_images │ │ │ │ ├── button_up.png │ │ │ │ ├── button_down.png │ │ │ │ ├── button_over.png │ │ │ │ ├── checkbox_up.png │ │ │ │ ├── radiobutton.png │ │ │ │ ├── checkbox_down.png │ │ │ │ ├── checkbox_over.png │ │ │ │ ├── progressbar_empty.png │ │ │ │ ├── progressbar_full.png │ │ │ │ ├── checkbox_checked_up.png │ │ │ │ ├── radiobutton_checked.png │ │ │ │ ├── checkbox_checked_down.png │ │ │ │ └── checkbox_checked_over.png │ │ │ ├── en │ │ │ │ └── strings.xml │ │ │ └── gadget.gmanifest │ │ ├── gadget │ │ │ ├── icon.png │ │ │ └── images │ │ │ │ ├── pin.png │ │ │ │ ├── folder.png │ │ │ │ ├── tool_a.png │ │ │ │ ├── tool_div.png │ │ │ │ ├── tool_edit.png │ │ │ │ ├── tool_img.png │ │ │ │ ├── folder_over.png │ │ │ │ ├── tab_active.png │ │ │ │ ├── tool_button.png │ │ │ │ ├── tool_label.png │ │ │ │ ├── tool_radio.png │ │ │ │ ├── control_border.png │ │ │ │ ├── resize_corner.png │ │ │ │ ├── tab_background.png │ │ │ │ ├── tab_inactive.png │ │ │ │ ├── tool_checkbox.png │ │ │ │ ├── tool_combobox.png │ │ │ │ ├── tool_listbox.png │ │ │ │ ├── tool_scrollbar.png │ │ │ │ ├── border_top_left.png │ │ │ │ ├── border_top_right.png │ │ │ │ ├── close_button_up.png │ │ │ │ ├── selection_border.png │ │ │ │ ├── tool_button_down.png │ │ │ │ ├── tool_button_over.png │ │ │ │ ├── tool_contentarea.png │ │ │ │ ├── tool_progressbar.png │ │ │ │ ├── view_background.png │ │ │ │ ├── border_bottom_left.png │ │ │ │ ├── border_bottom_right.png │ │ │ │ ├── border_middle_left.png │ │ │ │ ├── border_middle_right.png │ │ │ │ ├── border_top_middle.png │ │ │ │ ├── close_button_down.png │ │ │ │ ├── close_button_over.png │ │ │ │ ├── tool_button_active.png │ │ │ │ ├── border_bottom_middle.png │ │ │ │ └── tool_button_active_over.png │ │ └── ggl-designer.desktop.in │ ├── igoogle │ │ ├── bkgnd.png │ │ ├── igoogle_32.gif │ │ ├── shared.js │ │ └── options.xml │ ├── rss │ │ ├── button_up.png │ │ ├── rss_bkgnd.png │ │ ├── button_down.png │ │ ├── button_over.png │ │ ├── large_rss_icon.png │ │ ├── small_rss_icon.png │ │ └── shared.js │ ├── analog_clock │ │ ├── base.png │ │ ├── center.png │ │ ├── hourhand.png │ │ ├── minhand.png │ │ ├── reflection.png │ │ ├── secondhand.png │ │ ├── plugin_large.png │ │ └── plugin_small.png │ ├── photos │ │ ├── images │ │ │ ├── rect.png │ │ │ ├── bkgnd-b.png │ │ │ ├── bkgnd-l.png │ │ │ ├── bkgnd-r.png │ │ │ ├── bkgnd-t.png │ │ │ ├── left_1.png │ │ │ ├── left_2.png │ │ │ ├── left_3.png │ │ │ ├── pause_1.png │ │ │ ├── pause_2.png │ │ │ ├── pause_3.png │ │ │ ├── play_1.png │ │ │ ├── play_2.png │ │ │ ├── play_3.png │ │ │ ├── right_1.png │ │ │ ├── right_2.png │ │ │ ├── right_3.png │ │ │ ├── icon_large.png │ │ │ ├── icon_small.png │ │ │ ├── lbutton_up.png │ │ │ ├── scrollup_d.png │ │ │ ├── scrollup_o.png │ │ │ ├── scrollup_u.png │ │ │ ├── lbutton_down.png │ │ │ ├── lbutton_over.png │ │ │ ├── scrolldown_d.png │ │ │ ├── scrolldown_o.png │ │ │ ├── scrolldown_u.png │ │ │ └── toolbar_bkgnd.png │ │ └── details.xml │ ├── digital_alarm_clock │ │ ├── alarm.wav │ │ ├── images │ │ │ ├── bell.png │ │ │ ├── map.png │ │ │ ├── browse.png │ │ │ ├── digit_0.png │ │ │ ├── digit_1.png │ │ │ ├── digit_2.png │ │ │ ├── digit_3.png │ │ │ ├── digit_4.png │ │ │ ├── digit_5.png │ │ │ ├── digit_6.png │ │ │ ├── digit_7.png │ │ │ ├── digit_8.png │ │ │ ├── digit_9.png │ │ │ ├── browse_d.png │ │ │ ├── checkbox.png │ │ │ ├── bell_ringing.png │ │ │ ├── button_down.png │ │ │ ├── button_hover.png │ │ │ ├── checkbox_chk.png │ │ │ ├── digits_dots.png │ │ │ ├── map_daylight.png │ │ │ ├── map_pointers.png │ │ │ ├── radiobutton.png │ │ │ ├── base_brown-left.png │ │ │ ├── button_default.png │ │ │ ├── flashing_lights.png │ │ │ ├── radiobutton_chk.png │ │ │ ├── base_brown-middle.png │ │ │ └── base_brown-right.png │ │ ├── icon24_daylightclock.png │ │ └── icon32_daylightclock.png │ ├── gadget_browser │ │ └── images │ │ │ ├── next_down.png │ │ │ ├── next_hover.png │ │ │ ├── bg_top_left.png │ │ │ ├── bg_top_right.png │ │ │ ├── next_default.png │ │ │ ├── add_button_down.png │ │ │ ├── bg_bottom_left.png │ │ │ ├── bg_bottom_right.png │ │ │ ├── bg_middle_left.png │ │ │ ├── bg_middle_right.png │ │ │ ├── bg_top_middle.png │ │ │ ├── category_active.png │ │ │ ├── category_hover.png │ │ │ ├── close_button_up.png │ │ │ ├── control_border.png │ │ │ ├── previous_down.png │ │ │ ├── previous_hover.png │ │ │ ├── resize_corner.png │ │ │ ├── scrollbar_thumb.png │ │ │ ├── scrollbar_track.png │ │ │ ├── add_button_hover.png │ │ │ ├── bg_bottom_middle.png │ │ │ ├── close_button_down.png │ │ │ ├── close_button_over.png │ │ │ ├── default_thumbnail.jpg │ │ │ ├── previous_default.png │ │ │ ├── search_lens_down.png │ │ │ ├── search_lens_hover.png │ │ │ ├── thumbnails_hover.png │ │ │ ├── thumbnails_shadow.png │ │ │ ├── add_button_default.png │ │ │ ├── search_lens_default.png │ │ │ ├── status_added_default.png │ │ │ ├── status_adding_default.png │ │ │ ├── status_failed_default.png │ │ │ ├── thumbnails_hover_mask.png │ │ │ └── thumbnails_default_mask.png │ └── Makefile.am │ ├── ggadget │ ├── tests │ │ ├── file_manager_test_data │ │ │ ├── 1033 │ │ │ │ └── 1033_file │ │ │ ├── 2052 │ │ │ │ └── 2052_file │ │ │ ├── en │ │ │ │ ├── en_file │ │ │ │ └── global_file │ │ │ ├── global_file │ │ │ ├── zh_CN │ │ │ │ ├── zh-CN_file │ │ │ │ ├── global_file │ │ │ │ └── strings.xml │ │ │ ├── strings.xml │ │ │ └── main.xml │ │ └── test_modules │ │ │ ├── fake_module │ │ │ └── CMakeLists.txt │ │ │ ├── bar_module │ │ │ └── CMakeLists.txt │ │ │ ├── foo_module │ │ │ └── CMakeLists.txt │ │ │ └── tux_module │ │ │ └── CMakeLists.txt │ ├── gtk │ │ ├── tests │ │ │ ├── base.png │ │ │ ├── 120day.png │ │ │ ├── opaque.png │ │ │ ├── kitty419.jpg │ │ │ └── testmask.png │ │ └── libggadget-gtk-1.0.pc.in │ ├── js │ │ └── libggadget-js-1.0.pc.in │ ├── dbus │ │ └── libggadget-dbus-1.0.pc.in │ ├── qt │ │ ├── libggadget-qt-1.0.pc.in │ │ └── tests │ │ │ └── CMakeLists.txt │ ├── xdg │ │ ├── libggadget-xdg-1.0.pc.in │ │ └── tests │ │ │ └── CMakeLists.txt │ ├── libggadget-1.0.pc.in │ ├── npapi │ │ ├── libggadget-npapi-1.0.pc.in │ │ └── tests │ │ │ └── CMakeLists.txt │ ├── popout_main_view_decorator.cc │ └── mac │ │ └── utils.h │ ├── utils │ ├── kwwrap-g++.sh │ ├── stat_trace_alloc.sh │ ├── build_release_ac.sh │ ├── build_debug_ac.sh │ ├── build_debug.sh │ └── build_release.sh │ ├── AUTHORS │ ├── THANKS │ ├── xdg │ ├── 32x32.png │ ├── 48x48.png │ ├── 64x64.png │ ├── 128x128.png │ ├── 192x192.png │ └── 00-google-gadgets.xml │ ├── resources │ ├── pinned.png │ ├── rss_sm.jpg │ ├── todo_sm.jpg │ ├── button_up.png │ ├── email_sm.jpg │ ├── igoogle_sm.jpg │ ├── photos_sm.jpg │ ├── radio_down.png │ ├── radio_over.png │ ├── radio_up.png │ ├── scrollup_d.png │ ├── scrollup_o.png │ ├── scrollup_u.png │ ├── unpinned.png │ ├── weather_sm.jpg │ ├── button_down.png │ ├── button_over.png │ ├── checkbox_up.png │ ├── scrollbar_d.png │ ├── scrollbar_o.png │ ├── scrollbar_u.png │ ├── scrolldown_d.png │ ├── scrolldown_o.png │ ├── scrolldown_u.png │ ├── scrollleft_d.png │ ├── scrollleft_o.png │ ├── scrollleft_u.png │ ├── vd_back_down.png │ ├── vd_back_over.png │ ├── vd_menu_down.png │ ├── vd_menu_over.png │ ├── analog_clock_sm.jpg │ ├── checkbox_down.png │ ├── checkbox_over.png │ ├── combo_arrow_up.png │ ├── focus_overlay.png │ ├── google-gadgets.png │ ├── scratchpad_sm.jpg │ ├── scrollbar_d_h.png │ ├── scrollbar_o_h.png │ ├── scrollbar_u_h.png │ ├── scrollright_d.png │ ├── scrollright_o.png │ ├── scrollright_u.png │ ├── sidebar_add_up.png │ ├── sidebar_google.png │ ├── sidebar_menu_up.png │ ├── unpinned_over.png │ ├── vd_back_normal.png │ ├── vd_close_down.png │ ├── vd_close_normal.png │ ├── vd_close_over.png │ ├── vd_forward_down.png │ ├── vd_forward_over.png │ ├── vd_framed_top.png │ ├── vd_menu_normal.png │ ├── vd_popin_down.png │ ├── vd_popin_normal.png │ ├── vd_popin_over.png │ ├── vd_popout_down.png │ ├── vd_popout_over.png │ ├── combo_arrow_down.png │ ├── combo_arrow_over.png │ ├── progressbar_empty.png │ ├── progressbar_full.png │ ├── radio_checked_up.png │ ├── scroll_background.png │ ├── scrollbar_grippy.png │ ├── sidebar_add_down.png │ ├── sidebar_add_over.png │ ├── sidebar_menu_down.png │ ├── sidebar_menu_over.png │ ├── vd_forward_normal.png │ ├── vd_framed_bottom.png │ ├── vd_framed_middle.png │ ├── vd_popout_normal.png │ ├── checkbox_checked_up.png │ ├── google-gadgets-big.png │ ├── radio_checked_down.png │ ├── radio_checked_over.png │ ├── scroll_background_h.png │ ├── scrollbar_grippy_h.png │ ├── sidebar_minimize_up.png │ ├── vd_button_background.png │ ├── vd_framed_background.png │ ├── vd_framed_close_down.png │ ├── vd_framed_close_over.png │ ├── vd_main_background.png │ ├── checkbox_checked_down.png │ ├── checkbox_checked_over.png │ ├── digital_alarm_clock_sm.jpg │ ├── sidebar_minimize_down.png │ ├── sidebar_minimize_over.png │ ├── vd_bottom_right_corner.png │ ├── vd_framed_close_normal.png │ ├── vd_main_docked_border_h.png │ ├── vd_main_docked_border_v.png │ ├── vd_details_button_bkgnd_click.png │ ├── vd_details_button_bkgnd_normal.png │ ├── vd_details_button_bkgnd_over.png │ ├── vd_details_button_negfb_normal.png │ ├── vd_details_button_negfb_over.png │ ├── vd_main_background_minimized.png │ ├── vd_main_background_transparent.png │ └── messages-catalog.xml │ ├── docs │ └── hosts-gadgets.dia │ ├── third_party │ ├── npapi │ │ └── npruntime.h │ ├── xdgmime │ │ ├── README.source │ │ ├── README │ │ └── CMakeLists.txt │ ├── unzip │ │ ├── iowin32.h │ │ ├── mztools.h │ │ └── CMakeLists.txt │ ├── Makefile.am │ ├── CMakeLists.txt │ ├── codesighs │ │ ├── CMakeLists.txt │ │ └── Makefile.am │ └── editline │ │ └── CMakeLists.txt │ ├── extensions │ ├── gtkmoz_browser_element │ │ └── tests │ │ │ ├── background.png │ │ │ ├── icon_small.png │ │ │ ├── gadget.gmanifest │ │ │ └── main.xml │ ├── default_framework │ │ └── CMakeLists.txt │ ├── default_options │ │ ├── tests │ │ │ └── CMakeLists.txt │ │ └── CMakeLists.txt │ ├── analytics_usage_collector │ │ └── CMakeLists.txt │ ├── html_flash_element │ │ └── CMakeLists.txt │ ├── google_gadget_manager │ │ └── CMakeLists.txt │ ├── gtk_flash_element │ │ └── CMakeLists.txt │ ├── libxml2_xml_parser │ │ └── CMakeLists.txt │ ├── curl_xml_http_request │ │ └── CMakeLists.txt │ ├── dbus_script_class │ │ └── CMakeLists.txt │ ├── gst_audio_framework │ │ └── CMakeLists.txt │ └── qt_edit_element │ │ └── CMakeLists.txt │ ├── README │ ├── hosts │ ├── qt │ │ └── ggl-qt.desktop.in │ ├── gtk │ │ ├── ggl-gtk.desktop.in │ │ └── tests │ │ │ └── CMakeLists.txt │ ├── CMakeLists.txt │ └── Makefile.am │ ├── tools │ └── cmd_redirection.sh │ ├── cmake │ ├── GGLCheckFunctionExists.c │ ├── test_js_threadsafe.c │ ├── zip.sh │ ├── test_wrapper.sh │ └── js_test_wrapper.sh │ ├── README.Goopy │ └── unittest │ └── CMakeLists.txt ├── ipc ├── service │ ├── ipc_service.rgs │ ├── ipc_service_win.gyp │ └── resource.h ├── protos │ └── protos.gyp ├── testing_prod.h ├── keyboard_codes.h ├── sub_component_base.cc └── message_channel_win_consts.cc ├── resources ├── test.cer ├── test.pfx ├── about_dialog.rc ├── about_dialog_resource.h ├── data │ ├── skin_resources.dat │ ├── io.github.rime.engine │ │ ├── rime.png │ │ └── rime_over.png │ ├── com.google.input_tools.skinui │ │ └── default.gskin │ └── com.google.input_tools.keyboard_input │ │ ├── english.png │ │ └── english_over.png ├── google_input_tools.ico └── afxres.h ├── installer ├── registry.reg └── installer.gyp ├── docs ├── Plugins_framework.pdf └── A_unified_cross_platform_inputmethod_framework.pdf ├── base ├── base.vcxproj.user ├── mac │ └── stl │ │ ├── hash_map │ │ └── hash_set ├── base.gyp ├── benchmark.h ├── basictypes.h ├── reference_pointer.h ├── posix │ ├── alloca.h │ ├── strings.h │ └── unistd.cc ├── scoped_ptr_internals.cc ├── base_api.h └── file │ └── file_util.h ├── plugins └── rime │ ├── rime.def │ ├── rime_key_event.h │ ├── rime_plugin.cc │ └── rime.gyp ├── components ├── win_frontend │ ├── text_service.rgs │ ├── main.def │ ├── ipc_console.h │ └── version.rc ├── keyboard_input │ └── keyboard_input.gyp ├── plugin_manager │ └── plugin_manager.gyp └── common │ └── keystroke.h ├── .gitignore ├── text_range ├── text_range.gyp └── window_utils.h ├── locale └── locale.gyp ├── README.windows ├── common ├── common_test.cc ├── mutex.h ├── delayed_execute.h ├── hash.h ├── omaha_const.h └── omaha_const.cc ├── gyp.sh ├── tsf └── test_main.cc ├── all.gyp ├── appsensorapi └── appsensorapi.gyp ├── frontend └── text_styles.h └── imm └── order.h /third_party/gtest/PUT_GTEST_HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/zlib/PUT_ZLIB_HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/protobuf/PUT_PROTOBUF_HERE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ipc/service/ipc_service.rgs: -------------------------------------------------------------------------------- 1 | HKCR 2 | { 3 | } -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/packaging/debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /resources/test.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/resources/test.cer -------------------------------------------------------------------------------- /resources/test.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/resources/test.pfx -------------------------------------------------------------------------------- /installer/registry.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/installer/registry.reg -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/packaging/debian/libggadget-1.0-0.docs: -------------------------------------------------------------------------------- 1 | README 2 | NEWS 3 | -------------------------------------------------------------------------------- /docs/Plugins_framework.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/docs/Plugins_framework.pdf -------------------------------------------------------------------------------- /resources/about_dialog.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/resources/about_dialog.rc -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/blank_gadget/main.js: -------------------------------------------------------------------------------- 1 | function view_onopen() { 2 | } -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/ggadget/tests/file_manager_test_data/en/en_file: -------------------------------------------------------------------------------- 1 | en_file contents 2 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/ggadget/tests/file_manager_test_data/global_file: -------------------------------------------------------------------------------- 1 | global_file at top 2 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/ggadget/tests/file_manager_test_data/1033/1033_file: -------------------------------------------------------------------------------- 1 | 1033_file contents 2 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/ggadget/tests/file_manager_test_data/2052/2052_file: -------------------------------------------------------------------------------- 1 | 2052_file contents 2 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/ggadget/tests/file_manager_test_data/en/global_file: -------------------------------------------------------------------------------- 1 | global_file under en 2 | -------------------------------------------------------------------------------- /resources/about_dialog_resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/resources/about_dialog_resource.h -------------------------------------------------------------------------------- /resources/data/skin_resources.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/resources/data/skin_resources.dat -------------------------------------------------------------------------------- /resources/google_input_tools.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/resources/google_input_tools.ico -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/ggadget/tests/file_manager_test_data/zh_CN/zh-CN_file: -------------------------------------------------------------------------------- 1 | zh-CN_file contents 2 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/utils/kwwrap-g++.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | kwwrap -o `pwd`/kwinject.trace g++ "$@" 3 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/ggadget/tests/file_manager_test_data/zh_CN/global_file: -------------------------------------------------------------------------------- 1 | global_file under zh_CN 2 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Gadgets for Linux team 2 | -------------------------------------------------------------------------------- /resources/data/io.github.rime.engine/rime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/resources/data/io.github.rime.engine/rime.png -------------------------------------------------------------------------------- /resources/data/io.github.rime.engine/rime_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/resources/data/io.github.rime.engine/rime_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/THANKS: -------------------------------------------------------------------------------- 1 | Thanks 2 | ====== 3 | 4 | Jack Coulter: Debian packages. 5 | 6 | Pierre Slamich: French translation. 7 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/xdg/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/xdg/32x32.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/xdg/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/xdg/48x48.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/xdg/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/xdg/64x64.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/packaging/debian/libggadget-gtk-1.0-0.install: -------------------------------------------------------------------------------- 1 | debian/google-gadgets/usr/lib/libggadget-gtk-1.0.so.{0,0.0.0} usr/lib 2 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/packaging/debian/libggadget-qt-1.0-0.install: -------------------------------------------------------------------------------- 1 | debian/google-gadgets/usr/lib/libggadget-qt-1.0.so.{0,0.0.0} usr/lib 2 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/xdg/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/xdg/128x128.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/xdg/192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/xdg/192x192.png -------------------------------------------------------------------------------- /docs/A_unified_cross_platform_inputmethod_framework.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/docs/A_unified_cross_platform_inputmethod_framework.pdf -------------------------------------------------------------------------------- /resources/data/com.google.input_tools.skinui/default.gskin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/resources/data/com.google.input_tools.skinui/default.gskin -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/packaging/debian/google-gadgets-common.postrm: -------------------------------------------------------------------------------- 1 | #! /bin/sh -e 2 | update-mime-database /usr/share/mime 3 | 4 | 5 | #DEBHELPER# 6 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/pinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/pinned.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/rss_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/rss_sm.jpg -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/todo_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/todo_sm.jpg -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/docs/hosts-gadgets.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/docs/hosts-gadgets.dia -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/packaging/debian/google-gadgets-common.postinst: -------------------------------------------------------------------------------- 1 | #! /bin/sh -e 2 | update-mime-database /usr/share/mime 3 | 4 | 5 | #DEBHELPER# 6 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/packaging/debian/libggadget-1.0-0.install: -------------------------------------------------------------------------------- 1 | debian/google-gadgets/usr/lib/libggadget{,-dbus,-js,-xdg,-npapi}-1.0.so.{0,0.0.0} usr/lib 2 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/button_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/button_up.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/email_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/email_sm.jpg -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/igoogle_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/igoogle_sm.jpg -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/photos_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/photos_sm.jpg -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/radio_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/radio_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/radio_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/radio_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/radio_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/radio_up.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollup_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollup_d.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollup_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollup_o.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollup_u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollup_u.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/unpinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/unpinned.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/weather_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/weather_sm.jpg -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/igoogle/bkgnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/igoogle/bkgnd.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/rss/button_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/rss/button_up.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/rss/rss_bkgnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/rss/rss_bkgnd.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/ggadget/gtk/tests/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/ggadget/gtk/tests/base.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/packaging/debian/google-gadgets-gst.install: -------------------------------------------------------------------------------- 1 | debian/google-gadgets/usr/lib/google-gadgets/modules/gst*.so usr/lib/google-gadgets/modules 2 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/button_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/button_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/button_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/button_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/checkbox_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/checkbox_up.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollbar_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollbar_d.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollbar_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollbar_o.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollbar_u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollbar_u.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrolldown_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrolldown_d.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrolldown_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrolldown_o.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrolldown_u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrolldown_u.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollleft_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollleft_d.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollleft_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollleft_o.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollleft_u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollleft_u.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_back_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_back_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_back_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_back_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_menu_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_menu_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_menu_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_menu_over.png -------------------------------------------------------------------------------- /resources/data/com.google.input_tools.keyboard_input/english.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/resources/data/com.google.input_tools.keyboard_input/english.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/analog_clock/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/analog_clock/base.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/rss/button_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/rss/button_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/rss/button_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/rss/button_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/ggadget/gtk/tests/120day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/ggadget/gtk/tests/120day.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/ggadget/gtk/tests/opaque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/ggadget/gtk/tests/opaque.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/analog_clock_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/analog_clock_sm.jpg -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/checkbox_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/checkbox_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/checkbox_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/checkbox_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/combo_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/combo_arrow_up.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/focus_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/focus_overlay.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/google-gadgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/google-gadgets.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scratchpad_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scratchpad_sm.jpg -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollbar_d_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollbar_d_h.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollbar_o_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollbar_o_h.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollbar_u_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollbar_u_h.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollright_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollright_d.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollright_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollright_o.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollright_u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollright_u.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/sidebar_add_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/sidebar_add_up.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/sidebar_google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/sidebar_google.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/sidebar_menu_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/sidebar_menu_up.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/unpinned_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/unpinned_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_back_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_back_normal.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_close_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_close_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_close_normal.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_close_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_close_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_forward_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_forward_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_forward_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_forward_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_framed_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_framed_top.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_menu_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_menu_normal.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_popin_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_popin_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_popin_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_popin_normal.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_popin_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_popin_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_popout_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_popout_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_popout_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_popout_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/third_party/npapi/npruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/third_party/npapi/npruntime.h -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/analog_clock/center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/analog_clock/center.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/igoogle/igoogle_32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/igoogle/igoogle_32.gif -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/rect.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/rss/large_rss_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/rss/large_rss_icon.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/rss/small_rss_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/rss/small_rss_icon.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/ggadget/gtk/tests/kitty419.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/ggadget/gtk/tests/kitty419.jpg -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/ggadget/gtk/tests/testmask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/ggadget/gtk/tests/testmask.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/combo_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/combo_arrow_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/combo_arrow_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/combo_arrow_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/progressbar_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/progressbar_empty.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/progressbar_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/progressbar_full.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/radio_checked_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/radio_checked_up.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scroll_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scroll_background.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollbar_grippy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollbar_grippy.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/sidebar_add_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/sidebar_add_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/sidebar_add_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/sidebar_add_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/sidebar_menu_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/sidebar_menu_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/sidebar_menu_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/sidebar_menu_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_forward_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_forward_normal.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_framed_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_framed_bottom.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_framed_middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_framed_middle.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_popout_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_popout_normal.png -------------------------------------------------------------------------------- /resources/data/com.google.input_tools.keyboard_input/english_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/resources/data/com.google.input_tools.keyboard_input/english_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/analog_clock/hourhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/analog_clock/hourhand.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/analog_clock/minhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/analog_clock/minhand.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/gadget/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/gadget/icon.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/bkgnd-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/bkgnd-b.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/bkgnd-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/bkgnd-l.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/bkgnd-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/bkgnd-r.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/bkgnd-t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/bkgnd-t.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/left_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/left_1.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/left_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/left_2.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/left_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/left_3.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/pause_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/pause_1.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/pause_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/pause_2.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/pause_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/pause_3.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/play_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/play_1.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/play_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/play_2.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/play_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/play_3.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/right_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/right_1.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/right_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/right_2.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/right_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/right_3.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/checkbox_checked_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/checkbox_checked_up.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/google-gadgets-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/google-gadgets-big.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/radio_checked_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/radio_checked_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/radio_checked_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/radio_checked_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scroll_background_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scroll_background_h.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/scrollbar_grippy_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/scrollbar_grippy_h.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/sidebar_minimize_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/sidebar_minimize_up.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_button_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_button_background.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_framed_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_framed_background.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_framed_close_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_framed_close_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_framed_close_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_framed_close_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_main_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_main_background.png -------------------------------------------------------------------------------- /base/base.vcxproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/analog_clock/reflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/analog_clock/reflection.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/analog_clock/secondhand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/analog_clock/secondhand.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/icon_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/icon_large.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/icon_small.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/lbutton_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/lbutton_up.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/scrollup_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/scrollup_d.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/scrollup_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/scrollup_o.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/scrollup_u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/scrollup_u.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/checkbox_checked_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/checkbox_checked_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/checkbox_checked_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/checkbox_checked_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/digital_alarm_clock_sm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/digital_alarm_clock_sm.jpg -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/sidebar_minimize_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/sidebar_minimize_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/sidebar_minimize_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/sidebar_minimize_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_bottom_right_corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_bottom_right_corner.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_framed_close_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_framed_close_normal.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/analog_clock/plugin_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/analog_clock/plugin_large.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/analog_clock/plugin_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/analog_clock/plugin_small.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/pin.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/alarm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/alarm.wav -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/lbutton_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/lbutton_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/lbutton_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/lbutton_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/scrolldown_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/scrolldown_d.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/scrolldown_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/scrolldown_o.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/scrolldown_u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/scrolldown_u.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/photos/images/toolbar_bkgnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/photos/images/toolbar_bkgnd.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_main_docked_border_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_main_docked_border_h.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_main_docked_border_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_main_docked_border_v.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/folder.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_a.png -------------------------------------------------------------------------------- /base/mac/stl/hash_map: -------------------------------------------------------------------------------- 1 | // -*- mode: C++ -*- 2 | // Provides a redirection from #include to #include on 3 | // Mac OSX so that google3 codes can be built. 4 | #include 5 | -------------------------------------------------------------------------------- /base/mac/stl/hash_set: -------------------------------------------------------------------------------- 1 | // -*- mode: C++ -*- 2 | // Provides a redirection from #include to #include on 3 | // Mac OSX so that google3 codes can be built. 4 | #include 5 | -------------------------------------------------------------------------------- /plugins/rime/rime.def: -------------------------------------------------------------------------------- 1 | LIBRARY rime_plugin 2 | EXPORTS 3 | ListComponents 4 | CreateInstance 5 | DestroyInstance 6 | GetInfo 7 | Registered 8 | Deregistered 9 | HandleMessage 10 | FreeBuffer 11 | -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/blank_gadget/icon_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/blank_gadget/icon_large.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/blank_gadget/icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/blank_gadget/icon_small.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_div.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_edit.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_img.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/bell.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/map.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/gadget_browser/images/next_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/gadget_browser/images/next_down.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/gadget_browser/images/next_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/gadget_browser/images/next_hover.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_details_button_bkgnd_click.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_details_button_bkgnd_click.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_details_button_bkgnd_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_details_button_bkgnd_normal.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_details_button_bkgnd_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_details_button_bkgnd_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_details_button_negfb_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_details_button_negfb_normal.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_details_button_negfb_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_details_button_negfb_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_main_background_minimized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_main_background_minimized.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/resources/vd_main_background_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/resources/vd_main_background_transparent.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/folder_over.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/folder_over.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tab_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tab_active.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_button.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_label.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/designer/gadget/images/tool_radio.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/browse.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_0.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_1.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_2.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_3.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_4.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_5.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_6.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_7.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_8.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/digital_alarm_clock/images/digit_9.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/gadget_browser/images/bg_top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/gadget_browser/images/bg_top_left.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/gadget_browser/images/bg_top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/gadget_browser/images/bg_top_right.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/gadget_browser/images/next_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lotem/rime-gits/HEAD/third_party/google_gadgets_for_linux/gadgets/gadget_browser/images/next_default.png -------------------------------------------------------------------------------- /third_party/google_gadgets_for_linux/gadgets/designer/blank_gadget/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |