├── hooks ├── webkitpy │ ├── thirdparty │ │ ├── autoinstalled │ │ │ ├── __init__.py │ │ │ ├── .pep8.py.url │ │ │ └── README │ │ └── simplejson │ │ │ ├── README.txt │ │ │ ├── LICENSE.txt │ │ │ └── tool.py │ ├── common │ │ ├── __init__.py │ │ ├── config │ │ │ └── __init__.py │ │ ├── net │ │ │ ├── __init__.py │ │ │ ├── irc │ │ │ │ └── __init__.py │ │ │ ├── buildbot │ │ │ │ └── __init__.py │ │ │ └── bugzilla │ │ │ │ └── __init__.py │ │ ├── system │ │ │ └── __init__.py │ │ ├── thread │ │ │ └── __init__.py │ │ ├── watchlist │ │ │ └── __init__.py │ │ └── checkout │ │ │ ├── __init__.py │ │ │ └── scm │ │ │ └── __init__.py │ ├── python24 │ │ └── __init__.py │ ├── style │ │ ├── __init__.py │ │ └── checkers │ │ │ ├── __init__.py │ │ │ └── python_unittest_input.py │ ├── test │ │ └── __init__.py │ ├── tool │ │ ├── __init__.py │ │ ├── bot │ │ │ └── __init__.py │ │ ├── servers │ │ │ └── __init__.py │ │ └── commands │ │ │ └── __init__.py │ ├── layout_tests │ │ ├── __init__.py │ │ ├── views │ │ │ └── __init__.py │ │ ├── models │ │ │ └── __init__.py │ │ ├── reftests │ │ │ └── __init__.py │ │ ├── servers │ │ │ └── __init__.py │ │ ├── controllers │ │ │ └── __init__.py │ │ └── layout_package │ │ │ └── __init__.py │ ├── to_be_moved │ │ └── __init__.py │ └── __init__.py └── pre-commit ├── Src ├── lunaui │ ├── launcher │ │ ├── .wikidoc │ │ │ ├── DartFish.wiki │ │ │ ├── DimensionsUi.wiki │ │ │ └── .internal │ │ │ │ ├── ReadMe.wiki │ │ │ │ └── PageLayoutDesign.wiki │ │ ├── elements │ │ │ ├── page │ │ │ │ └── icon_layouts │ │ │ │ │ ├── layoutitem.cpp │ │ │ │ │ └── layoutitem.h │ │ │ ├── util │ │ │ │ ├── stringtranslator.h │ │ │ │ ├── dotgrid.h │ │ │ │ ├── stringtranslator.cpp │ │ │ │ └── gogglesblurshadereffect.h │ │ │ ├── static │ │ │ │ ├── horizontaldivider.h │ │ │ │ └── horizontaldivider.cpp │ │ │ └── edit │ │ │ │ └── texteditbox.h │ │ ├── systeminterface │ │ │ └── util │ │ │ │ ├── filenames.h │ │ │ │ ├── filenames.cpp │ │ │ │ ├── filterlist.h │ │ │ │ └── blacklist.h │ │ ├── iconcmdevents.cpp │ │ ├── gfx │ │ │ ├── effects │ │ │ │ ├── gfxeffectbase.cpp │ │ │ │ ├── gfxeffectbase.h │ │ │ │ ├── gfxsepiaeffect.h │ │ │ │ └── gfxeffectglslbase.h │ │ │ ├── processors │ │ │ │ └── expblur.h │ │ │ ├── renderopts.h │ │ │ └── debug │ │ │ │ └── pixpagerdebugger.h │ │ ├── iconcmdevents.h │ │ ├── util │ │ │ ├── conditionalsignaltransition.h │ │ │ └── timedelaytransition.h │ │ └── debugglobal.h │ ├── notifications │ │ └── BannerMessageEventFactory.cpp │ ├── status-bar │ │ ├── MenuWindow.cpp │ │ └── MenuWindow.h │ └── cards │ │ └── QtHostWindow.h ├── base │ ├── CpuAffinity.h │ ├── LsmUtils.h │ ├── visual │ │ ├── RoundedCorners.h │ │ └── ReticleItem.h │ ├── QmlInputItemQt5.h │ ├── QmlInputItem.h │ ├── MetaKeyManager.h │ ├── SharedGlobalProperties.h │ ├── EventReporter.h │ ├── gesture │ │ ├── WebosTapGestureRecognizer.h │ │ ├── WebosTapAndHoldGestureRecognizer.h │ │ ├── FlickGestureRecognizer.h │ │ ├── ScreenEdgeFlickGestureRecognizer.h │ │ └── SingleClickGestureRecognizer.h │ ├── application │ │ └── ApplicationInstallerErrors.h │ └── WindowMetaData.h ├── ime │ ├── InputClient.cpp │ ├── IMEManager.h │ └── KeyLocationRecorder.h ├── core │ ├── GraphicsDefs.h │ └── VariantAnimation.h └── sound │ └── SoundPlayerDummy.cpp ├── gdbinit-remote ├── sounds ├── boot.mp3 ├── alert.wav ├── error.mp3 ├── panel.mp3 ├── phone.wav ├── charging.mp3 ├── ringtone.mp3 ├── shutdown.mp3 ├── battery_full.mp3 ├── battery_low.mp3 ├── notification.wav └── tap_to_share.mp3 ├── images ├── glow-bg.png ├── hp-logo.png ├── scrim.png ├── spinner.png ├── bell_off.png ├── fsck-usb.png ├── meta-move.png ├── normal-bg.png ├── popup-bg.png ├── back-button.png ├── loading-bg.png ├── loading-glow.png ├── menu-divider.png ├── normal-usb.png ├── pin │ ├── pin-grid.png │ ├── button-black.png │ ├── button-green.png │ ├── icon-delete.png │ ├── button-black-press.png │ ├── button-green-press.png │ ├── pin-key-highlight.png │ └── password-lock-field.png ├── search-pill.png ├── warning-icon.png ├── empty-launcher.png ├── hp-logo-bright.png ├── loading-strip.png ├── menu-arrow-up.png ├── reorder-ripple.png ├── statusBar │ ├── hac.png │ ├── tty.png │ ├── rssi-0.png │ ├── rssi-1.png │ ├── rssi-2.png │ ├── rssi-3.png │ ├── rssi-4.png │ ├── rssi-5.png │ ├── wifi-0.png │ ├── wifi-1.png │ ├── wifi-2.png │ ├── wifi-3.png │ ├── battery-0.png │ ├── battery-1.png │ ├── battery-2.png │ ├── battery-3.png │ ├── battery-4.png │ ├── battery-5.png │ ├── battery-6.png │ ├── battery-7.png │ ├── battery-8.png │ ├── battery-9.png │ ├── icon-mute.png │ ├── rssi-1x-0.png │ ├── rssi-1x-1.png │ ├── rssi-1x-2.png │ ├── rssi-1x-3.png │ ├── rssi-1x-4.png │ ├── rssi-1x-5.png │ ├── rssi-3G-0.png │ ├── rssi-3G-1.png │ ├── rssi-3G-2.png │ ├── rssi-3G-3.png │ ├── rssi-3G-4.png │ ├── rssi-3G-5.png │ ├── rssi-ev-0.png │ ├── rssi-ev-1.png │ ├── rssi-ev-2.png │ ├── rssi-ev-3.png │ ├── rssi-ev-4.png │ ├── rssi-ev-5.png │ ├── battery-10.png │ ├── battery-11.png │ ├── bluetooth-on.png │ ├── call-forward.png │ ├── menu-arrow.png │ ├── rssi-error.png │ ├── slider-track.png │ ├── battery-error.png │ ├── icon-airplane.png │ ├── icon-mute-off.png │ ├── slider-handle.png │ ├── battery-charged.png │ ├── bluetooth-error.png │ ├── brightness-less.png │ ├── brightness-more.png │ ├── icon-airplane-off.png │ ├── network-1x-active.png │ ├── network-3g-active.png │ ├── network-roaming.png │ ├── rssi-flightmode.png │ ├── system-menu-lock.png │ ├── vpn-status-icon.png │ ├── wifi-connecting.png │ ├── appname-background.png │ ├── battery-charging-0.png │ ├── battery-charging-1.png │ ├── battery-charging-10.png │ ├── battery-charging-11.png │ ├── battery-charging-2.png │ ├── battery-charging-3.png │ ├── battery-charging-4.png │ ├── battery-charging-5.png │ ├── battery-charging-6.png │ ├── battery-charging-7.png │ ├── battery-charging-8.png │ ├── battery-charging-9.png │ ├── bluetooth-connected.png │ ├── icon-rotation-lock.png │ ├── network-1x-dormant.png │ ├── network-3g-dormant.png │ ├── network-edge-active.png │ ├── network-evdo-active.png │ ├── network-gprs-active.png │ ├── network-umts-active.png │ ├── bluetooth-connecting.png │ ├── icon-rotation-lock-off.png │ ├── network-1x-connected.png │ ├── network-3g-connected.png │ ├── network-edge-connected.png │ ├── network-evdo-connected.png │ ├── network-evdo-dormant.png │ ├── network-gprs-connected.png │ ├── network-hsdpa-active.png │ ├── network-umts-connected.png │ ├── slider-track-progress.png │ ├── status-bar-background.png │ ├── status-bar-separator.png │ ├── network-hsdpa-connected.png │ ├── network-roaming-triangle.png │ ├── network-hsdpa-plus-connected.png │ ├── status-bar-menu-dropdown-tab.png │ ├── system-menu-popup-item-checkmark.png │ └── status-bar-menu-dropdown-tab-pressed.png ├── warning-system.png ├── activity-progress.png ├── activity-spinner.png ├── activity-static.png ├── card-shadow-tile.png ├── default-app-icon.png ├── fade-arrow-down.png ├── launcher3 │ ├── tab-bg.png │ ├── edit-icon-bg.png │ ├── launcher-bg.png │ ├── list-divider.png │ ├── tab-divider.png │ ├── tab-shadow.png │ ├── launcher-bg64.png │ ├── quicklaunch-bg.png │ ├── superscroll-bg.png │ ├── tab-highlight.png │ ├── dark-arrow-left.png │ ├── dark-arrow-right.png │ ├── edit-button-done.png │ ├── launcher-icon-64.png │ ├── launcher-icon-72.png │ ├── tab-selected-bg.png │ ├── edit-button-delete.png │ ├── edit-button-remove.png │ ├── edit-icon-bg-light.png │ ├── edit-icon-bg-small.png │ ├── launcher-empty-page.png │ ├── quicklaunch-shadow.png │ ├── tab-shadow-original.png │ ├── quicklaunch-bg-solid.png │ ├── search-button-launcher.png │ ├── edit-icon-bg-small-light.png │ ├── launcher-scrollfade-top.png │ ├── launcher-touch-feedback.png │ ├── search-field-bg-launcher.png │ ├── superscroll-bg-highlight.png │ ├── launcher-scrollfade-bottom.png │ ├── quicklaunch-button-launcher.png │ ├── quicklaunch-button-search.png │ └── quicklaunch-shadow-original.png ├── menu-arrow-down.png ├── menu-dropdown-bg.png ├── overlay-banner-bg.png ├── dashboard-mask-top.png ├── loading-card-scrim.png ├── penindicator-ripple.png ├── screen-lock-clock-0.png ├── screen-lock-clock-1.png ├── screen-lock-clock-2.png ├── screen-lock-clock-3.png ├── screen-lock-clock-4.png ├── screen-lock-clock-5.png ├── screen-lock-clock-6.png ├── screen-lock-clock-7.png ├── screen-lock-clock-8.png ├── screen-lock-clock-9.png ├── search-bottom-fade.png ├── search-pill-no-icon.png ├── transient-alart-bg.png ├── wm-corner-top-left.png ├── wm-corner-top-right.png ├── dashboard-mask-bottom.png ├── dashboard-scroll-fade.png ├── dock-item-shadow-tile.png ├── dockmode │ ├── time │ │ ├── clock_bg.png │ │ ├── analog │ │ │ ├── base.png │ │ │ ├── hour.png │ │ │ ├── minute.png │ │ │ ├── second.png │ │ │ ├── glass │ │ │ │ ├── base.png │ │ │ │ ├── hour.png │ │ │ │ └── minute.png │ │ │ └── matte │ │ │ │ ├── base.png │ │ │ │ ├── hour.png │ │ │ │ ├── minute.png │ │ │ │ └── second.png │ │ ├── indicator │ │ │ ├── off.png │ │ │ └── on.png │ │ └── digital │ │ │ ├── landscape │ │ │ ├── dots.png │ │ │ ├── flippers-date.png │ │ │ ├── flippers-time.png │ │ │ ├── flippers-date-mask.png │ │ │ └── flippers-time-mask.png │ │ │ └── portrait │ │ │ ├── dots.png │ │ │ ├── divider.png │ │ │ ├── Divider-Date.png │ │ │ ├── flippers-date.png │ │ │ ├── flippers-time.png │ │ │ ├── flippers-date-mask.png │ │ │ └── flippers-time-mask.png │ ├── dropdown-bg-row.png │ ├── time-icon-48x48.png │ ├── dock-loading-glow.png │ └── dropdown-bg-row-highlight.png ├── fullscreen-play-button.png ├── menu-dropdown-swipe-bg.png ├── quick_launch_highlight.png ├── screen-lock-padlock-on.png ├── search-icon-disabled.png ├── wm-corner-bottom-left.png ├── wm-corner-bottom-right.png ├── activity-indicator-32x32.png ├── keyboard-phone │ ├── key-black.png │ ├── key-gray.png │ ├── key-white.png │ ├── popup-bg.png │ ├── popup-key.png │ ├── drag-handle.png │ ├── icon-delete.png │ ├── icon-shift.png │ ├── key-shift-on.png │ ├── keyboard-bg.png │ ├── popup-bg-2.png │ ├── drag-highlight.png │ ├── icon-shift-on.png │ ├── key-shift-lock.png │ ├── icon-shift-lock.png │ └── icon-hide-keyboard.png ├── keyboard-tablet │ ├── key-gray.png │ ├── popup-bg.png │ ├── drag-handle.png │ ├── icon-delete.png │ ├── icon-shift.png │ ├── key-black.png │ ├── key-white.png │ ├── keyboard-bg.png │ ├── popup-bg-2.png │ ├── popup-key.png │ ├── icon-shift-on.png │ ├── key-shift-on.png │ ├── drag-highlight.png │ ├── icon-shift-lock.png │ ├── key-gray-short.png │ ├── key-shift-lock.png │ └── icon-hide-keyboard.png ├── popup-scrollfade-bottom.png ├── screen-lock-clock-colon.png ├── screen-lock-padlock-off.png ├── screen-lock-target-scrim.png ├── screen-lock-clock-decimal.png ├── menu-dropdown-scrollfade-top.png ├── menu-dropdown-swipe-highlight.png ├── menu-selection-gradient-last.png ├── notification-music-indicator.png ├── notification-volume-indicator.png ├── screen-lock-incoming-call-off.png ├── screen-lock-incoming-call-on.png ├── menu-dropdown-scrollfade-bottom.png ├── menu-selection-gradient-default.png ├── notification-ringtone-indicator.png ├── screen-lock-wallpaper-mask-top.png └── screen-lock-wallpaper-mask-bottom.png ├── conf ├── default-exhibition-apps.json ├── localization.schema ├── defaultPreferences-opal.txt ├── defaultPreferences-topaz.txt ├── launcher3 │ ├── launcher_operational_settings-qemux86.conf │ ├── app-keywords-to-designator-map.txt │ ├── layoutSettings.conf │ ├── app_blacklist.conf │ ├── launcher_icon_layoutsettings.conf │ ├── launcher_icon_geom_settings.conf │ └── launcher_icon_layoutsettings-tuna.conf ├── defaultPreferences-pixie.txt ├── defaultPreferences-broadway.txt ├── launcher-conf.orderly ├── launcher-conf.schema ├── ipkg.conf ├── luna-castle.conf ├── layoutSettings.conf ├── luna-broadway.conf ├── luna-mantaray.conf ├── persistentWindows.conf ├── luna-windsornot.conf ├── luna-pixie.conf ├── lunaAnimations-pixie.conf ├── luna-qemuarm.conf ├── luna-qemux86.conf └── luna-desktop.conf ├── images-unused ├── corenavi │ ├── glow.png │ ├── light-bar-bright-left.png │ ├── light-bar-dark-center.png │ ├── light-bar-dark-left.png │ ├── light-bar-dark-right.png │ ├── light-bar-bright-center.png │ └── light-bar-bright-right.png ├── emucard-background.png ├── emucard-device-frame.png └── emucard-kb-up_icon.png ├── platform ├── opal │ └── images │ │ ├── fsck-usb.png │ │ ├── glow-bg.png │ │ ├── loading-bg.png │ │ ├── normal-bg.png │ │ ├── normal-usb.png │ │ └── loading-glow.png └── topaz │ └── images │ ├── glow-bg.png │ ├── fsck-usb.png │ ├── normal-bg.png │ ├── loading-bg.png │ ├── loading-glow.png │ └── normal-usb.png ├── low-memory ├── dashboard-container.png ├── dashboard-icon-small.png ├── low-memory-icon-dash.png ├── notif_icon-carddismiss.png ├── palm-notification-button.png ├── dashboard-container-active.png └── appinfo.json ├── service ├── com.palm.appinstaller.pubsub ├── com.palm.luna.service.pub ├── com.palm.luna.service.prv └── com.palm.luna.json.pub ├── tests └── QWebPage │ ├── device.pri │ ├── desktop.pri │ ├── qwebpage.qrc │ ├── html │ ├── child.html │ └── index.html │ ├── qwebpage.pro │ └── main.cpp ├── mojodb ├── com.palm.sysMgrDataBackup ├── com.palm.securitypolicy.device ├── com.palm.securitypolicy └── com.palm.securitypolicy.permissions ├── sysapps └── com.palm.sysapp.voicedial │ ├── icon-64x64.png │ └── appinfo.json ├── sysapps-test └── com.palm.sysapp.launchermode0 │ ├── .00.pcm │ ├── .01.pcm │ ├── icon-64x64.png │ ├── appinfo.json │ └── .system.sh ├── LunaReady.upstart ├── desktop-support ├── com.palm.luna.service.pub ├── appinfo.json ├── ls-public.conf ├── ls-private.conf ├── com.palm.luna.service.prv ├── com.palm.luna.json.pub └── luna-desktop.conf ├── scripts ├── lunaenv_remote.bashrc ├── lunaenv.bashrc └── README ├── uiComponents ├── SystemMenu │ ├── MenuDivider.qml │ ├── Spinner.qml │ ├── SystemMenu.qmlproject │ ├── DateElement.qml │ └── BatteryElement.qml ├── UnlockPanel │ └── UnlockPanel.qmlproject ├── ActionButton │ └── ActionButton.qmlproject ├── DashboardMenu │ ├── DashboardMenu.qmlproject │ └── DashboardMenu.qml ├── MenuContainer │ └── MenuContainer.qmlproject ├── MessageDialog │ └── MessageDialog.qmlproject ├── DockModeAppMenu │ ├── DockModeAppMenu.qmlproject │ └── DockModeAppMenu.qml ├── AppInfoDialog │ └── AppInfoDialog.qmlproject └── DockModeTime │ └── Clocks.qml └── .gitignore /hooks/webkitpy/thirdparty/autoinstalled/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/.wikidoc/DartFish.wiki: -------------------------------------------------------------------------------- 1 | Back to DimensionsUi -------------------------------------------------------------------------------- /gdbinit-remote: -------------------------------------------------------------------------------- 1 | set solib-absolute-prefix /path/to/the/rootfs/for/your/device/build 2 | -------------------------------------------------------------------------------- /sounds/boot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sounds/boot.mp3 -------------------------------------------------------------------------------- /images/glow-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/glow-bg.png -------------------------------------------------------------------------------- /images/hp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/hp-logo.png -------------------------------------------------------------------------------- /images/scrim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/scrim.png -------------------------------------------------------------------------------- /images/spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/spinner.png -------------------------------------------------------------------------------- /sounds/alert.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sounds/alert.wav -------------------------------------------------------------------------------- /sounds/error.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sounds/error.mp3 -------------------------------------------------------------------------------- /sounds/panel.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sounds/panel.mp3 -------------------------------------------------------------------------------- /sounds/phone.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sounds/phone.wav -------------------------------------------------------------------------------- /images/bell_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/bell_off.png -------------------------------------------------------------------------------- /images/fsck-usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/fsck-usb.png -------------------------------------------------------------------------------- /images/meta-move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/meta-move.png -------------------------------------------------------------------------------- /images/normal-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/normal-bg.png -------------------------------------------------------------------------------- /images/popup-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/popup-bg.png -------------------------------------------------------------------------------- /sounds/charging.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sounds/charging.mp3 -------------------------------------------------------------------------------- /sounds/ringtone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sounds/ringtone.mp3 -------------------------------------------------------------------------------- /sounds/shutdown.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sounds/shutdown.mp3 -------------------------------------------------------------------------------- /hooks/webkitpy/common/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/python24/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/style/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/test/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/tool/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/tool/bot/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /images/back-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/back-button.png -------------------------------------------------------------------------------- /images/loading-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/loading-bg.png -------------------------------------------------------------------------------- /images/loading-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/loading-glow.png -------------------------------------------------------------------------------- /images/menu-divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/menu-divider.png -------------------------------------------------------------------------------- /images/normal-usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/normal-usb.png -------------------------------------------------------------------------------- /images/pin/pin-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/pin/pin-grid.png -------------------------------------------------------------------------------- /images/search-pill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/search-pill.png -------------------------------------------------------------------------------- /images/warning-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/warning-icon.png -------------------------------------------------------------------------------- /sounds/battery_full.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sounds/battery_full.mp3 -------------------------------------------------------------------------------- /sounds/battery_low.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sounds/battery_low.mp3 -------------------------------------------------------------------------------- /sounds/notification.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sounds/notification.wav -------------------------------------------------------------------------------- /sounds/tap_to_share.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sounds/tap_to_share.mp3 -------------------------------------------------------------------------------- /conf/default-exhibition-apps.json: -------------------------------------------------------------------------------- 1 | { "exhibitionApps": [ "com.palm.app.photos" ], "knownPucks": [ ] } 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/common/config/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/common/net/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/common/system/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/common/thread/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/layout_tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/tool/servers/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /images/empty-launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/empty-launcher.png -------------------------------------------------------------------------------- /images/hp-logo-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/hp-logo-bright.png -------------------------------------------------------------------------------- /images/loading-strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/loading-strip.png -------------------------------------------------------------------------------- /images/menu-arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/menu-arrow-up.png -------------------------------------------------------------------------------- /images/reorder-ripple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/reorder-ripple.png -------------------------------------------------------------------------------- /images/statusBar/hac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/hac.png -------------------------------------------------------------------------------- /images/statusBar/tty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/tty.png -------------------------------------------------------------------------------- /images/warning-system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/warning-system.png -------------------------------------------------------------------------------- /conf/localization.schema: -------------------------------------------------------------------------------- 1 | { 2 | "type" : "object", 3 | "additionalProperties" : { "type" : "string" } 4 | } 5 | -------------------------------------------------------------------------------- /hooks/webkitpy/common/net/irc/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/common/watchlist/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/layout_tests/views/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/style/checkers/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /images/activity-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/activity-progress.png -------------------------------------------------------------------------------- /images/activity-spinner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/activity-spinner.png -------------------------------------------------------------------------------- /images/activity-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/activity-static.png -------------------------------------------------------------------------------- /images/card-shadow-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/card-shadow-tile.png -------------------------------------------------------------------------------- /images/default-app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/default-app-icon.png -------------------------------------------------------------------------------- /images/fade-arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/fade-arrow-down.png -------------------------------------------------------------------------------- /images/launcher3/tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/tab-bg.png -------------------------------------------------------------------------------- /images/menu-arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/menu-arrow-down.png -------------------------------------------------------------------------------- /images/menu-dropdown-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/menu-dropdown-bg.png -------------------------------------------------------------------------------- /images/overlay-banner-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/overlay-banner-bg.png -------------------------------------------------------------------------------- /images/pin/button-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/pin/button-black.png -------------------------------------------------------------------------------- /images/pin/button-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/pin/button-green.png -------------------------------------------------------------------------------- /images/pin/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/pin/icon-delete.png -------------------------------------------------------------------------------- /images/statusBar/rssi-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-0.png -------------------------------------------------------------------------------- /images/statusBar/rssi-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-1.png -------------------------------------------------------------------------------- /images/statusBar/rssi-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-2.png -------------------------------------------------------------------------------- /images/statusBar/rssi-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-3.png -------------------------------------------------------------------------------- /images/statusBar/rssi-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-4.png -------------------------------------------------------------------------------- /images/statusBar/rssi-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-5.png -------------------------------------------------------------------------------- /images/statusBar/wifi-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/wifi-0.png -------------------------------------------------------------------------------- /images/statusBar/wifi-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/wifi-1.png -------------------------------------------------------------------------------- /images/statusBar/wifi-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/wifi-2.png -------------------------------------------------------------------------------- /images/statusBar/wifi-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/wifi-3.png -------------------------------------------------------------------------------- /hooks/webkitpy/layout_tests/models/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/layout_tests/reftests/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/layout_tests/servers/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /images/dashboard-mask-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dashboard-mask-top.png -------------------------------------------------------------------------------- /images/loading-card-scrim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/loading-card-scrim.png -------------------------------------------------------------------------------- /images/penindicator-ripple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/penindicator-ripple.png -------------------------------------------------------------------------------- /images/screen-lock-clock-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-clock-0.png -------------------------------------------------------------------------------- /images/screen-lock-clock-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-clock-1.png -------------------------------------------------------------------------------- /images/screen-lock-clock-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-clock-2.png -------------------------------------------------------------------------------- /images/screen-lock-clock-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-clock-3.png -------------------------------------------------------------------------------- /images/screen-lock-clock-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-clock-4.png -------------------------------------------------------------------------------- /images/screen-lock-clock-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-clock-5.png -------------------------------------------------------------------------------- /images/screen-lock-clock-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-clock-6.png -------------------------------------------------------------------------------- /images/screen-lock-clock-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-clock-7.png -------------------------------------------------------------------------------- /images/screen-lock-clock-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-clock-8.png -------------------------------------------------------------------------------- /images/screen-lock-clock-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-clock-9.png -------------------------------------------------------------------------------- /images/search-bottom-fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/search-bottom-fade.png -------------------------------------------------------------------------------- /images/search-pill-no-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/search-pill-no-icon.png -------------------------------------------------------------------------------- /images/statusBar/battery-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-0.png -------------------------------------------------------------------------------- /images/statusBar/battery-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-1.png -------------------------------------------------------------------------------- /images/statusBar/battery-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-2.png -------------------------------------------------------------------------------- /images/statusBar/battery-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-3.png -------------------------------------------------------------------------------- /images/statusBar/battery-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-4.png -------------------------------------------------------------------------------- /images/statusBar/battery-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-5.png -------------------------------------------------------------------------------- /images/statusBar/battery-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-6.png -------------------------------------------------------------------------------- /images/statusBar/battery-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-7.png -------------------------------------------------------------------------------- /images/statusBar/battery-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-8.png -------------------------------------------------------------------------------- /images/statusBar/battery-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-9.png -------------------------------------------------------------------------------- /images/statusBar/icon-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/icon-mute.png -------------------------------------------------------------------------------- /images/statusBar/rssi-1x-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-1x-0.png -------------------------------------------------------------------------------- /images/statusBar/rssi-1x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-1x-1.png -------------------------------------------------------------------------------- /images/statusBar/rssi-1x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-1x-2.png -------------------------------------------------------------------------------- /images/statusBar/rssi-1x-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-1x-3.png -------------------------------------------------------------------------------- /images/statusBar/rssi-1x-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-1x-4.png -------------------------------------------------------------------------------- /images/statusBar/rssi-1x-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-1x-5.png -------------------------------------------------------------------------------- /images/statusBar/rssi-3G-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-3G-0.png -------------------------------------------------------------------------------- /images/statusBar/rssi-3G-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-3G-1.png -------------------------------------------------------------------------------- /images/statusBar/rssi-3G-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-3G-2.png -------------------------------------------------------------------------------- /images/statusBar/rssi-3G-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-3G-3.png -------------------------------------------------------------------------------- /images/statusBar/rssi-3G-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-3G-4.png -------------------------------------------------------------------------------- /images/statusBar/rssi-3G-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-3G-5.png -------------------------------------------------------------------------------- /images/statusBar/rssi-ev-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-ev-0.png -------------------------------------------------------------------------------- /images/statusBar/rssi-ev-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-ev-1.png -------------------------------------------------------------------------------- /images/statusBar/rssi-ev-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-ev-2.png -------------------------------------------------------------------------------- /images/statusBar/rssi-ev-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-ev-3.png -------------------------------------------------------------------------------- /images/statusBar/rssi-ev-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-ev-4.png -------------------------------------------------------------------------------- /images/statusBar/rssi-ev-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-ev-5.png -------------------------------------------------------------------------------- /images/transient-alart-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/transient-alart-bg.png -------------------------------------------------------------------------------- /images/wm-corner-top-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/wm-corner-top-left.png -------------------------------------------------------------------------------- /images/wm-corner-top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/wm-corner-top-right.png -------------------------------------------------------------------------------- /hooks/webkitpy/layout_tests/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /hooks/webkitpy/layout_tests/layout_package/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | -------------------------------------------------------------------------------- /images-unused/corenavi/glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images-unused/corenavi/glow.png -------------------------------------------------------------------------------- /images/dashboard-mask-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dashboard-mask-bottom.png -------------------------------------------------------------------------------- /images/dashboard-scroll-fade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dashboard-scroll-fade.png -------------------------------------------------------------------------------- /images/dock-item-shadow-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dock-item-shadow-tile.png -------------------------------------------------------------------------------- /images/dockmode/time/clock_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/clock_bg.png -------------------------------------------------------------------------------- /images/fullscreen-play-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/fullscreen-play-button.png -------------------------------------------------------------------------------- /images/launcher3/edit-icon-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/edit-icon-bg.png -------------------------------------------------------------------------------- /images/launcher3/launcher-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/launcher-bg.png -------------------------------------------------------------------------------- /images/launcher3/list-divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/list-divider.png -------------------------------------------------------------------------------- /images/launcher3/tab-divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/tab-divider.png -------------------------------------------------------------------------------- /images/launcher3/tab-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/tab-shadow.png -------------------------------------------------------------------------------- /images/menu-dropdown-swipe-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/menu-dropdown-swipe-bg.png -------------------------------------------------------------------------------- /images/pin/button-black-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/pin/button-black-press.png -------------------------------------------------------------------------------- /images/pin/button-green-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/pin/button-green-press.png -------------------------------------------------------------------------------- /images/pin/pin-key-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/pin/pin-key-highlight.png -------------------------------------------------------------------------------- /images/quick_launch_highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/quick_launch_highlight.png -------------------------------------------------------------------------------- /images/screen-lock-padlock-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-padlock-on.png -------------------------------------------------------------------------------- /images/search-icon-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/search-icon-disabled.png -------------------------------------------------------------------------------- /images/statusBar/battery-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-10.png -------------------------------------------------------------------------------- /images/statusBar/battery-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-11.png -------------------------------------------------------------------------------- /images/statusBar/bluetooth-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/bluetooth-on.png -------------------------------------------------------------------------------- /images/statusBar/call-forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/call-forward.png -------------------------------------------------------------------------------- /images/statusBar/menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/menu-arrow.png -------------------------------------------------------------------------------- /images/statusBar/rssi-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-error.png -------------------------------------------------------------------------------- /images/statusBar/slider-track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/slider-track.png -------------------------------------------------------------------------------- /images/wm-corner-bottom-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/wm-corner-bottom-left.png -------------------------------------------------------------------------------- /images/wm-corner-bottom-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/wm-corner-bottom-right.png -------------------------------------------------------------------------------- /platform/opal/images/fsck-usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/platform/opal/images/fsck-usb.png -------------------------------------------------------------------------------- /platform/opal/images/glow-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/platform/opal/images/glow-bg.png -------------------------------------------------------------------------------- /platform/topaz/images/glow-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/platform/topaz/images/glow-bg.png -------------------------------------------------------------------------------- /images/activity-indicator-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/activity-indicator-32x32.png -------------------------------------------------------------------------------- /images/dockmode/dropdown-bg-row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/dropdown-bg-row.png -------------------------------------------------------------------------------- /images/dockmode/time-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time-icon-48x48.png -------------------------------------------------------------------------------- /images/keyboard-phone/key-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/key-black.png -------------------------------------------------------------------------------- /images/keyboard-phone/key-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/key-gray.png -------------------------------------------------------------------------------- /images/keyboard-phone/key-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/key-white.png -------------------------------------------------------------------------------- /images/keyboard-phone/popup-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/popup-bg.png -------------------------------------------------------------------------------- /images/keyboard-phone/popup-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/popup-key.png -------------------------------------------------------------------------------- /images/keyboard-tablet/key-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/key-gray.png -------------------------------------------------------------------------------- /images/keyboard-tablet/popup-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/popup-bg.png -------------------------------------------------------------------------------- /images/launcher3/launcher-bg64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/launcher-bg64.png -------------------------------------------------------------------------------- /images/launcher3/quicklaunch-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/quicklaunch-bg.png -------------------------------------------------------------------------------- /images/launcher3/superscroll-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/superscroll-bg.png -------------------------------------------------------------------------------- /images/launcher3/tab-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/tab-highlight.png -------------------------------------------------------------------------------- /images/pin/password-lock-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/pin/password-lock-field.png -------------------------------------------------------------------------------- /images/popup-scrollfade-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/popup-scrollfade-bottom.png -------------------------------------------------------------------------------- /images/screen-lock-clock-colon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-clock-colon.png -------------------------------------------------------------------------------- /images/screen-lock-padlock-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-padlock-off.png -------------------------------------------------------------------------------- /images/screen-lock-target-scrim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-target-scrim.png -------------------------------------------------------------------------------- /images/statusBar/battery-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-error.png -------------------------------------------------------------------------------- /images/statusBar/icon-airplane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/icon-airplane.png -------------------------------------------------------------------------------- /images/statusBar/icon-mute-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/icon-mute-off.png -------------------------------------------------------------------------------- /images/statusBar/slider-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/slider-handle.png -------------------------------------------------------------------------------- /low-memory/dashboard-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/low-memory/dashboard-container.png -------------------------------------------------------------------------------- /low-memory/dashboard-icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/low-memory/dashboard-icon-small.png -------------------------------------------------------------------------------- /low-memory/low-memory-icon-dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/low-memory/low-memory-icon-dash.png -------------------------------------------------------------------------------- /platform/opal/images/loading-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/platform/opal/images/loading-bg.png -------------------------------------------------------------------------------- /platform/opal/images/normal-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/platform/opal/images/normal-bg.png -------------------------------------------------------------------------------- /platform/opal/images/normal-usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/platform/opal/images/normal-usb.png -------------------------------------------------------------------------------- /platform/topaz/images/fsck-usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/platform/topaz/images/fsck-usb.png -------------------------------------------------------------------------------- /platform/topaz/images/normal-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/platform/topaz/images/normal-bg.png -------------------------------------------------------------------------------- /images-unused/emucard-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images-unused/emucard-background.png -------------------------------------------------------------------------------- /images-unused/emucard-device-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images-unused/emucard-device-frame.png -------------------------------------------------------------------------------- /images-unused/emucard-kb-up_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images-unused/emucard-kb-up_icon.png -------------------------------------------------------------------------------- /images/dockmode/dock-loading-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/dock-loading-glow.png -------------------------------------------------------------------------------- /images/dockmode/time/analog/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/analog/base.png -------------------------------------------------------------------------------- /images/dockmode/time/analog/hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/analog/hour.png -------------------------------------------------------------------------------- /images/dockmode/time/analog/minute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/analog/minute.png -------------------------------------------------------------------------------- /images/dockmode/time/analog/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/analog/second.png -------------------------------------------------------------------------------- /images/dockmode/time/indicator/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/indicator/off.png -------------------------------------------------------------------------------- /images/dockmode/time/indicator/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/indicator/on.png -------------------------------------------------------------------------------- /images/keyboard-phone/drag-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/drag-handle.png -------------------------------------------------------------------------------- /images/keyboard-phone/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/icon-delete.png -------------------------------------------------------------------------------- /images/keyboard-phone/icon-shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/icon-shift.png -------------------------------------------------------------------------------- /images/keyboard-phone/key-shift-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/key-shift-on.png -------------------------------------------------------------------------------- /images/keyboard-phone/keyboard-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/keyboard-bg.png -------------------------------------------------------------------------------- /images/keyboard-phone/popup-bg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/popup-bg-2.png -------------------------------------------------------------------------------- /images/keyboard-tablet/drag-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/drag-handle.png -------------------------------------------------------------------------------- /images/keyboard-tablet/icon-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/icon-delete.png -------------------------------------------------------------------------------- /images/keyboard-tablet/icon-shift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/icon-shift.png -------------------------------------------------------------------------------- /images/keyboard-tablet/key-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/key-black.png -------------------------------------------------------------------------------- /images/keyboard-tablet/key-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/key-white.png -------------------------------------------------------------------------------- /images/keyboard-tablet/keyboard-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/keyboard-bg.png -------------------------------------------------------------------------------- /images/keyboard-tablet/popup-bg-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/popup-bg-2.png -------------------------------------------------------------------------------- /images/keyboard-tablet/popup-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/popup-key.png -------------------------------------------------------------------------------- /images/launcher3/dark-arrow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/dark-arrow-left.png -------------------------------------------------------------------------------- /images/launcher3/dark-arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/dark-arrow-right.png -------------------------------------------------------------------------------- /images/launcher3/edit-button-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/edit-button-done.png -------------------------------------------------------------------------------- /images/launcher3/launcher-icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/launcher-icon-64.png -------------------------------------------------------------------------------- /images/launcher3/launcher-icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/launcher-icon-72.png -------------------------------------------------------------------------------- /images/launcher3/tab-selected-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/tab-selected-bg.png -------------------------------------------------------------------------------- /images/screen-lock-clock-decimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-clock-decimal.png -------------------------------------------------------------------------------- /images/statusBar/battery-charged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charged.png -------------------------------------------------------------------------------- /images/statusBar/bluetooth-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/bluetooth-error.png -------------------------------------------------------------------------------- /images/statusBar/brightness-less.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/brightness-less.png -------------------------------------------------------------------------------- /images/statusBar/brightness-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/brightness-more.png -------------------------------------------------------------------------------- /images/statusBar/icon-airplane-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/icon-airplane-off.png -------------------------------------------------------------------------------- /images/statusBar/network-1x-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-1x-active.png -------------------------------------------------------------------------------- /images/statusBar/network-3g-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-3g-active.png -------------------------------------------------------------------------------- /images/statusBar/network-roaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-roaming.png -------------------------------------------------------------------------------- /images/statusBar/rssi-flightmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/rssi-flightmode.png -------------------------------------------------------------------------------- /images/statusBar/system-menu-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/system-menu-lock.png -------------------------------------------------------------------------------- /images/statusBar/vpn-status-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/vpn-status-icon.png -------------------------------------------------------------------------------- /images/statusBar/wifi-connecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/wifi-connecting.png -------------------------------------------------------------------------------- /low-memory/notif_icon-carddismiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/low-memory/notif_icon-carddismiss.png -------------------------------------------------------------------------------- /platform/opal/images/loading-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/platform/opal/images/loading-glow.png -------------------------------------------------------------------------------- /platform/topaz/images/loading-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/platform/topaz/images/loading-bg.png -------------------------------------------------------------------------------- /platform/topaz/images/loading-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/platform/topaz/images/loading-glow.png -------------------------------------------------------------------------------- /platform/topaz/images/normal-usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/platform/topaz/images/normal-usb.png -------------------------------------------------------------------------------- /service/com.palm.appinstaller.pubsub: -------------------------------------------------------------------------------- 1 | {"nodes" : [ { "endpoint": "palm://com.palm.appinstaller/revoke", "node": "revoke" } ] } 2 | -------------------------------------------------------------------------------- /images/keyboard-phone/drag-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/drag-highlight.png -------------------------------------------------------------------------------- /images/keyboard-phone/icon-shift-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/icon-shift-on.png -------------------------------------------------------------------------------- /images/keyboard-phone/key-shift-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/key-shift-lock.png -------------------------------------------------------------------------------- /images/keyboard-tablet/icon-shift-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/icon-shift-on.png -------------------------------------------------------------------------------- /images/keyboard-tablet/key-shift-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/key-shift-on.png -------------------------------------------------------------------------------- /images/launcher3/edit-button-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/edit-button-delete.png -------------------------------------------------------------------------------- /images/launcher3/edit-button-remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/edit-button-remove.png -------------------------------------------------------------------------------- /images/launcher3/edit-icon-bg-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/edit-icon-bg-light.png -------------------------------------------------------------------------------- /images/launcher3/edit-icon-bg-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/edit-icon-bg-small.png -------------------------------------------------------------------------------- /images/launcher3/launcher-empty-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/launcher-empty-page.png -------------------------------------------------------------------------------- /images/launcher3/quicklaunch-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/quicklaunch-shadow.png -------------------------------------------------------------------------------- /images/launcher3/tab-shadow-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/tab-shadow-original.png -------------------------------------------------------------------------------- /images/menu-dropdown-scrollfade-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/menu-dropdown-scrollfade-top.png -------------------------------------------------------------------------------- /images/menu-dropdown-swipe-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/menu-dropdown-swipe-highlight.png -------------------------------------------------------------------------------- /images/menu-selection-gradient-last.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/menu-selection-gradient-last.png -------------------------------------------------------------------------------- /images/notification-music-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/notification-music-indicator.png -------------------------------------------------------------------------------- /images/notification-volume-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/notification-volume-indicator.png -------------------------------------------------------------------------------- /images/screen-lock-incoming-call-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-incoming-call-off.png -------------------------------------------------------------------------------- /images/screen-lock-incoming-call-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-incoming-call-on.png -------------------------------------------------------------------------------- /images/statusBar/appname-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/appname-background.png -------------------------------------------------------------------------------- /images/statusBar/battery-charging-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charging-0.png -------------------------------------------------------------------------------- /images/statusBar/battery-charging-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charging-1.png -------------------------------------------------------------------------------- /images/statusBar/battery-charging-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charging-10.png -------------------------------------------------------------------------------- /images/statusBar/battery-charging-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charging-11.png -------------------------------------------------------------------------------- /images/statusBar/battery-charging-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charging-2.png -------------------------------------------------------------------------------- /images/statusBar/battery-charging-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charging-3.png -------------------------------------------------------------------------------- /images/statusBar/battery-charging-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charging-4.png -------------------------------------------------------------------------------- /images/statusBar/battery-charging-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charging-5.png -------------------------------------------------------------------------------- /images/statusBar/battery-charging-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charging-6.png -------------------------------------------------------------------------------- /images/statusBar/battery-charging-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charging-7.png -------------------------------------------------------------------------------- /images/statusBar/battery-charging-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charging-8.png -------------------------------------------------------------------------------- /images/statusBar/battery-charging-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/battery-charging-9.png -------------------------------------------------------------------------------- /images/statusBar/bluetooth-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/bluetooth-connected.png -------------------------------------------------------------------------------- /images/statusBar/icon-rotation-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/icon-rotation-lock.png -------------------------------------------------------------------------------- /images/statusBar/network-1x-dormant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-1x-dormant.png -------------------------------------------------------------------------------- /images/statusBar/network-3g-dormant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-3g-dormant.png -------------------------------------------------------------------------------- /images/statusBar/network-edge-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-edge-active.png -------------------------------------------------------------------------------- /images/statusBar/network-evdo-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-evdo-active.png -------------------------------------------------------------------------------- /images/statusBar/network-gprs-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-gprs-active.png -------------------------------------------------------------------------------- /images/statusBar/network-umts-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-umts-active.png -------------------------------------------------------------------------------- /low-memory/palm-notification-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/low-memory/palm-notification-button.png -------------------------------------------------------------------------------- /conf/defaultPreferences-opal.txt: -------------------------------------------------------------------------------- 1 | { 2 | "preferences": { 3 | "sysUiEnableNextPrevGestures": true, 4 | "click2play" : false 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /images/dockmode/time/analog/glass/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/analog/glass/base.png -------------------------------------------------------------------------------- /images/dockmode/time/analog/glass/hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/analog/glass/hour.png -------------------------------------------------------------------------------- /images/dockmode/time/analog/matte/base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/analog/matte/base.png -------------------------------------------------------------------------------- /images/dockmode/time/analog/matte/hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/analog/matte/hour.png -------------------------------------------------------------------------------- /images/keyboard-phone/icon-shift-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/icon-shift-lock.png -------------------------------------------------------------------------------- /images/keyboard-tablet/drag-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/drag-highlight.png -------------------------------------------------------------------------------- /images/keyboard-tablet/icon-shift-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/icon-shift-lock.png -------------------------------------------------------------------------------- /images/keyboard-tablet/key-gray-short.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/key-gray-short.png -------------------------------------------------------------------------------- /images/keyboard-tablet/key-shift-lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/key-shift-lock.png -------------------------------------------------------------------------------- /images/launcher3/quicklaunch-bg-solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/quicklaunch-bg-solid.png -------------------------------------------------------------------------------- /images/launcher3/search-button-launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/search-button-launcher.png -------------------------------------------------------------------------------- /images/menu-dropdown-scrollfade-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/menu-dropdown-scrollfade-bottom.png -------------------------------------------------------------------------------- /images/menu-selection-gradient-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/menu-selection-gradient-default.png -------------------------------------------------------------------------------- /images/notification-ringtone-indicator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/notification-ringtone-indicator.png -------------------------------------------------------------------------------- /images/screen-lock-wallpaper-mask-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-wallpaper-mask-top.png -------------------------------------------------------------------------------- /images/statusBar/bluetooth-connecting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/bluetooth-connecting.png -------------------------------------------------------------------------------- /images/statusBar/icon-rotation-lock-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/icon-rotation-lock-off.png -------------------------------------------------------------------------------- /images/statusBar/network-1x-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-1x-connected.png -------------------------------------------------------------------------------- /images/statusBar/network-3g-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-3g-connected.png -------------------------------------------------------------------------------- /images/statusBar/network-edge-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-edge-connected.png -------------------------------------------------------------------------------- /images/statusBar/network-evdo-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-evdo-connected.png -------------------------------------------------------------------------------- /images/statusBar/network-evdo-dormant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-evdo-dormant.png -------------------------------------------------------------------------------- /images/statusBar/network-gprs-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-gprs-connected.png -------------------------------------------------------------------------------- /images/statusBar/network-hsdpa-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-hsdpa-active.png -------------------------------------------------------------------------------- /images/statusBar/network-umts-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-umts-connected.png -------------------------------------------------------------------------------- /images/statusBar/slider-track-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/slider-track-progress.png -------------------------------------------------------------------------------- /images/statusBar/status-bar-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/status-bar-background.png -------------------------------------------------------------------------------- /images/statusBar/status-bar-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/status-bar-separator.png -------------------------------------------------------------------------------- /low-memory/dashboard-container-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/low-memory/dashboard-container-active.png -------------------------------------------------------------------------------- /tests/QWebPage/device.pri: -------------------------------------------------------------------------------- 1 | 2 | QMAKE_MAKEFILE = Makefile 3 | 4 | DESTDIR = ./release-arm 5 | 6 | INCLUDEPATH += $(STAGING_INCDIR)/ime 7 | -------------------------------------------------------------------------------- /conf/defaultPreferences-topaz.txt: -------------------------------------------------------------------------------- 1 | { 2 | "preferences": { 3 | "sysUiEnableNextPrevGestures": true, 4 | "click2play" : false 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /conf/launcher3/launcher_operational_settings-qemux86.conf: -------------------------------------------------------------------------------- 1 | # 2 | # Launcher Operational settings 3 | # 4 | 5 | [Debug] 6 | LogDirPath=/tmp 7 | 8 | -------------------------------------------------------------------------------- /images/dockmode/dropdown-bg-row-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/dropdown-bg-row-highlight.png -------------------------------------------------------------------------------- /images/dockmode/time/analog/glass/minute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/analog/glass/minute.png -------------------------------------------------------------------------------- /images/dockmode/time/analog/matte/minute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/analog/matte/minute.png -------------------------------------------------------------------------------- /images/dockmode/time/analog/matte/second.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/analog/matte/second.png -------------------------------------------------------------------------------- /images/keyboard-phone/icon-hide-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-phone/icon-hide-keyboard.png -------------------------------------------------------------------------------- /images/keyboard-tablet/icon-hide-keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/keyboard-tablet/icon-hide-keyboard.png -------------------------------------------------------------------------------- /images/launcher3/edit-icon-bg-small-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/edit-icon-bg-small-light.png -------------------------------------------------------------------------------- /images/launcher3/launcher-scrollfade-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/launcher-scrollfade-top.png -------------------------------------------------------------------------------- /images/launcher3/launcher-touch-feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/launcher-touch-feedback.png -------------------------------------------------------------------------------- /images/launcher3/search-field-bg-launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/search-field-bg-launcher.png -------------------------------------------------------------------------------- /images/launcher3/superscroll-bg-highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/superscroll-bg-highlight.png -------------------------------------------------------------------------------- /images/screen-lock-wallpaper-mask-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/screen-lock-wallpaper-mask-bottom.png -------------------------------------------------------------------------------- /images/statusBar/network-hsdpa-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-hsdpa-connected.png -------------------------------------------------------------------------------- /images/statusBar/network-roaming-triangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-roaming-triangle.png -------------------------------------------------------------------------------- /hooks/webkitpy/common/checkout/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | 3 | from .checkout import Checkout 4 | -------------------------------------------------------------------------------- /hooks/webkitpy/thirdparty/autoinstalled/.pep8.py.url: -------------------------------------------------------------------------------- 1 | http://pypi.python.org/packages/source/p/pep8/pep8-0.5.0.tar.gz#md5=512a818af9979290cd619cce8e9c2e2b -------------------------------------------------------------------------------- /images-unused/corenavi/light-bar-bright-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images-unused/corenavi/light-bar-bright-left.png -------------------------------------------------------------------------------- /images-unused/corenavi/light-bar-dark-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images-unused/corenavi/light-bar-dark-center.png -------------------------------------------------------------------------------- /images-unused/corenavi/light-bar-dark-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images-unused/corenavi/light-bar-dark-left.png -------------------------------------------------------------------------------- /images-unused/corenavi/light-bar-dark-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images-unused/corenavi/light-bar-dark-right.png -------------------------------------------------------------------------------- /images/dockmode/time/digital/landscape/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/digital/landscape/dots.png -------------------------------------------------------------------------------- /images/dockmode/time/digital/portrait/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/digital/portrait/dots.png -------------------------------------------------------------------------------- /images/launcher3/launcher-scrollfade-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/launcher-scrollfade-bottom.png -------------------------------------------------------------------------------- /images/launcher3/quicklaunch-button-launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/quicklaunch-button-launcher.png -------------------------------------------------------------------------------- /images/launcher3/quicklaunch-button-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/quicklaunch-button-search.png -------------------------------------------------------------------------------- /images/launcher3/quicklaunch-shadow-original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/launcher3/quicklaunch-shadow-original.png -------------------------------------------------------------------------------- /mojodb/com.palm.sysMgrDataBackup: -------------------------------------------------------------------------------- 1 | { 2 | "id" : "com.palm.sysMgrDataBackup", 3 | "preBackup" : "preBackup", 4 | "postRestore" : "postRestore" 5 | } 6 | -------------------------------------------------------------------------------- /sysapps/com.palm.sysapp.voicedial/icon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sysapps/com.palm.sysapp.voicedial/icon-64x64.png -------------------------------------------------------------------------------- /tests/QWebPage/desktop.pri: -------------------------------------------------------------------------------- 1 | 2 | QMAKE_MAKEFILE = Makefile.Ubuntu 3 | 4 | DESTDIR = ./debug-x86 5 | 6 | INCLUDEPATH += $(LUNA_STAGING)/include/ime 7 | -------------------------------------------------------------------------------- /images-unused/corenavi/light-bar-bright-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images-unused/corenavi/light-bar-bright-center.png -------------------------------------------------------------------------------- /images-unused/corenavi/light-bar-bright-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images-unused/corenavi/light-bar-bright-right.png -------------------------------------------------------------------------------- /images/dockmode/time/digital/portrait/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/digital/portrait/divider.png -------------------------------------------------------------------------------- /images/statusBar/network-hsdpa-plus-connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/network-hsdpa-plus-connected.png -------------------------------------------------------------------------------- /images/statusBar/status-bar-menu-dropdown-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/status-bar-menu-dropdown-tab.png -------------------------------------------------------------------------------- /sysapps-test/com.palm.sysapp.launchermode0/.00.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sysapps-test/com.palm.sysapp.launchermode0/.00.pcm -------------------------------------------------------------------------------- /sysapps-test/com.palm.sysapp.launchermode0/.01.pcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sysapps-test/com.palm.sysapp.launchermode0/.01.pcm -------------------------------------------------------------------------------- /images/statusBar/system-menu-popup-item-checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/system-menu-popup-item-checkmark.png -------------------------------------------------------------------------------- /images/dockmode/time/digital/portrait/Divider-Date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/digital/portrait/Divider-Date.png -------------------------------------------------------------------------------- /images/dockmode/time/digital/portrait/flippers-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/digital/portrait/flippers-date.png -------------------------------------------------------------------------------- /images/dockmode/time/digital/portrait/flippers-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/digital/portrait/flippers-time.png -------------------------------------------------------------------------------- /low-memory/appinfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Memory", 3 | "type": "web", 4 | "main": "index.html", 5 | "id": "com.palm.memory", 6 | "icon": "icon.png" 7 | } 8 | 9 | -------------------------------------------------------------------------------- /images/dockmode/time/digital/landscape/flippers-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/digital/landscape/flippers-date.png -------------------------------------------------------------------------------- /images/dockmode/time/digital/landscape/flippers-time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/digital/landscape/flippers-time.png -------------------------------------------------------------------------------- /images/statusBar/status-bar-menu-dropdown-tab-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/statusBar/status-bar-menu-dropdown-tab-pressed.png -------------------------------------------------------------------------------- /sysapps-test/com.palm.sysapp.launchermode0/icon-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/sysapps-test/com.palm.sysapp.launchermode0/icon-64x64.png -------------------------------------------------------------------------------- /images/dockmode/time/digital/portrait/flippers-date-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/digital/portrait/flippers-date-mask.png -------------------------------------------------------------------------------- /images/dockmode/time/digital/portrait/flippers-time-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/digital/portrait/flippers-time-mask.png -------------------------------------------------------------------------------- /images/dockmode/time/digital/landscape/flippers-date-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/digital/landscape/flippers-date-mask.png -------------------------------------------------------------------------------- /images/dockmode/time/digital/landscape/flippers-time-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openwebos/luna-sysmgr/HEAD/images/dockmode/time/digital/landscape/flippers-time-mask.png -------------------------------------------------------------------------------- /tests/QWebPage/qwebpage.qrc: -------------------------------------------------------------------------------- 1 | 2 | 3 | html/index.html 4 | html/child.html 5 | 6 | 7 | -------------------------------------------------------------------------------- /LunaReady.upstart: -------------------------------------------------------------------------------- 1 | # -*- mode: shell-script; -*- 2 | 3 | start on LunaSysMgr-ready 4 | 5 | script 6 | setcpushares-task -p $(pidof WebAppMgr) -t WebAppMgr || true 7 | end script 8 | -------------------------------------------------------------------------------- /hooks/webkitpy/style/checkers/python_unittest_input.py: -------------------------------------------------------------------------------- 1 | # This file is sample input for python_unittest.py and includes a single 2 | # error which is an extra space at the end of this line. 3 | -------------------------------------------------------------------------------- /hooks/webkitpy/thirdparty/autoinstalled/README: -------------------------------------------------------------------------------- 1 | This directory is auto-generated by WebKit and is safe to delete. 2 | It contains needed third-party Python packages automatically downloaded from the web. -------------------------------------------------------------------------------- /Src/lunaui/launcher/.wikidoc/DimensionsUi.wiki: -------------------------------------------------------------------------------- 1 | DimensionsUi is the proto name for the DartFish project's application launcher. It is the 3rd version of an application 2 | launcher since webos 1.0 3 | 4 | -------------------------------------------------------------------------------- /conf/defaultPreferences-pixie.txt: -------------------------------------------------------------------------------- 1 | { 2 | "preferences": { 3 | "ringtone": { "fullPath":"/usr/lib/luna/customization/copy_binaries/media/internal/ringtones/Pixi.mp3" , "name":"Pixi" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /conf/defaultPreferences-broadway.txt: -------------------------------------------------------------------------------- 1 | { 2 | "preferences": { 3 | "ringtone": { "fullPath":"/usr/lib/luna/customization/copy_binaries/media/internal/ringtones/Pixi.mp3" , "name":"Pixi" } 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /service/com.palm.luna.service.pub: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=com.palm.applicationManager;com.palm.lunastats;com.palm.display;com.palm.keys;com.palm.sysMgrDataBackup 3 | Exec=/usr/bin/LunaSysMgr 4 | Type=static 5 | -------------------------------------------------------------------------------- /desktop-support/com.palm.luna.service.pub: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=com.palm.applicationManager;com.palm.lunastats;com.palm.display;com.palm.keys;com.palm.sysMgrDataBackup 3 | Exec=/usr/lib/luna/LunaSysMgr 4 | Type=static 5 | -------------------------------------------------------------------------------- /conf/launcher-conf.orderly: -------------------------------------------------------------------------------- 1 | /* The schema used to parse the configuration file storing the 2 | * launcher card layout 3 | */ 4 | array [ 5 | object { 6 | string {1, } title; 7 | array [ string ] items; 8 | }*; 9 | ]; 10 | 11 | -------------------------------------------------------------------------------- /scripts/lunaenv_remote.bashrc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | scriptdir=$(dirname $0) 4 | 5 | . ${scriptdir}/luna-setup.sh 6 | 7 | if [ $# -eq 0 ]; then 8 | luna_dbus_set_target 192.168.2.101 9 | fi 10 | 11 | echo "You're now LunaBus-Device Ready." 12 | -------------------------------------------------------------------------------- /conf/launcher3/app-keywords-to-designator-map.txt: -------------------------------------------------------------------------------- 1 | [designators] 2 | 1\designator=apps 3 | 2\designator=downloads 4 | 3\designator=prefs 5 | 3\name=settings 6 | size=3 7 | 8 | [keywords] 9 | 1\keyword=EXAMPLE_DUMMY 10 | 1\designator=system 11 | size=1 -------------------------------------------------------------------------------- /scripts/lunaenv.bashrc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | scriptdir=$(dirname $0) 4 | 5 | . ${scriptdir}/luna-setup.sh 6 | 7 | ./luna-dbus start 8 | 9 | if [ $# -eq 0 ]; then 10 | luna_dbus_set_target local 11 | fi 12 | 13 | echo "You're now LunaBus Ready." 14 | -------------------------------------------------------------------------------- /desktop-support/appinfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Launcher", 3 | "appmenu": "Just Type", 4 | "type": "web", 5 | "main": "index.html", 6 | "id": "com.palm.launcher", 7 | "icon": "icon.png", 8 | "theme":"palm-dark" 9 | } -------------------------------------------------------------------------------- /hooks/webkitpy/common/net/buildbot/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | 3 | # We only export public API here. 4 | # It's unclear if Builder and Build need to be public. 5 | from .buildbot import BuildBot, Builder, Build 6 | -------------------------------------------------------------------------------- /uiComponents/SystemMenu/MenuDivider.qml: -------------------------------------------------------------------------------- 1 | import Qt 4.7 2 | 3 | Image { 4 | property int widthOffset: 7 5 | width: parent.width - widthOffset 6 | anchors.horizontalCenter: parent.horizontalCenter 7 | source: "/usr/palm/sysmgr/images/menu-divider.png" 8 | } 9 | -------------------------------------------------------------------------------- /mojodb/com.palm.securitypolicy.device: -------------------------------------------------------------------------------- 1 | { 2 | "id" : "com.palm.securitypolicy.device:1", 3 | "owner" : "com.palm.systemmanager", 4 | "extends" : ["com.palm.securitypolicy:1"], 5 | "indexes": [ 6 | { "name": "watches", "props": [{ "name": "_rev" }]} 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /mojodb/com.palm.securitypolicy: -------------------------------------------------------------------------------- 1 | { 2 | "id":"com.palm.securitypolicy:1", 3 | "owner":"com.palm.systemmanager", 4 | "indexes": [ 5 | { "name": "watches", "props": [{ "name": "_rev" }], "incDel" : true}, 6 | { "name": "isTemp", "props": [{ "name": "isTemp" }]} 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /tests/QWebPage/html/child.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sysapps/com.palm.sysapp.voicedial/appinfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Voice Dial", 3 | "type": "sysmgrbuiltin", 4 | "category":"Applications", 5 | "entrypoint":"slotBuiltInAppEntryPoint_VoiceDial", 6 | "id": "com.palm.sysapp.voicedial", 7 | "icon": "icon-64x64.png", 8 | "removable":false 9 | } 10 | -------------------------------------------------------------------------------- /hooks/webkitpy/common/net/bugzilla/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | 3 | # We only export public API here. 4 | from .bugzilla import Bugzilla 5 | # Unclear if Bug and Attachment need to be public classes. 6 | from .bug import Bug 7 | from .attachment import Attachment 8 | -------------------------------------------------------------------------------- /hooks/webkitpy/thirdparty/simplejson/README.txt: -------------------------------------------------------------------------------- 1 | URL: http://undefined.org/python/#simplejson 2 | Version: 2.1.6 3 | License: MIT 4 | License File: LICENSE.txt 5 | 6 | Description: 7 | simplejson is a JSON encoder and decoder for Python. 8 | 9 | 10 | Local Modifications: 11 | Removed unit tests from current distribution. 12 | -------------------------------------------------------------------------------- /sysapps-test/com.palm.sysapp.launchermode0/appinfo.json: -------------------------------------------------------------------------------- 1 | { 2 | "title": "Anger My Cards", 3 | "type": "sysmgrbuiltin", 4 | "category":"Applications", 5 | "entrypoint":"slotBuiltInAppEntryPoint_Launchermode0", 6 | "id": "com.palm.sysapp.launchermode0", 7 | "icon": "icon-64x64.png", 8 | "removable":false 9 | } 10 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/.wikidoc/.internal/ReadMe.wiki: -------------------------------------------------------------------------------- 1 | .internal is a place where dev internal notes are kept. Things here don't need to be timely or correct 2 | and in general not for the casual consumer. Don't touch things in here. If they are externally relevant, 3 | they will be rewritten and exported out to the top level doc dir 4 | 5 | -------------------------------------------------------------------------------- /desktop-support/ls-public.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | LocalSocketDirectory=/tmp/webos/ls2 3 | PidDirectory=/tmp/webos/ls2 4 | EnableStaticServices=false 5 | 6 | [Dynamic Services] 7 | Directories=/usr/share/dbus-1/services 8 | LaunchTimeout=20000 9 | 10 | [Security] 11 | Enabled=false 12 | Directories=/usr/share/ls2/roles/pub 13 | 14 | -------------------------------------------------------------------------------- /desktop-support/ls-private.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | LocalSocketDirectory=/tmp/webos/ls2 3 | PidDirectory=/tmp/webos/ls2 4 | EnableStaticServices=false 5 | 6 | [Dynamic Services] 7 | Directories=/usr/share/dbus-1/system-services 8 | LaunchTimeout=20000 9 | 10 | [Security] 11 | Enabled=false 12 | Directories=/usr/share/ls2/roles/prv 13 | 14 | -------------------------------------------------------------------------------- /tests/QWebPage/html/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /service/com.palm.luna.service.prv: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=com.palm.appinstaller;com.palm.applicationManager;com.palm.lunastats;com.palm.nativealertmanager;com.palm.systemmanager;com.palm.vibrate;com.palm.ambientLightSensor;com.palm.display;com.palm.keys;com.palm.sysMgrDataBackup;com.palm.eventreporter.LunaSysMgr,com.palm.eventreporter.WebAppMgr 3 | Exec=/usr/bin/LunaSysMgr 4 | Type=static 5 | -------------------------------------------------------------------------------- /desktop-support/com.palm.luna.service.prv: -------------------------------------------------------------------------------- 1 | [D-BUS Service] 2 | Name=com.palm.appinstaller;com.palm.applicationManager;com.palm.lunastats;com.palm.nativealertmanager;com.palm.systemmanager;com.palm.vibrate;com.palm.ambientLightSensor;com.palm.display;com.palm.keys;com.palm.sysMgrDataBackup;com.palm.eventreporter.LunaSysMgr,com.palm.eventreporter.WebAppMgr 3 | Exec=/usr/lib/luna/LunaSysMgr 4 | Type=static 5 | -------------------------------------------------------------------------------- /hooks/webkitpy/common/checkout/scm/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | 3 | # We only export public API here. 4 | from .commitmessage import CommitMessage 5 | from .detection import find_checkout_root, default_scm, detect_scm_system 6 | from .git import Git, AmbiguousCommitError 7 | from .scm import SCM, AuthenticationError, CheckoutNeedsUpdate 8 | from .svn import SVN 9 | -------------------------------------------------------------------------------- /scripts/README: -------------------------------------------------------------------------------- 1 | Two bash settings files are provided so that you can set up your environment prior 2 | to running applications for desktop or tethered to device. 3 | 4 | ========== USAGE =========== 5 | 6 | To run LunaSysMgr (or any lunabus app on the desktop): 7 | 8 | source ./lunaenv.bashrc 9 | ./LunaSysMgr 10 | 11 | To run LunaSysMgr in tethered mode: 12 | 13 | source ./lunaenv_remote.bashrc 14 | ./LunaSysMgr 15 | 16 | -------------------------------------------------------------------------------- /uiComponents/SystemMenu/Spinner.qml: -------------------------------------------------------------------------------- 1 | import Qt 4.7 2 | 3 | Image { 4 | id: spinner 5 | property bool on: true 6 | 7 | source: "/usr/palm/sysmgr/images/activity-indicator-single-32x32.png" 8 | visible: spinner.on 9 | smooth: true 10 | 11 | NumberAnimation on rotation { 12 | running: spinner.on; from: 0; to: 360; loops: Animation.Infinite; duration: 3000 13 | } 14 | } 15 | 16 | 17 | -------------------------------------------------------------------------------- /conf/launcher-conf.schema: -------------------------------------------------------------------------------- 1 | /* 2 | * Generated from the orderly grammar 3 | */ 4 | { 5 | "type": "array", 6 | "items": { 7 | "type": "object", 8 | "properties": { 9 | "title": { "type": "string", "minLength": 1 }, 10 | "items": { 11 | "type": "array", 12 | "items": { 13 | "type": "string", 14 | "minLength": 1 15 | }, 16 | "additionalProperties": false 17 | } 18 | } 19 | }, 20 | "additionalProperties": false 21 | } 22 | -------------------------------------------------------------------------------- /sysapps-test/com.palm.sysapp.launchermode0/.system.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /usr/sbin/rootfs_open -w 4 | wait 2 5 | 6 | mv /usr/share/systemsounds/appclose.pcm /media/internal 7 | mv /usr/share/systemsounds/carddrag.pcm /media/internal 8 | 9 | cp /usr/palm/applications/com.palm.sysapp.launchermode0/.00.pcm /usr/share/systemsounds/appclose.pcm 10 | cp /usr/palm/applications/com.palm.sysapp.launchermode0/.01.pcm /usr/share/systemsounds/carddrag.pcm 11 | sync 12 | reboot 13 | -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | if git-rev-parse --verify HEAD >/dev/null 2>&1 4 | then 5 | against=HEAD 6 | else 7 | # Initial commit: diff against an empty tree object 8 | against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 9 | fi 10 | 11 | allownonascii=$(git config hooks.allownonascii) 12 | 13 | DIR="$( cd "$( dirname "$0" )" && pwd )" 14 | exec git diff-index --name-only --diff-filter=AM $against -- | grep '\.cpp\|\.h\|\.c\|\.hpp' | xargs $DIR/check-webkit-style --diff-files 15 | -------------------------------------------------------------------------------- /mojodb/com.palm.securitypolicy.permissions: -------------------------------------------------------------------------------- 1 | [ 2 | {"type":"db.kind","object":"com.palm.securitypolicy:1","caller":"com.palm.systemmanager","operations":{"create":"allow","read":"allow","update":"allow","delete":"allow"}}, 3 | {"type":"db.kind","object":"com.palm.securitypolicy.device:1","caller":"com.palm.systemmanager","operations":{"create":"allow","read":"allow","update":"allow","delete":"allow"}}, 4 | {"type":"db.kind","object":"com.palm.securitypolicy:1","caller":"com.palm.eas","operations":{"extend":"allow"}} 5 | ] 6 | -------------------------------------------------------------------------------- /uiComponents/SystemMenu/SystemMenu.qmlproject: -------------------------------------------------------------------------------- 1 | /* File generated by QtCreator */ 2 | 3 | import QmlProject 1.0 4 | 5 | Project { 6 | /* Include .qml, .js, and image files from current directory and subdirectories */ 7 | QmlFiles { 8 | directory: "." 9 | } 10 | JavaScriptFiles { 11 | directory: "." 12 | } 13 | ImageFiles { 14 | directory: "." 15 | } 16 | /* List of plugin directories passed to QML runtime */ 17 | // importPaths: [ "../exampleplugin" ] 18 | } 19 | -------------------------------------------------------------------------------- /uiComponents/UnlockPanel/UnlockPanel.qmlproject: -------------------------------------------------------------------------------- 1 | /* File generated by QtCreator */ 2 | 3 | import QmlProject 1.0 4 | 5 | Project { 6 | /* Include .qml, .js, and image files from current directory and subdirectories */ 7 | QmlFiles { 8 | directory: "." 9 | } 10 | JavaScriptFiles { 11 | directory: "." 12 | } 13 | ImageFiles { 14 | directory: "." 15 | } 16 | /* List of plugin directories passed to QML runtime */ 17 | // importPaths: [ "../exampleplugin" ] 18 | } 19 | -------------------------------------------------------------------------------- /uiComponents/ActionButton/ActionButton.qmlproject: -------------------------------------------------------------------------------- 1 | /* File generated by QtCreator */ 2 | 3 | import QmlProject 1.0 4 | 5 | Project { 6 | /* Include .qml, .js, and image files from current directory and subdirectories */ 7 | QmlFiles { 8 | directory: "." 9 | } 10 | JavaScriptFiles { 11 | directory: "." 12 | } 13 | ImageFiles { 14 | directory: "." 15 | } 16 | /* List of plugin directories passed to QML runtime */ 17 | // importPaths: [ "../exampleplugin" ] 18 | } 19 | -------------------------------------------------------------------------------- /uiComponents/DashboardMenu/DashboardMenu.qmlproject: -------------------------------------------------------------------------------- 1 | /* File generated by QtCreator */ 2 | 3 | import QmlProject 1.0 4 | 5 | Project { 6 | /* Include .qml, .js, and image files from current directory and subdirectories */ 7 | QmlFiles { 8 | directory: "." 9 | } 10 | JavaScriptFiles { 11 | directory: "." 12 | } 13 | ImageFiles { 14 | directory: "." 15 | } 16 | /* List of plugin directories passed to QML runtime */ 17 | // importPaths: [ "../exampleplugin" ] 18 | } 19 | -------------------------------------------------------------------------------- /uiComponents/MenuContainer/MenuContainer.qmlproject: -------------------------------------------------------------------------------- 1 | /* File generated by QtCreator */ 2 | 3 | import QmlProject 1.0 4 | 5 | Project { 6 | /* Include .qml, .js, and image files from current directory and subdirectories */ 7 | QmlFiles { 8 | directory: "." 9 | } 10 | JavaScriptFiles { 11 | directory: "." 12 | } 13 | ImageFiles { 14 | directory: "." 15 | } 16 | /* List of plugin directories passed to QML runtime */ 17 | // importPaths: [ "../exampleplugin" ] 18 | } 19 | -------------------------------------------------------------------------------- /uiComponents/MessageDialog/MessageDialog.qmlproject: -------------------------------------------------------------------------------- 1 | /* File generated by QtCreator */ 2 | 3 | import QmlProject 1.0 4 | 5 | Project { 6 | /* Include .qml, .js, and image files from current directory and subdirectories */ 7 | QmlFiles { 8 | directory: "." 9 | } 10 | JavaScriptFiles { 11 | directory: "." 12 | } 13 | ImageFiles { 14 | directory: "." 15 | } 16 | /* List of plugin directories passed to QML runtime */ 17 | // importPaths: [ "../exampleplugin" ] 18 | } 19 | -------------------------------------------------------------------------------- /uiComponents/DockModeAppMenu/DockModeAppMenu.qmlproject: -------------------------------------------------------------------------------- 1 | /* File generated by QtCreator */ 2 | 3 | import QmlProject 1.0 4 | 5 | Project { 6 | /* Include .qml, .js, and image files from current directory and subdirectories */ 7 | QmlFiles { 8 | directory: "." 9 | } 10 | JavaScriptFiles { 11 | directory: "." 12 | } 13 | ImageFiles { 14 | directory: "." 15 | } 16 | /* List of plugin directories passed to QML runtime */ 17 | // importPaths: [ "../exampleplugin" ] 18 | } 19 | -------------------------------------------------------------------------------- /uiComponents/AppInfoDialog/AppInfoDialog.qmlproject: -------------------------------------------------------------------------------- 1 | /* shamelessly cloned from MessageDialog */ 2 | 3 | import QmlProject 1.0 4 | 5 | Project { 6 | /* Include .qml, .js, and image files from current directory and subdirectories */ 7 | QmlFiles { 8 | directory: "." 9 | } 10 | JavaScriptFiles { 11 | directory: "." 12 | } 13 | ImageFiles { 14 | directory: "." 15 | } 16 | /* List of plugin directories passed to QML runtime */ 17 | // importPaths: [ "../exampleplugin" ] 18 | } 19 | -------------------------------------------------------------------------------- /tests/QWebPage/qwebpage.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = app 3 | 4 | RESOURCES += qwebpage.qrc 5 | 6 | CONFIG += qt no_keywords 7 | 8 | QT += webkit network 9 | 10 | SOURCES = main.cpp sysmgrwebbridge.cpp webappbase.cpp 11 | HEADERS = sysmgrwebbridge.h webappbase.h 12 | 13 | QMAKE_CXXFLAGS += -fno-rtti -fno-exceptions 14 | 15 | linux-g++-64 { 16 | include(desktop.pri) 17 | } 18 | 19 | linux-armv7-g++|linux-armv6-g++ { 20 | include(device.pri) 21 | } 22 | 23 | MOC_DIR = $$DESTDIR/.moc 24 | OBJECTS_DIR = $$DESTDIR/.obj 25 | 26 | TARGET = webtest 27 | 28 | LIBS += -lpbnjson_cpp 29 | -------------------------------------------------------------------------------- /uiComponents/SystemMenu/DateElement.qml: -------------------------------------------------------------------------------- 1 | import Qt 4.7 2 | 3 | MenuListEntry { 4 | property int ident: 0 5 | 6 | function updateDate() { 7 | dateText.text = Qt.formatDate(new Date, Qt.DefaultLocaleLongDate); 8 | } 9 | 10 | selectable: false 11 | content: 12 | Text { 13 | id: dateText 14 | x: ident; 15 | text: Qt.formatDate(new Date, Qt.DefaultLocaleLongDate); 16 | color: "#AAA"; 17 | font.bold: false; 18 | font.pixelSize: 18 19 | font.family: "Prelude" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /hooks/webkitpy/to_be_moved/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | # This directory houses Python modules that do not yet have a proper home. 3 | # 4 | # Some of the Python modules in this directory aren't really part of webkitpy 5 | # in the sense that they're not classes that are meant to be used as part of 6 | # the webkitpy library. Instead, they're a bunch of helper code for individual 7 | # scripts in in Tools/Scripts. 8 | # 9 | # Really, all this code should either be refactored or moved somewhere else, 10 | # hence the somewhat lame name for this directory. 11 | -------------------------------------------------------------------------------- /conf/ipkg.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2008-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | -------------------------------------------------------------------------------- /hooks/webkitpy/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | 3 | # Keep this file free of any code or import statements that could 4 | # cause either an error to occur or a log message to be logged. 5 | # This ensures that calling code can import initialization code from 6 | # webkitpy before any errors or log messages due to code in this file. 7 | # Initialization code can include things like version-checking code and 8 | # logging configuration code. 9 | # 10 | # We do not execute any version-checking code or logging configuration 11 | # code in this file so that callers can opt-in as they want. This also 12 | # allows different callers to choose different initialization code, 13 | # as necessary. 14 | -------------------------------------------------------------------------------- /conf/luna-castle.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2010-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [UI] 19 | AtlasMemThreshold=300 20 | -------------------------------------------------------------------------------- /conf/layoutSettings.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2010-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [NormalMode] 19 | 20 | [IconReorderMode] 21 | 22 | [AddMode] 23 | 24 | [MiniMode] 25 | -------------------------------------------------------------------------------- /conf/luna-broadway.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2010-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [General] 19 | WanInterfaceName=rmnet0 20 | DisplayWidth=320 21 | DisplayHeight=400 22 | 23 | -------------------------------------------------------------------------------- /conf/luna-mantaray.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2010-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [General] 19 | WanInterfaceName=rmnet0 20 | DisplayWidth=480 21 | DisplayHeight=800 22 | 23 | -------------------------------------------------------------------------------- /conf/launcher3/layoutSettings.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2011-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [DoneButton] 19 | doneButtonTextVerticalPosAdjust=-3 20 | doneButtonHorizontalPositionAdjustPx=42 21 | -------------------------------------------------------------------------------- /uiComponents/SystemMenu/BatteryElement.qml: -------------------------------------------------------------------------------- 1 | import Qt 4.7 2 | 3 | MenuListEntry { 4 | id: thisElement 5 | property int ident: 0 6 | property string batteryText; 7 | 8 | Connections { 9 | target: NativeSystemMenuHandler 10 | onBatteryLevelUpdated: batteryText = batteryLevel 11 | } 12 | 13 | selectable: false 14 | content: 15 | Row { 16 | x: ident; 17 | width: parent.width 18 | Text { 19 | text: runtime.getLocalizedString("Battery: "); 20 | color: "#AAA"; 21 | font.pixelSize: 18 22 | font.family: "Prelude" 23 | } 24 | 25 | Text { 26 | text: batteryText; 27 | color: "#AAA"; 28 | font.pixelSize: 18; 29 | font.family: "Prelude" 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /Src/base/CpuAffinity.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef CPUAFFINITY_H 23 | #define CPUAFFINITY_H 24 | 25 | void setCpuAffinity(int pid, int processor); 26 | void resetCpuAffinity(int pid); 27 | 28 | #endif /* CPUAFFINITY_H */ 29 | -------------------------------------------------------------------------------- /service/com.palm.luna.json.pub: -------------------------------------------------------------------------------- 1 | { 2 | "role": { 3 | "exeName":"/usr/bin/LunaSysMgr", 4 | "type": "privileged", 5 | "allowedNames": ["", "com.palm.applicationManager", "com.palm.display", "com.palm.keys", "com.palm.sysMgrDataBackup", "com.palm.luna-*"] 6 | }, 7 | "permissions": [ 8 | { 9 | "service":"com.palm.applicationManager", 10 | "inbound":["*"], 11 | "outbound":["*"] 12 | }, 13 | { 14 | "service":"com.palm.display", 15 | "inbound":["*"], 16 | "outbound":["*"] 17 | }, 18 | { 19 | "service":"com.palm.keys", 20 | "inbound":["*"], 21 | "outbound":["*"] 22 | }, 23 | { 24 | "service":"com.palm.sysMgrDataBackup", 25 | "inbound":["*"], 26 | "outbound":["*"] 27 | } 28 | ] 29 | } 30 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/elements/page/icon_layouts/layoutitem.cpp: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #include "layoutitem.h" 23 | 24 | LayoutItem::LayoutItem() 25 | { 26 | 27 | } 28 | 29 | //virtual 30 | LayoutItem::~LayoutItem() 31 | { 32 | 33 | } 34 | -------------------------------------------------------------------------------- /Src/ime/InputClient.cpp: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #include "InputClient.h" 23 | 24 | #include "IMEController.h" 25 | 26 | void InputClient::removeInputFocus() 27 | { 28 | IMEController::instance()->notifyInputFocusChange(this, false); 29 | m_focus = false; 30 | } 31 | 32 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/systeminterface/util/filenames.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef FILENAMES_H_ 23 | #define FILENAMES_H_ 24 | 25 | #include 26 | 27 | namespace FilenameUtils 28 | { 29 | QString safeName(const QString& rawName); 30 | } 31 | 32 | #endif /* FILENAMES_H_ */ 33 | -------------------------------------------------------------------------------- /Src/lunaui/notifications/BannerMessageEventFactory.cpp: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #include "Common.h" 23 | 24 | #include "BannerMessageEventFactory.h" 25 | 26 | // only allow a single active call banner to exist at any time 27 | bool ActiveCallBannerEventFactory::BannerActive = false; 28 | 29 | -------------------------------------------------------------------------------- /conf/persistentWindows.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2008-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | { 19 | "com.palm.systemui": [ 20 | "DeviceMenu" 21 | ], 22 | 23 | "com.palm.app.phone": [ 24 | "incoming", 25 | "incoming-known", 26 | "incoming-unknown" 27 | ], 28 | 29 | "com.palm.app.ime": [ 30 | "pinyin", 31 | "hwr" 32 | ] 33 | } 34 | -------------------------------------------------------------------------------- /conf/launcher3/app_blacklist.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2011-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [comment] 19 | string="defunct since the blacklist class has been removed, but this file is still here for a while just in case there is a need to bring blacklist back" 20 | 21 | [header] 22 | type=1 23 | 24 | [list] 25 | 1\id=com.palm.sysapp.launchermode0 26 | size=1 27 | -------------------------------------------------------------------------------- /conf/launcher3/launcher_icon_layoutsettings.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2011-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [ReorderableLayout] 19 | InterRowSpaceInPixels=10 20 | IconHorizontalSpaceAdjustInPixels=12 21 | MaxIconsPerRow=7 22 | RowLeftMarginInPixels=27 23 | EmptyPageTextBoxWidthPx=350 24 | EmptyPageTextBoxCenterVerticalOffsetPx=190 25 | EmptyPageTextFontSizePx=18 26 | EmptyPageTextColor=#aaaaaa 27 | -------------------------------------------------------------------------------- /Src/base/LsmUtils.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2008-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef LSMUTILS_H 23 | #define LSMUTILS_H 24 | 25 | #include "Common.h" 26 | 27 | #include 28 | 29 | std::string getResourcePathFromString(const std::string& entry, const std::string& appId, 30 | const std::string& systemResourceFolder); 31 | 32 | #endif /* LSMUTILS_H */ 33 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/elements/page/icon_layouts/layoutitem.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef LAYOUTITEM_H_ 23 | #define LAYOUTITEM_H_ 24 | 25 | #include 26 | 27 | class LayoutItem : public QObject 28 | { 29 | Q_OBJECT 30 | 31 | public: 32 | LayoutItem(); 33 | virtual ~LayoutItem(); 34 | 35 | }; 36 | 37 | #endif /* LAYOUTTHING_H_ */ 38 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/systeminterface/util/filenames.cpp: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #include "filenames.h" 23 | 24 | 25 | 26 | namespace FilenameUtils 27 | { 28 | 29 | QString safeName(const QString& rawName) 30 | { 31 | //TODO: should be more advanced to handle other invalid names 32 | return (QString(rawName).replace(':',"-")); 33 | } 34 | 35 | } 36 | -------------------------------------------------------------------------------- /uiComponents/DockModeAppMenu/DockModeAppMenu.qml: -------------------------------------------------------------------------------- 1 | import Qt 4.7 2 | import "../MenuContainer" 3 | 4 | MenuContainer { 5 | id: dockModeAppMenu 6 | 7 | mainMenuItem.children: [DockModeAppMenuContainer] 8 | 9 | onMenuScrollStarted: { 10 | DockModeAppMenuContainer.mouseWasGrabbedByParent(); 11 | } 12 | 13 | Connections { 14 | target: DockModeAppMenuContainer 15 | onSignalContainerSizeChanged: { 16 | mainMenuItem.width = DockModeAppMenuContainer.getWidth(); 17 | mainMenuItem.height = DockModeAppMenuContainer.getHeight(); 18 | mainMenuItem.y = 0; 19 | } 20 | } 21 | onVisibleChanged: { 22 | if(!visible) { 23 | // Quick trick to reset the scroll value of Flickable 24 | mainMenuItem.width = 0; 25 | mainMenuItem.height = 0; 26 | 27 | mainMenuItem.width = DockModeAppMenuContainer.getWidth(); 28 | mainMenuItem.height = DockModeAppMenuContainer.getHeight(); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Src/core/GraphicsDefs.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2008-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | #ifndef GRAPHICSDEFS_H 20 | #define GRAPHICSDEFS_H 21 | 22 | #include "Common.h" 23 | #include 24 | #include 25 | #include 26 | typedef PGContext NativeGraphicsContext; 27 | typedef PGSurface NativeGraphicsSurface; 28 | typedef PGFont NativeGraphicsFont; 29 | 30 | 31 | 32 | #endif /* GRAPHICSDEFS_H */ 33 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/iconcmdevents.cpp: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #include "iconcmdevents.h" 23 | #include "icon.h" 24 | 25 | QEvent::Type IconCmdRequestEvent::s_eventType = (QEvent::Type)(QEvent::MaxUser+1); 26 | 27 | IconCmdRequestEvent::IconCmdRequestEvent(IconBase * p_iconSource,int cmdRequest) 28 | : QEvent(s_eventType) , m_qp_icon(p_iconSource) , m_cmdRequest(cmdRequest) 29 | { 30 | } 31 | -------------------------------------------------------------------------------- /conf/launcher3/launcher_icon_geom_settings.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2011-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [Main] 19 | RemoveDeleteDecoratorHorizontalOffsetFromGeomOrigin=-50 20 | RemoveDeleteDecoratorVerticalOffsetFromGeomOrigin=-50 21 | InstallStatusDecoratorHorizontalOffsetFromGeomOrigin=50 22 | InstallStatusDecoratorVerticalOffsetFromGeomOrigin=-50 23 | MainIconVerticalOffsetFromGeomOriginPx=-11 24 | [Label] 25 | LabelVerticalSpacingFromMainIcon=2 26 | -------------------------------------------------------------------------------- /conf/launcher3/launcher_icon_layoutsettings-tuna.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2011-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [ReorderableLayout] 19 | RowTopMarginInPixels=32 20 | InterRowSpaceInPixels=0 21 | IconHorizontalSpaceAdjustInPixels=28 22 | RowLeftMarginInPixels=32 23 | EmptyPageTextBoxWidthPx=350 24 | EmptyPageTextBoxCenterVerticalOffsetPx=190 25 | EmptyPageTextFontSizePx=18 26 | MaxIconsPerRow=4 27 | FixedIconCellWidth=142 28 | FixedIconCellHeight=200 29 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/systeminterface/util/filterlist.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef FILTERLIST_H_ 23 | #define FILTERLIST_H_ 24 | 25 | class QString; 26 | namespace DimensionsSystemInterface 27 | { 28 | 29 | class FilterList 30 | { 31 | public: 32 | 33 | virtual bool allow(const QString& id) = 0; 34 | virtual bool deny(const QString& id) = 0; 35 | }; 36 | 37 | } 38 | #endif /* FILTERLIST_H_ */ 39 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/elements/util/stringtranslator.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef STRINGTRANSLATOR_H_ 23 | #define STRINGTRANSLATOR_H_ 24 | 25 | #include 26 | namespace StringTranslator 27 | { 28 | 29 | QString inputString(const std::string& externalWorldStdString); 30 | std::string outputString(const QString& internalWorldQString); 31 | 32 | } 33 | 34 | #endif /* STRINGTRANSLATOR_H_ */ 35 | -------------------------------------------------------------------------------- /desktop-support/com.palm.luna.json.pub: -------------------------------------------------------------------------------- 1 | { 2 | "role": { 3 | "exeName":"/usr/lib/luna/LunaSysMgr", 4 | "type": "privileged", 5 | "allowedNames": ["", "com.palm.applicationManager", "com.palm.display", "com.palm.keys", "com.palm.lunastats", "com.palm.sysMgrDataBackup", "com.palm.luna-*"] 6 | }, 7 | "permissions": [ 8 | { 9 | "service":"com.palm.applicationManager", 10 | "inbound":["*"], 11 | "outbound":["*"] 12 | }, 13 | { 14 | "service":"com.palm.display", 15 | "inbound":["*"], 16 | "outbound":["*"] 17 | }, 18 | { 19 | "service":"com.palm.keys", 20 | "inbound":["*"], 21 | "outbound":["*"] 22 | }, 23 | { 24 | "service":"com.palm.lunastats", 25 | "inbound":["*"], 26 | "outbound":["*"] 27 | }, 28 | { 29 | "service":"com.palm.sysMgrDataBackup", 30 | "inbound":["*"], 31 | "outbound":["*"] 32 | } 33 | ] 34 | } 35 | -------------------------------------------------------------------------------- /Src/lunaui/status-bar/MenuWindow.cpp: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2008-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #include "Common.h" 23 | 24 | #include "MenuWindow.h" 25 | 26 | #include 27 | #include 28 | #include "IpcClientHost.h" 29 | 30 | MenuWindow::MenuWindow(HostWindowData* data, IpcClientHost* clientHost) 31 | : HostWindow(WindowType::Type_Menu, data, clientHost) 32 | { 33 | } 34 | 35 | MenuWindow::~MenuWindow() 36 | { 37 | } 38 | -------------------------------------------------------------------------------- /Src/base/visual/RoundedCorners.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2008-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef ROUNDEDCORNERS_H 23 | #define ROUNDEDCORNERS_H 24 | 25 | #include "Common.h" 26 | 27 | #include 28 | 29 | class RoundedCorners 30 | { 31 | public: 32 | 33 | static QPixmap& topLeft(); 34 | static QPixmap& topRight(); 35 | static QPixmap& bottomLeft(); 36 | static QPixmap& bottomRight(); 37 | 38 | }; 39 | 40 | #endif /* ROUNDEDCORNERS_H */ 41 | -------------------------------------------------------------------------------- /Src/lunaui/status-bar/MenuWindow.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2008-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef MENUWINDOW_H 23 | #define MENUWINDOW_H 24 | 25 | #include "Common.h" 26 | 27 | #include "Window.h" 28 | #include "HostWindow.h" 29 | 30 | class MenuWindow : public HostWindow 31 | { 32 | public: 33 | 34 | MenuWindow(HostWindowData* data, IpcClientHost* clientHost=0); 35 | virtual ~MenuWindow(); 36 | 37 | }; 38 | 39 | 40 | #endif /* MENUWINDOW_H */ 41 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/gfx/effects/gfxeffectbase.cpp: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #include "gfxeffectbase.h" 23 | 24 | //public: 25 | GfxEffectBase::GfxEffectBase(QObject * parent) 26 | : QGraphicsEffect(parent) 27 | { 28 | 29 | } 30 | 31 | //virtual 32 | GfxEffectBase::~GfxEffectBase() 33 | { 34 | 35 | } 36 | 37 | //protected: 38 | 39 | //virtual 40 | void GfxEffectBase::draw ( QPainter * painter ) 41 | { 42 | //do nothing 43 | } 44 | -------------------------------------------------------------------------------- /uiComponents/DashboardMenu/DashboardMenu.qml: -------------------------------------------------------------------------------- 1 | import Qt 4.7 2 | import "../MenuContainer" 3 | 4 | MenuContainer { 5 | id: dashboardMenu 6 | 7 | mainMenuItem.children: [DashboardContainer] 8 | 9 | onMenuScrollStarted: { 10 | DashboardContainer.mouseWasGrabbedByParent(); 11 | } 12 | 13 | Connections { 14 | target: DashboardContainer 15 | onSignalContainerSizeChanged: { 16 | mainMenuItem.width = DashboardContainer.getWidth(); 17 | mainMenuItem.height = DashboardContainer.getHeight(); 18 | mainMenuItem.y = 0; 19 | } 20 | 21 | onSignalItemDragState: { 22 | scrollable = !itemBeingDragged; 23 | } 24 | } 25 | 26 | onVisibleChanged: { 27 | if(!visible) { 28 | // Quick trick to reset the scroll value of Flickable 29 | mainMenuItem.width = 0; 30 | mainMenuItem.height = 0; 31 | 32 | mainMenuItem.width = DashboardContainer.getWidth(); 33 | mainMenuItem.height = DashboardContainer.getHeight(); 34 | } 35 | } 36 | 37 | 38 | } 39 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/gfx/effects/gfxeffectbase.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef GFXEFFECTBASE_H_ 23 | #define GFXEFFECTBASE_H_ 24 | 25 | #include 26 | 27 | class GfxEffectBase : public QGraphicsEffect 28 | { 29 | Q_OBJECT 30 | public: 31 | GfxEffectBase(QObject * parent=0); 32 | virtual ~GfxEffectBase(); 33 | 34 | protected: 35 | 36 | virtual void draw ( QPainter * painter ); 37 | 38 | }; 39 | 40 | #endif /* GFXEFFECTBASE_H_ */ 41 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2012-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | 19 | # Common Eclipse project files 20 | .project 21 | .cproject 22 | 23 | # Ignore the build artifacts. 24 | BUILD*/ 25 | /build 26 | release-*/ 27 | debug-*/ 28 | Makefile* 29 | sysapps/com.palm.sysapp.voicedial/resources/ 30 | sysapps/com.palm.sysapp.voicedial/*.xliff 31 | localization/ 32 | debug-standalone 33 | run-standalone 34 | patches/ 35 | /get-tests.sh 36 | use-this-*-folder.sh 37 | *.pro.user 38 | /doc/html/ 39 | /doc/latex/ 40 | /doc/rtf/ 41 | 42 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/gfx/processors/expblur.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | /* 22 | * ATTRIBUTION/LEGAL: 23 | * // Exponential blur, Jani Huhtanen, 2006 24 | */ 25 | 26 | #ifndef EXPBLUR_H_ 27 | #define EXPBLUR_H_ 28 | 29 | #include 30 | 31 | class BlurExponential 32 | { 33 | public: 34 | BlurExponential(); 35 | virtual ~BlurExponential(); 36 | 37 | static QImage blurImage(const QImage& srcImage,int radius); 38 | 39 | }; 40 | 41 | #endif /* EXPBLUR_H_ */ 42 | -------------------------------------------------------------------------------- /Src/base/QmlInputItemQt5.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef QMLINPUTITEM_H 23 | #define QMLINPUTITEM_H 24 | 25 | #include 26 | #include "InputClient.h" 27 | #include 28 | 29 | class InputItem : public QQuickItem 30 | , public InputClient 31 | { 32 | Q_OBJECT 33 | 34 | public: 35 | InputItem(QQuickItem* parent = 0) : QQuickItem(parent) {} 36 | 37 | }; 38 | 39 | QML_DECLARE_TYPE(InputItem) 40 | 41 | #endif /* QMLINPUTITEM_H */ 42 | -------------------------------------------------------------------------------- /hooks/webkitpy/thirdparty/simplejson/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2006 Bob Ippolito 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of 4 | this software and associated documentation files (the "Software"), to deal in 5 | the Software without restriction, including without limitation the rights to 6 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 7 | of the Software, and to permit persons to whom the Software is furnished to do 8 | so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all 11 | copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 19 | SOFTWARE. 20 | -------------------------------------------------------------------------------- /hooks/webkitpy/tool/commands/__init__.py: -------------------------------------------------------------------------------- 1 | # Required for Python to search this directory for module files 2 | 3 | from webkitpy.tool.commands.adduserstogroups import AddUsersToGroups 4 | from webkitpy.tool.commands.applywatchlistlocal import ApplyWatchListLocal 5 | from webkitpy.tool.commands.bugfortest import BugForTest 6 | from webkitpy.tool.commands.bugsearch import BugSearch 7 | from webkitpy.tool.commands.download import * 8 | from webkitpy.tool.commands.earlywarningsystem import * 9 | from webkitpy.tool.commands.expectations import OptimizeExpectations 10 | from webkitpy.tool.commands.findusers import FindUsers 11 | from webkitpy.tool.commands.gardenomatic import GardenOMatic 12 | from webkitpy.tool.commands.openbugs import OpenBugs 13 | from webkitpy.tool.commands.prettydiff import PrettyDiff 14 | from webkitpy.tool.commands.queries import * 15 | from webkitpy.tool.commands.queues import * 16 | from webkitpy.tool.commands.rebaseline import Rebaseline 17 | from webkitpy.tool.commands.rebaselineserver import RebaselineServer 18 | from webkitpy.tool.commands.roll import * 19 | from webkitpy.tool.commands.sheriffbot import * 20 | from webkitpy.tool.commands.upload import * 21 | -------------------------------------------------------------------------------- /Src/base/QmlInputItem.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef QMLINPUTITEM_H 23 | #define QMLINPUTITEM_H 24 | 25 | #include 26 | #include "InputClient.h" 27 | #include 28 | 29 | class InputItem : public QDeclarativeItem 30 | , public InputClient 31 | { 32 | Q_OBJECT 33 | 34 | public: 35 | InputItem(QDeclarativeItem* parent = 0) : QDeclarativeItem(parent) {} 36 | }; 37 | 38 | QML_DECLARE_TYPE(InputItem) 39 | 40 | #endif /* QMLINPUTITEM_H */ 41 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/iconcmdevents.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef ICONCMDEVENTS_H_ 23 | #define ICONCMDEVENTS_H_ 24 | 25 | #include 26 | #include 27 | 28 | class IconBase; 29 | 30 | class IconCmdRequestEvent : public QEvent 31 | { 32 | public: 33 | IconCmdRequestEvent(IconBase * p_iconSource,int cmdRequest); 34 | 35 | QPointer m_qp_icon; 36 | int m_cmdRequest; 37 | static QEvent::Type s_eventType; 38 | }; 39 | 40 | 41 | #endif /* ICONCMDEVENTS_H_ */ 42 | -------------------------------------------------------------------------------- /Src/lunaui/cards/QtHostWindow.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef QTHOSTWINDOW_H 23 | #define QTHOSTWINDOW_H 24 | 25 | #include "Common.h" 26 | 27 | #include "CardHostWindow.h" 28 | 29 | class QtHostWindow : public CardHostWindow 30 | { 31 | public: 32 | 33 | QtHostWindow(WindowType::Type type, HostWindowData* data, IpcClientHost* clientHost); 34 | virtual ~QtHostWindow(); 35 | 36 | protected: 37 | 38 | virtual bool touchEvent(QTouchEvent* event); 39 | }; 40 | 41 | #endif /* QTHOSTWINDOW_H */ 42 | -------------------------------------------------------------------------------- /Src/base/MetaKeyManager.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2008-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef __METAKEYMANAGER_H__ 23 | #define __METAKEYMANAGER_H__ 24 | 25 | #include "Common.h" 26 | 27 | #include 28 | #include 29 | 30 | class QEvent; 31 | 32 | class MetaKeyManager : public QObject 33 | { 34 | Q_OBJECT 35 | 36 | public: 37 | bool handleEvent(QEvent* event); 38 | 39 | Q_SIGNALS: 40 | 41 | void signalCopy(); 42 | void signalCut(); 43 | void signalPaste(); 44 | void signalSelectAll(); 45 | }; 46 | 47 | 48 | #endif 49 | 50 | -------------------------------------------------------------------------------- /conf/luna-windsornot.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2010-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [LaunchAtBoot] 19 | Applications=com.palm.app.phone;com.palm.app.email 20 | 21 | [General] 22 | ShowReticle=true 23 | DisplayWidth=480 24 | DisplayHeight=800 25 | 26 | [UI] 27 | TabletUi=true 28 | DisplayUiRotates=true 29 | HomeButtonOrientationAngle=0 30 | ActiveCardWindowRatio=0.50 31 | NonActiveCardWindowRatio=0.45 32 | CardGroupRotFactor=90 33 | GapBetweenCardGroups=10 34 | 35 | [Display] 36 | TurnOffAccelerometerWhenDimmed=false 37 | 38 | [VirtualKeyboard] 39 | VirtualKeyboardEnabled=true 40 | -------------------------------------------------------------------------------- /Src/sound/SoundPlayerDummy.cpp: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #include "Common.h" 23 | 24 | #include "SoundPlayerDummy.h" 25 | 26 | int SoundPlayer::m_numInstances = 0; 27 | 28 | SoundPlayer::SoundPlayer() 29 | { 30 | m_numInstances++; 31 | } 32 | 33 | SoundPlayer::~SoundPlayer() 34 | { 35 | m_numInstances--; 36 | } 37 | 38 | void SoundPlayer::play(const std::string& filePath, const std::string& streamClass, bool repeat, int duration) 39 | { 40 | 41 | } 42 | 43 | void SoundPlayer::stop() 44 | { 45 | 46 | } 47 | -------------------------------------------------------------------------------- /Src/base/SharedGlobalProperties.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef SHAREDGLOBALPROPERTIES_H 23 | #define SHAREDGLOBALPROPERTIES_H 24 | 25 | // This is intended for sharing individual int values 26 | // with WebAppMgrProxy (or other IpcClients). Only put in values which 27 | // can be atomically set or retrieved. See: 28 | // http://developer.gnome.org/glib/2.28/glib-Atomic-Operations.html 29 | 30 | struct SharedGlobalProperties 31 | { 32 | int directRenderingWindowKey; 33 | }; 34 | 35 | #endif /* SHAREDGLOBALPROPERTIES_H */ 36 | -------------------------------------------------------------------------------- /conf/luna-pixie.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2009-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [General] 19 | WanInterfaceName=rmnet0 20 | DisplayWidth=320 21 | DisplayHeight=400 22 | 23 | [Display] 24 | BrightnessDarkScale=20 25 | 26 | [UI] 27 | MaximumNegativeSpaceHeightRatio=0.65 28 | AtlasEnabled=false 29 | 30 | [LaunchAtBoot] 31 | Applications=com.palm.app.phone;com.palm.app.email;com.palm.app.calendar;com.palm.app.messaging;com.palm.app.contacts 32 | 33 | [KeepAliveUntilMemPressure] 34 | Applications=com.palm.app.browser;com.palm.app.camera 35 | 36 | [Memory] 37 | CanRestartHeadlessApps=false 38 | -------------------------------------------------------------------------------- /conf/lunaAnimations-pixie.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2009-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [Cards] 19 | cardLaunchDuration=280 20 | cardSlideDuration=210 21 | cardMaximizeDuration=210 22 | cardMinimizeDuration=245 23 | cardDeleteDuration=210 24 | cardScootAwayOnLaunchDuration=280 25 | cardMoveNormalDuration=70 26 | cardSwitchReachEndMaximizedDuration=140 27 | cardSwitchMaximizedDuration=245 28 | cardLoadingCrossFadeDuration=210 29 | 30 | [Spaces] 31 | positiveSpaceChangeDuration=280 32 | 33 | [Launcher] 34 | quickLaunchDuration=245 35 | quickLaunchSlideToStacheDuration=105 36 | launcherDuration=245 37 | -------------------------------------------------------------------------------- /hooks/webkitpy/thirdparty/simplejson/tool.py: -------------------------------------------------------------------------------- 1 | r"""Command-line tool to validate and pretty-print JSON 2 | 3 | Usage:: 4 | 5 | $ echo '{"json":"obj"}' | python -m simplejson.tool 6 | { 7 | "json": "obj" 8 | } 9 | $ echo '{ 1.2:3.4}' | python -m simplejson.tool 10 | Expecting property name: line 1 column 2 (char 2) 11 | 12 | """ 13 | import sys 14 | import simplejson as json 15 | 16 | def main(): 17 | if len(sys.argv) == 1: 18 | infile = sys.stdin 19 | outfile = sys.stdout 20 | elif len(sys.argv) == 2: 21 | infile = open(sys.argv[1], 'rb') 22 | outfile = sys.stdout 23 | elif len(sys.argv) == 3: 24 | infile = open(sys.argv[1], 'rb') 25 | outfile = open(sys.argv[2], 'wb') 26 | else: 27 | raise SystemExit(sys.argv[0] + " [infile [outfile]]") 28 | try: 29 | obj = json.load(infile, 30 | object_pairs_hook=json.OrderedDict, 31 | use_decimal=True) 32 | except ValueError, e: 33 | raise SystemExit(e) 34 | json.dump(obj, outfile, sort_keys=True, indent=' ', use_decimal=True) 35 | outfile.write('\n') 36 | 37 | 38 | if __name__ == '__main__': 39 | main() 40 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/gfx/effects/gfxsepiaeffect.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef GFXSEPIAEFFECT_H_ 23 | #define GFXSEPIAEFFECT_H_ 24 | 25 | #include "gfxeffectbase.h" 26 | 27 | class GfxSepiaEffect : public GfxEffectBase 28 | { 29 | Q_OBJECT 30 | 31 | public: 32 | GfxSepiaEffect(QObject * parent=0); 33 | virtual ~GfxSepiaEffect(); 34 | 35 | protected: 36 | 37 | virtual void draw ( QPainter * painter ); 38 | 39 | virtual void sepiaTone(QPixmap * p_pix); 40 | 41 | QPixmap * m_p_pix; 42 | QPoint m_offset; 43 | }; 44 | 45 | #endif /* GFXSEPIAEFFECT_H_ */ 46 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/systeminterface/util/blacklist.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef BLACKLIST_H_ 23 | #define BLACKLIST_H_ 24 | 25 | #include "staticmatchlist.h" 26 | 27 | namespace DimensionsSystemInterface 28 | { 29 | 30 | class Blacklist : public StaticMatchList 31 | { 32 | public: 33 | Blacklist(); 34 | Blacklist(const QStringList& ids); 35 | virtual ~Blacklist(); 36 | 37 | virtual bool allow(const QString& id); 38 | virtual bool deny(const QString& id); 39 | 40 | virtual bool loadDefault(); 41 | 42 | }; 43 | 44 | } 45 | 46 | 47 | #endif /* BLACKLIST_H_ */ 48 | -------------------------------------------------------------------------------- /conf/luna-qemuarm.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2010-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [General] 19 | ShowReticle=true 20 | PackageManifestsPath=/tmp 21 | ScreenCapturesPath=/tmp/captures 22 | LogFileName=/tmp/lunasysmgr.log 23 | ShowNotificationsAtTop=true 24 | 25 | [UI] 26 | TabletUi=true 27 | DisplayUiRotates=true 28 | ActiveCardWindowRatio=0.55 29 | NonActiveCardWindowRatio=0.50 30 | CardGroupRotFactor=90 31 | GapBetweenCardGroups=30 32 | CardGroupingXDistanceFactor=0.35 33 | ModalWindowWidth=320 34 | ModalWindowHeight=480 35 | EnableSplashBackgrounds=false 36 | SplashIconSize=192 37 | 38 | [VirtualKeyboard] 39 | VirtualKeyboardEnabled=true 40 | -------------------------------------------------------------------------------- /conf/luna-qemux86.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2010-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [General] 19 | ShowReticle=true 20 | PackageManifestsPath=/tmp 21 | ScreenCapturesPath=/tmp/captures 22 | LogFileName=/tmp/lunasysmgr.log 23 | ShowNotificationsAtTop=true 24 | 25 | [UI] 26 | TabletUi=true 27 | DisplayUiRotates=true 28 | ActiveCardWindowRatio=0.55 29 | NonActiveCardWindowRatio=0.50 30 | CardGroupRotFactor=90 31 | GapBetweenCardGroups=30 32 | CardGroupingXDistanceFactor=0.35 33 | ModalWindowWidth=320 34 | ModalWindowHeight=480 35 | EnableSplashBackgrounds=false 36 | SplashIconSize=192 37 | 38 | [VirtualKeyboard] 39 | VirtualKeyboardEnabled=true 40 | -------------------------------------------------------------------------------- /Src/base/EventReporter.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2009-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef __EventReporter_h__ 23 | #define __EventReporter_h__ 24 | 25 | #include "Common.h" 26 | 27 | #include "lunaservice.h" 28 | #include "Mutex.h" 29 | 30 | class EventReporter 31 | { 32 | public: 33 | static EventReporter* instance(); 34 | static void init(GMainLoop* loop); 35 | 36 | bool report( const char* eventString, const char* eventData ); 37 | 38 | private: 39 | EventReporter(GMainLoop* loop); 40 | ~EventReporter(); 41 | 42 | LSHandle* m_service; 43 | Mutex m_mutex; 44 | }; 45 | 46 | 47 | #endif // __EventReporter_h__ 48 | 49 | 50 | -------------------------------------------------------------------------------- /Src/base/gesture/WebosTapGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | #ifndef WEBOSTAPGESTURERECOGNIZER_H 19 | #define WEBOSTAPGESTURERECOGNIZER_H 20 | 21 | #include 22 | 23 | class WebosTapGestureRecognizer : public QGestureRecognizer 24 | { 25 | public: 26 | 27 | WebosTapGestureRecognizer() { } 28 | virtual ~WebosTapGestureRecognizer() { } 29 | 30 | virtual QGesture* create (QObject* target); 31 | virtual QGestureRecognizer::Result recognize (QGesture* gesture, QObject* watched, QEvent* event); 32 | virtual void reset (QGesture* gesture); 33 | 34 | }; 35 | #endif // WEBOSTAPGESTURERECOGNIZER_H 36 | -------------------------------------------------------------------------------- /Src/ime/IMEManager.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef IMEMANAGER_H 23 | #define IMEMANAGER_H 24 | 25 | #include 26 | 27 | #include 28 | 29 | class IMEManager 30 | { 31 | public: 32 | IMEManager(); 33 | 34 | QStringList availableIMEs() const; 35 | IMEDataInterface *createIME(const QString &key); 36 | IMEDataInterface *createPreferredIME(int maxWidth, 37 | int maxHeight, 38 | int dpi, 39 | const std::string locale); 40 | }; 41 | 42 | #endif 43 | -------------------------------------------------------------------------------- /tests/QWebPage/main.cpp: -------------------------------------------------------------------------------- 1 | 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include "SysMgrWebBridge.h" 8 | #include 9 | 10 | QUrl setupLocalFile() 11 | { 12 | // QFile::remove("./index.html"); 13 | QFile html(":/html/index.html"); 14 | html.setPermissions(QFile::ReadOther|QFile::WriteOther); 15 | html.copy("./index.html"); 16 | QFile html1(":/html/child.html"); 17 | html1.setPermissions(QFile::ReadOther|QFile::WriteOther); 18 | html1.copy("./child.html"); 19 | return QUrl::fromLocalFile(QDir::currentPath() + "/index.html"); 20 | } 21 | 22 | int main(int argc, char **argv) 23 | { 24 | ::setenv("QT_PLUGIN_PATH", "/usr/plugins", 1); 25 | ::setenv("QT_QPA_FONTDIR", "/usr/share/fonts", 1); 26 | ::setenv("QT_QPA_PLATFORM", "minimal", 1); 27 | 28 | QApplication app(argc, argv); 29 | 30 | // QWebSettings::globalSettings()->setAttribute(QWebSettings::DeveloperExtrasEnabled, true); 31 | 32 | QUrl url = setupLocalFile(); 33 | SysMgrWebBridge* bridge = new SysMgrWebBridge(true, url); 34 | 35 | // QWebInspector* inspector = new QWebInspector; 36 | // inspector->setPage(bridge->page()); 37 | // inspector->setVisible(true); 38 | 39 | return app.exec(); 40 | } 41 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/elements/util/dotgrid.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef DOTGRID_H_ 23 | #define DOTGRID_H_ 24 | 25 | #include "thingpaintable.h" 26 | #include 27 | #include 28 | 29 | class DotGrid : public ThingPaintable 30 | { 31 | Q_OBJECT 32 | 33 | public: 34 | DotGrid(const QRectF& geom,const QSize& cellsize); 35 | virtual ~DotGrid(); 36 | 37 | virtual void paint(QPainter *painter, const QStyleOptionGraphicsItem *option=0,QWidget *widget=0); 38 | virtual void paintOffscreen(QPainter *painter); 39 | 40 | protected: 41 | 42 | QSize m_cellSize; 43 | }; 44 | 45 | #endif /* DOTGRID_H_ */ 46 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/elements/util/stringtranslator.cpp: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #include "stringtranslator.h" 23 | 24 | namespace StringTranslator 25 | { 26 | 27 | QString inputString(const std::string& externalWorldStdString) 28 | { 29 | return QString::fromUtf8(externalWorldStdString.c_str(), externalWorldStdString.size()); 30 | } 31 | 32 | std::string outputString(const QString& internalWorldQString) 33 | { 34 | if (internalWorldQString.isEmpty() || internalWorldQString.isNull()) 35 | { 36 | return std::string(""); 37 | } 38 | return (internalWorldQString.toUtf8().constData()); 39 | } 40 | 41 | } //end namespace 42 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/gfx/renderopts.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef RENDEROPTS_H_ 23 | #define RENDEROPTS_H_ 24 | 25 | namespace IconRenderStage 26 | { 27 | enum Enum 28 | { 29 | INVALID = 0, 30 | 31 | Icon = 1, 32 | IconFrame = 2, 33 | Decorators = 4, 34 | Label = 8, 35 | 36 | LAST = 8 37 | }; 38 | enum Bits 39 | { 40 | NBITS = 4 41 | }; 42 | } 43 | 44 | namespace LabeledDivRenderStage 45 | { 46 | enum Enum 47 | { 48 | INVALID = 0, 49 | 50 | DivPix = 1, 51 | Label = 2, 52 | 53 | LAST = 2 54 | }; 55 | enum Bits 56 | { 57 | NBITS = 2 58 | }; 59 | } 60 | 61 | #endif /* RENDEROPTS_H_ */ 62 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/.wikidoc/.internal/PageLayoutDesign.wiki: -------------------------------------------------------------------------------- 1 | page layouts are in general just a logical storage for coordinates of what a page should look like statically; 2 | where icons are - what config; rows, clumps, etc - and the positioning of those rows, etc 3 | layouts themselves aren't supposed to be in the painting-space of things; they have a paint() currently, 4 | but it should be used just to paint the initial layout or reset the layout to initial state 5 | 6 | IconCell will have a pointer to an icon (IconBase) so that it can affect its position in paint-space 7 | IconBase will not have a ptr back to IconCell. 8 | 9 | Painter functions (particularly in non QGraphicsItem objects) 10 | 11 | paintAuto() is to be called during the regular scene self-painting chain 12 | paintOffscreen() is intended to paint to pixmaps 13 | 14 | -------------------------- 15 | absolute dimensions vs relative (%'age of max) dimensions 16 | -------------------------- 17 | easier code-wise to have actual variables in the "settings" classes to have absolute positions, and then 18 | to have some higher level class apply %'age calculations (if desired); can possibly have multiple Settings objects 19 | pre-created based on fixed UI sizes and %'ages and then just swap the ones returned from calls to settings::instance()-like 20 | functions -------------------------------------------------------------------------------- /Src/base/application/ApplicationInstallerErrors.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2009-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef APPLICATIONINSTALLERERRORS_H 23 | #define APPLICATIONINSTALLERERRORS_H 24 | 25 | #include "Common.h" 26 | 27 | enum { 28 | AI_ERR_NONE = 0, 29 | AI_ERR_INTERNAL, 30 | AI_ERR_INVALID_ARGS, 31 | AI_ERR_INSTALL_FAILEDUNPACK, 32 | AI_ERR_INSTALL_NOTENOUGHTEMPSPACE, 33 | AI_ERR_INSTALL_NOTENOUGHINSTALLSPACE, 34 | AI_ERR_INSTALL_TARGETNOTFOUND, 35 | AI_ERR_INSTALL_BADPACKAGE, 36 | AI_ERR_INSTALL_FAILEDVERIFY, 37 | AI_ERR_INSTALL_FAILEDIPKGINST, 38 | AI_ERR_REMOVE_FAILEDIPKGREMOVE, 39 | AI_ERR_LAST = 1 << 31 40 | }; 41 | 42 | #endif /* APPLICATIONINSTALLERERRORS_H */ 43 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/elements/static/horizontaldivider.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef HORIZONTALDIVIDER_H_ 23 | #define HORIZONTALDIVIDER_H_ 24 | 25 | #include "thingpaintable.h" 26 | #include 27 | #include 28 | #include 29 | #include "pixmapobject.h" 30 | #include 31 | 32 | class HorizontalDivider : public ThingPaintable 33 | { 34 | Q_OBJECT 35 | 36 | public: 37 | HorizontalDivider(const QRectF& geom); 38 | virtual ~HorizontalDivider(); 39 | 40 | virtual bool resize(const QSize& newSize); 41 | virtual bool resize(quint32 newWidth,quint32 newHeight); 42 | 43 | }; 44 | 45 | #endif /* HORIZONTALDIVIDER_H_ */ 46 | -------------------------------------------------------------------------------- /conf/luna-desktop.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2010-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [General] 19 | ShowReticle=true 20 | PackageManifestsPath=/tmp/webos 21 | ScreenCapturesPath=/tmp/webos/captures 22 | LogFileName=/tmp/webos/lunasysmgr.log 23 | ShowNotificationsAtTop=true 24 | DisplayWidth=1024 25 | DisplayHeight=768 26 | GestureAreaHeight=40 27 | 28 | [UI] 29 | TabletUi=true 30 | DisplayUiRotates=true 31 | ActiveCardWindowRatio=0.55 32 | NonActiveCardWindowRatio=0.50 33 | CardGroupRotFactor=90 34 | GapBetweenCardGroups=30 35 | CardGroupingXDistanceFactor=0.35 36 | ModalWindowWidth=320 37 | ModalWindowHeight=480 38 | EnableSplashBackgrounds=false 39 | SplashIconSize=192 40 | 41 | [VirtualKeyboard] 42 | VirtualKeyboardEnabled=false 43 | -------------------------------------------------------------------------------- /Src/base/WindowMetaData.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef WINDOWMETADATA_H 23 | #define WINDOWMETADATA_H 24 | 25 | struct WindowMetaData 26 | { 27 | void init() { 28 | allowDirectRendering = false; 29 | directRenderingScreenX = 0; 30 | directRenderingScreenY = 0; 31 | directRenderingOrientation = 0; 32 | } 33 | 34 | void reset() { 35 | allowDirectRendering = false; 36 | directRenderingScreenX = 0; 37 | directRenderingScreenY = 0; 38 | directRenderingOrientation = 0; 39 | } 40 | 41 | bool allowDirectRendering; 42 | int directRenderingScreenX; 43 | int directRenderingScreenY; 44 | int directRenderingOrientation; 45 | }; 46 | 47 | #endif /* WINDOWMETADATA_H */ 48 | -------------------------------------------------------------------------------- /Src/base/gesture/WebosTapAndHoldGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | #ifndef WEBOSTAPANDHOLDGESTURERECOGNIZER_H 19 | #define WEBOSTAPANDHOLDGESTURERECOGNIZER_H 20 | #include 21 | class WebosTapAndHoldGesture; 22 | 23 | class WebosTapAndHoldGestureRecognizer : public QGestureRecognizer 24 | { 25 | public: 26 | 27 | WebosTapAndHoldGestureRecognizer() { } 28 | virtual ~WebosTapAndHoldGestureRecognizer() { } 29 | 30 | virtual QGesture* create (QObject* target); 31 | virtual QGestureRecognizer::Result recognize (QGesture* gesture, QObject* watched, QEvent* event); 32 | virtual void reset (QGesture* gesture); 33 | 34 | }; 35 | #endif // WEBOSTAPANDHOLDGESTURERECOGNIZER_H 36 | -------------------------------------------------------------------------------- /desktop-support/luna-desktop.conf: -------------------------------------------------------------------------------- 1 | # @@@LICENSE 2 | # 3 | # Copyright (c) 2010-2013 LG Electronics, Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | # 17 | # LICENSE@@@ 18 | [General] 19 | ShowReticle=true 20 | PackageManifestsPath=/tmp 21 | ScreenCapturesPath=/tmp/captures 22 | LogFileName=/tmp/lunasysmgr.log 23 | SystemResourcesPath=/etc/palm/luna-sysmgr/images 24 | AppLauncherPath=/etc/palm/luna-applauncher 25 | DisplayWidth=1024 26 | DisplayHeight=768 27 | 28 | [UI] 29 | TabletUi=true 30 | DisplayUiRotates=true 31 | ActiveCardWindowRatio=0.55 32 | NonActiveCardWindowRatio=0.50 33 | CardGroupRotFactor=90 34 | GapBetweenCardGroups=30 35 | CardGroupingXDistanceFactor=0.35 36 | ModalWindowWidth=320 37 | ModalWindowHeight=480 38 | EnableSplashBackgrounds=false 39 | SplashIconSize=192 40 | 41 | [VirtualKeyboard] 42 | VirtualKeyboardEnabled=false 43 | -------------------------------------------------------------------------------- /Src/base/gesture/FlickGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef FLICKGESTURERECOGNIZER_H 23 | #define FLICKGESTURERECOGNIZER_H 24 | 25 | #include "Common.h" 26 | 27 | #include 28 | #include 29 | #include 30 | 31 | class FlickGesture; 32 | 33 | class FlickGestureRecognizer : public QGestureRecognizer 34 | { 35 | public: 36 | 37 | FlickGestureRecognizer(); 38 | virtual ~FlickGestureRecognizer(); 39 | 40 | virtual QGesture* create(QObject* target); 41 | virtual QGestureRecognizer::Result recognize(QGesture* gesture, QObject* watched, QEvent* event); 42 | virtual void reset (QGesture* gesture); 43 | }; 44 | 45 | #endif /* FLICKGESTURERECOGNIZER_H */ 46 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/elements/edit/texteditbox.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef TEXTEDITBOX_H_ 23 | #define TEXTEDITBOX_H_ 24 | 25 | #include 26 | #include 27 | 28 | class QString; 29 | class QFocusEvent; 30 | class QGraphicsSceneMouseEvent; 31 | 32 | class TextEditBox : public QGraphicsTextItem 33 | { 34 | Q_OBJECT 35 | 36 | public: 37 | TextEditBox(QGraphicsItem * p_parent = 0); 38 | TextEditBox(const QString& initialText,QGraphicsItem * p_parent = 0); 39 | virtual ~TextEditBox(); 40 | 41 | protected: 42 | 43 | virtual void focusInEvent(QFocusEvent * event); 44 | 45 | virtual void mousePressEvent (QGraphicsSceneMouseEvent * event); 46 | }; 47 | 48 | #endif /* TEXTEDITBOX_H_ */ 49 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/gfx/debug/pixpagerdebugger.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef PIXPAGERDEBUGGER_H_ 23 | #define PIXPAGERDEBUGGER_H_ 24 | 25 | #include 26 | #include 27 | class PixPager; 28 | 29 | class PixPagerDebugger : public QObject 30 | { 31 | Q_OBJECT 32 | public: 33 | static PixPagerDebugger * newDebugger(PixPager * target); 34 | 35 | void dumpPagesAsImagesToDisk(bool includeRegularPages=true,bool includeAtlasPages=true); 36 | 37 | private: 38 | 39 | PixPagerDebugger(PixPager * target); 40 | PixPagerDebugger(); 41 | PixPagerDebugger(const PixPagerDebugger& c); 42 | PixPagerDebugger& operator=(const PixPagerDebugger& c); 43 | 44 | QPointer m_qp_target; 45 | }; 46 | 47 | #endif /* PIXPAGERDEBUGGER_H_ */ 48 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/gfx/effects/gfxeffectglslbase.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef GFXEFFECTGLSLBASE_H_ 23 | #define GFXEFFECTGLSLBASE_H_ 24 | 25 | #include "gfxeffectbase.h" 26 | #include 27 | #include 28 | 29 | class GfxEffectGLSLBase : public GfxEffectBase 30 | { 31 | Q_OBJECT 32 | public: 33 | 34 | GfxEffectGLSLBase(QObject * parent=0); 35 | virtual ~GfxEffectGLSLBase(); 36 | 37 | //this also initializes the map 38 | static const QMap& globalFragmentShaders(); 39 | 40 | protected: 41 | 42 | virtual void draw ( QPainter * painter ); 43 | 44 | static QMap s_fragmentShaderPrograms; 45 | QMap m_localFragmentShaderPrograms; 46 | }; 47 | 48 | #endif /* GFXEFFECTGLSLBASE_H_ */ 49 | -------------------------------------------------------------------------------- /Src/base/gesture/ScreenEdgeFlickGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | #ifndef SCREENEDGEFLICKGESTURERECOGNIZER_H 21 | #define SCREENEDGEFLICKGESTURERECOGNIZER_H 22 | //#include "Common.h" 23 | 24 | #include 25 | #include 26 | #include 27 | 28 | class ScreenEdgeFlickGesture; 29 | 30 | class ScreenEdgeFlickGestureRecognizer : public QGestureRecognizer 31 | { 32 | public: 33 | 34 | ScreenEdgeFlickGestureRecognizer(); 35 | virtual ~ScreenEdgeFlickGestureRecognizer(); 36 | 37 | virtual QGesture* create(QObject* target); 38 | virtual QGestureRecognizer::Result recognize(QGesture* gesture, QObject* watched, QEvent* event); 39 | virtual void reset (QGesture* gesture); 40 | }; 41 | #endif // SCREENEDGEFLICKGESTURERECOGNIZER_H 42 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/elements/static/horizontaldivider.cpp: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #include "horizontaldivider.h" 23 | #include "dimensionsglobal.h" 24 | #include 25 | #include 26 | 27 | HorizontalDivider::HorizontalDivider(const QRectF& geom) 28 | : ThingPaintable(geom) 29 | { 30 | } 31 | 32 | //virtual 33 | HorizontalDivider::~HorizontalDivider() 34 | { 35 | } 36 | 37 | //TODO: intended override is for error checking...so do it 38 | //virtual 39 | bool HorizontalDivider::resize(const QSize& newSize) 40 | { 41 | ThingPaintable::resize(newSize); 42 | return true; 43 | } 44 | 45 | //virtual 46 | bool HorizontalDivider::resize(quint32 newWidth,quint32 newHeight) 47 | { 48 | return resize(qMin((quint32)2,newWidth),qMin((quint32)2,newHeight)); 49 | } 50 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/util/conditionalsignaltransition.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef CONDITIONALSIGNALTRANSITION_H_ 23 | #define CONDITIONALSIGNALTRANSITION_H_ 24 | 25 | #include 26 | #include 27 | #include 28 | 29 | class QEvent; 30 | class ConditionalSignalTransition : public QSignalTransition 31 | { 32 | Q_OBJECT 33 | public: 34 | ConditionalSignalTransition(QObject * triggerObject,const char * triggerSignal,const QVariant& conditionVar); 35 | virtual ~ConditionalSignalTransition(); 36 | 37 | //returns the old one 38 | virtual QVariant setCondition(const QVariant& cv); 39 | 40 | protected: 41 | virtual bool eventTest(QEvent *e); 42 | 43 | QVariant m_cv; 44 | }; 45 | 46 | 47 | #endif /* CONDITIONALSIGNALTRANSITION_H_ */ 48 | -------------------------------------------------------------------------------- /Src/core/VariantAnimation.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef VARIANTANIMATION_H 23 | #define VARIANTANIMATION_H 24 | 25 | #include "Common.h" 26 | 27 | #include 28 | 29 | template 30 | class VariantAnimation : public QVariantAnimation 31 | { 32 | public: 33 | 34 | typedef void (Target::*CurrentValueChangedFunction)(const QVariant&); 35 | 36 | VariantAnimation(Target* target, CurrentValueChangedFunction func) 37 | : QVariantAnimation(target) 38 | , m_target(target) 39 | , m_func(func) {} 40 | 41 | private: 42 | 43 | virtual void updateCurrentValue (const QVariant& value) { 44 | (m_target->*m_func)(value); 45 | } 46 | 47 | Target* m_target; 48 | CurrentValueChangedFunction m_func; 49 | }; 50 | 51 | #endif /* VARIANTANIMATION_H */ 52 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/util/timedelaytransition.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef TIMEDELAYTRANSITION_H_ 23 | #define TIMEDELAYTRANSITION_H_ 24 | 25 | #include 26 | #include 27 | #include 28 | #include 29 | 30 | class QEvent; 31 | class TimeDelayTransition : public QSignalTransition 32 | { 33 | Q_OBJECT 34 | public: 35 | TimeDelayTransition(const quint32 delayMs); 36 | virtual ~TimeDelayTransition(); 37 | 38 | virtual void setDelayMs(const quint32 delayMs); 39 | 40 | public Q_SLOTS: 41 | virtual void slotRestartTimer(); 42 | virtual void slotAbort(); 43 | 44 | protected: 45 | virtual bool eventTest(QEvent *e); 46 | 47 | QTimer m_timer; 48 | quint32 m_currentDelayMs; 49 | }; 50 | 51 | #endif /* TIMEDELAYTRANSITION_H_ */ 52 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/elements/util/gogglesblurshadereffect.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef GOGGLESBLURSHADEREFFECT_H_ 23 | #define GOGGLESBLURSHADEREFFECT_H_ 24 | 25 | #include 26 | #include 27 | #include 28 | #include "qgraphicsshadereffect_p.h" 29 | 30 | class QGLShaderProgram; 31 | class GogglesBlurShaderEffect : public QGraphicsShaderEffect 32 | { 33 | Q_OBJECT 34 | public: 35 | GogglesBlurShaderEffect(QObject *parent = 0); 36 | 37 | qreal effectBlurAmount() const; 38 | void setEffectBlurAmount(const qreal& a); 39 | 40 | static QByteArray readShaderSourceCode(const QString& filepath); 41 | 42 | protected: 43 | void setUniforms(QGLShaderProgram *program); 44 | 45 | qreal blurAmt; 46 | }; 47 | 48 | #endif /* GOGGLESBLURSHADEREFFECT_H_ */ 49 | -------------------------------------------------------------------------------- /Src/lunaui/launcher/debugglobal.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2011-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef DEBUGGLOBAL_H_ 23 | #define DEBUGGLOBAL_H_ 24 | 25 | #include 26 | #include 27 | #include 28 | #include 29 | #include 30 | #include 31 | #include 32 | 33 | class QPainter; 34 | namespace DimensionsDebugGlobal 35 | { 36 | 37 | void dbgPaintBoundingRect(QPainter * painter,const QRectF& rect,qint32 color=0); 38 | void dbgPaintBoundingRectWithTranslate(QPainter * painter,const QPointF& translatePainterTo,const QRectF& rect,qint32 color=0); 39 | 40 | } 41 | 42 | QDebug operator<<(QDebug dbg, const QTouchEvent::TouchPoint& s); 43 | //QDebug operator<<(QDebug dbg, const QList * s); 44 | 45 | QDebug myDebug(); 46 | 47 | #endif /* DEBUGGLOBAL_H_ */ 48 | -------------------------------------------------------------------------------- /Src/base/gesture/SingleClickGestureRecognizer.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef SINGLECLICKGESTURERECOGNIZER_H 23 | #define SINGLECLICKGESTURERECOGNIZER_H 24 | 25 | #include "Common.h" 26 | 27 | #include 28 | #include 29 | #include 30 | 31 | class SingleClickGesture; 32 | 33 | class SingleClickGestureRecognizer : public QGestureRecognizer 34 | { 35 | public: 36 | 37 | SingleClickGestureRecognizer() { } 38 | virtual ~SingleClickGestureRecognizer() { } 39 | 40 | virtual QGesture* create (QObject* target); 41 | virtual QGestureRecognizer::Result recognize (QGesture* gesture, QObject* watched, QEvent* event); 42 | virtual void reset (QGesture* gesture); 43 | 44 | static bool g_logSingleClick; 45 | 46 | }; 47 | 48 | #endif // SINGLECLICKGESTURERECOGNIZER_H 49 | -------------------------------------------------------------------------------- /Src/base/visual/ReticleItem.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef RETICLEITEM_H 23 | #define RETICLEITEM_H 24 | 25 | #include "Common.h" 26 | 27 | #include 28 | #include 29 | 30 | class QAnimationGroup; 31 | class QPixmap; 32 | 33 | class ReticleItem : public QGraphicsObject 34 | { 35 | Q_OBJECT 36 | 37 | public: 38 | 39 | ReticleItem(); 40 | virtual ~ReticleItem(); 41 | 42 | void startAt(const QPoint& pos); 43 | 44 | private Q_SLOTS: 45 | 46 | void animationFinished(); 47 | 48 | private: 49 | 50 | virtual QRectF boundingRect () const; 51 | virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem*, QWidget*); 52 | 53 | private: 54 | QPointer m_animation; 55 | int m_width; 56 | int m_height; 57 | QPixmap m_pixmap; 58 | }; 59 | 60 | #endif /* RETICLEITEM_H */ 61 | -------------------------------------------------------------------------------- /Src/ime/KeyLocationRecorder.h: -------------------------------------------------------------------------------- 1 | /* @@@LICENSE 2 | * 3 | * Copyright (c) 2010-2013 LG Electronics, Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | * 17 | * LICENSE@@@ */ 18 | 19 | 20 | 21 | 22 | #ifndef KEYLOCATIONRECORDER_H 23 | #define KEYLOCATIONRECORDER_H 24 | 25 | #include 26 | #include 27 | 28 | #include 29 | #include 30 | #include 31 | #include 32 | 33 | class KeyLocationRecorder 34 | { 35 | public: 36 | KeyLocationRecorder(); 37 | 38 | static KeyLocationRecorder & instance(); 39 | 40 | bool isRecording() const { return m_file != NULL; } 41 | 42 | void startStop(const char * layoutName, const QRect & keymapRect); 43 | void record(const QString & text, const QPoint & where, const QString & altText = QString()); 44 | void keyboardSizeChanged(const char * layoutName, const QRect & keymapRect); 45 | 46 | FILE * m_file; 47 | std::string m_lastMessageID; 48 | }; 49 | 50 | #endif // KEYLOCATIONRECORDER_H 51 | -------------------------------------------------------------------------------- /uiComponents/DockModeTime/Clocks.qml: -------------------------------------------------------------------------------- 1 | import Qt 4.7 2 | 3 | Rectangle { 4 | width: 1024 5 | height: 768 6 | 7 | property bool mainTimerRunning: false 8 | property int isLandscape: (runtime.orientation+1)%2 9 | 10 | Image { 11 | id: bg 12 | source: "../../images/dockmode/time/clock_bg.png" 13 | } 14 | 15 | VisualItemModel{ 16 | id: clockList 17 | AnalogClock{glass: 1; timerRunning: mainTimerRunning} 18 | DigitalClock{timerRunning: mainTimerRunning} 19 | AnalogClock{glass: 0; timerRunning: mainTimerRunning} 20 | } 21 | 22 | ListView { 23 | id: flickable 24 | anchors.fill: parent 25 | focus: true 26 | highlightRangeMode: ListView.StrictlyEnforceRange 27 | orientation: ListView.Horizontal 28 | snapMode: ListView.SnapOneItem 29 | model: clockList 30 | boundsBehavior: Flickable.DragOverBounds 31 | } 32 | 33 | Row { 34 | spacing: 10 35 | anchors.centerIn: parent 36 | anchors.verticalCenterOffset: isLandscape ? 340 : 400 37 | Image { id: clockdot1; source: "../../images/dockmode/time/indicator/"+(flickable.currentIndex==0 ? "on" : "off") + ".png" } 38 | Image { id: clockdot2; source: "../../images/dockmode/time/indicator/"+(flickable.currentIndex==1 ? "on" : "off") + ".png" } 39 | Image { id: clockdot3; source: "../../images/dockmode/time/indicator/"+(flickable.currentIndex==2 ? "on" : "off") + ".png" } 40 | } 41 | } 42 | 43 | 44 | 45 | --------------------------------------------------------------------------------