├── Android.mk ├── README ├── assets └── META-INF │ ├── CERT.RSA │ ├── CERT.SF │ ├── MANIFEST.MF │ └── com │ └── google │ └── android │ ├── aroma-config │ ├── aroma │ ├── ams_sample.txt │ ├── changelog.txt │ ├── custombox_test.edify │ ├── exec_demo │ │ ├── displaycapture │ │ ├── exec_demo1.sh │ │ ├── exec_demo2.sh │ │ └── sleep │ ├── fonts │ │ ├── big.png │ │ └── small.png │ ├── icons │ │ ├── agreement.png │ │ ├── alert.png │ │ ├── apps.png │ │ ├── back.png │ │ ├── confirm.png │ │ ├── customize.png │ │ ├── default.png │ │ ├── finish.png │ │ ├── info.png │ │ ├── install.png │ │ ├── installbutton.png │ │ ├── license.png │ │ ├── menu.png │ │ ├── next.png │ │ ├── personalize.png │ │ ├── update.png │ │ └── welcome.png │ ├── langs │ │ ├── cn.lang │ │ ├── de.lang │ │ ├── en.lang │ │ ├── es.lang │ │ ├── fr.lang │ │ ├── he.lang │ │ ├── id.lang │ │ ├── it.lang │ │ ├── ja.lang │ │ └── ru.lang │ ├── language_select.edify │ ├── license.txt │ ├── sample.png │ ├── splash │ │ ├── a1.png │ │ ├── a2.png │ │ ├── a3.png │ │ ├── a4.png │ │ ├── a5.png │ │ └── a6.png │ ├── themes │ │ ├── franzyroy │ │ │ ├── bg.png │ │ │ ├── button.9.png │ │ │ ├── button_focus.9.png │ │ │ ├── button_press.9.png │ │ │ ├── cb.png │ │ │ ├── cb_focus.png │ │ │ ├── cb_on.png │ │ │ ├── cb_on_focus.png │ │ │ ├── cb_on_press.png │ │ │ ├── cb_press.png │ │ │ ├── dialog.9.png │ │ │ ├── dialog_titlebar.9.png │ │ │ ├── font.roboto.big.png │ │ │ ├── font.roboto.small.png │ │ │ ├── icon.agreement.png │ │ │ ├── icon.alert.png │ │ │ ├── icon.apps.png │ │ │ ├── icon.back.png │ │ │ ├── icon.customize.png │ │ │ ├── icon.default.png │ │ │ ├── icon.exit.png │ │ │ ├── icon.info.png │ │ │ ├── icon.install.png │ │ │ ├── icon.license.png │ │ │ ├── icon.menu.png │ │ │ ├── icon.next.png │ │ │ ├── icon.personalize.png │ │ │ ├── icon.update.png │ │ │ ├── icon.welcome.png │ │ │ ├── list.9.png │ │ │ ├── navbar.9.png │ │ │ ├── radio.png │ │ │ ├── radio_focus.png │ │ │ ├── radio_on.png │ │ │ ├── radio_on_focus.png │ │ │ ├── radio_on_press.png │ │ │ ├── radio_press.png │ │ │ ├── theme.prop │ │ │ └── titlebar.9.png │ │ ├── ics │ │ │ ├── bg.png │ │ │ ├── button.9.png │ │ │ ├── button_focus.9.png │ │ │ ├── button_press.9.png │ │ │ ├── cb.png │ │ │ ├── cb_focus.png │ │ │ ├── cb_on.png │ │ │ ├── cb_on_focus.png │ │ │ ├── cb_on_press.png │ │ │ ├── cb_press.png │ │ │ ├── dialog.9.png │ │ │ ├── dialog_titlebar.9.png │ │ │ ├── font.roboto.big.png │ │ │ ├── font.roboto.small.png │ │ │ ├── icon.agreement.png │ │ │ ├── icon.alert.png │ │ │ ├── icon.apps.png │ │ │ ├── icon.back.png │ │ │ ├── icon.confirm.png │ │ │ ├── icon.customize.png │ │ │ ├── icon.default.png │ │ │ ├── icon.info.png │ │ │ ├── icon.install.png │ │ │ ├── icon.license.png │ │ │ ├── icon.menu.png │ │ │ ├── icon.next.png │ │ │ ├── icon.personalize.png │ │ │ ├── icon.update.png │ │ │ ├── icon.welcome.png │ │ │ ├── list.9.png │ │ │ ├── navbar.9.png │ │ │ ├── radio.png │ │ │ ├── radio_focus.png │ │ │ ├── radio_on.png │ │ │ ├── radio_on_focus.png │ │ │ ├── radio_on_press.png │ │ │ ├── radio_press.png │ │ │ ├── theme.prop │ │ │ └── titlebar.9.png │ │ ├── miui │ │ │ ├── button.9.png │ │ │ ├── button_focus.9.png │ │ │ ├── button_press.9.png │ │ │ ├── cb.png │ │ │ ├── cb_on.png │ │ │ ├── cb_on_sel.png │ │ │ ├── cb_sel.png │ │ │ ├── dialog.9.png │ │ │ ├── dialog_titlebar.9.png │ │ │ ├── font.roboto.big.png │ │ │ ├── font.roboto.small.png │ │ │ ├── icon.agreement.png │ │ │ ├── icon.alert.png │ │ │ ├── icon.apps.png │ │ │ ├── icon.back.png │ │ │ ├── icon.confirm.png │ │ │ ├── icon.customize.png │ │ │ ├── icon.default.png │ │ │ ├── icon.info.png │ │ │ ├── icon.install.png │ │ │ ├── icon.license.png │ │ │ ├── icon.menu.png │ │ │ ├── icon.next.png │ │ │ ├── icon.personalize.png │ │ │ ├── icon.update.png │ │ │ ├── icon.welcome.png │ │ │ ├── nav.9.png │ │ │ ├── radio.png │ │ │ ├── radio_on.png │ │ │ ├── radio_on_sel.png │ │ │ ├── radio_sel.png │ │ │ ├── select.9.png │ │ │ ├── select_push.9.png │ │ │ ├── theme.prop │ │ │ └── titlebar.9.png │ │ ├── miui4 │ │ │ ├── bg.png │ │ │ ├── button.9.png │ │ │ ├── button_focus.9.png │ │ │ ├── button_press.9.png │ │ │ ├── cb.png │ │ │ ├── cb_focus.png │ │ │ ├── cb_on.png │ │ │ ├── cb_on_focus.png │ │ │ ├── cb_on_press.png │ │ │ ├── cb_press.png │ │ │ ├── dialog.9.png │ │ │ ├── dialog_titlebar.9.png │ │ │ ├── font.roboto.big.png │ │ │ ├── font.roboto.small.png │ │ │ ├── icon.agreement.png │ │ │ ├── icon.alert.png │ │ │ ├── icon.apps.png │ │ │ ├── icon.back.png │ │ │ ├── icon.confirm.png │ │ │ ├── icon.customize.png │ │ │ ├── icon.default.png │ │ │ ├── icon.info.png │ │ │ ├── icon.install.png │ │ │ ├── icon.license.png │ │ │ ├── icon.menu.png │ │ │ ├── icon.next.png │ │ │ ├── icon.personalize.png │ │ │ ├── icon.update.png │ │ │ ├── icon.welcome.png │ │ │ ├── list.9.png │ │ │ ├── navbar.png │ │ │ ├── radio.png │ │ │ ├── radio_focus.png │ │ │ ├── radio_on.png │ │ │ ├── radio_on_focus.png │ │ │ ├── radio_on_press.png │ │ │ ├── radio_press.png │ │ │ ├── theme.prop │ │ │ └── titlebar.9.png │ │ └── touchwiz │ │ │ ├── bg.png │ │ │ ├── button.9.png │ │ │ ├── button_focus.9.png │ │ │ ├── button_press.9.png │ │ │ ├── cb.png │ │ │ ├── cb_focus.png │ │ │ ├── cb_on.png │ │ │ ├── cb_on_focus.png │ │ │ ├── cb_on_press.png │ │ │ ├── cb_press.png │ │ │ ├── dialog.9.png │ │ │ ├── dialog_titlebar.9.png │ │ │ ├── font.roboto.big.png │ │ │ ├── font.roboto.small.png │ │ │ ├── icon.agreement.png │ │ │ ├── icon.alert.png │ │ │ ├── icon.apps.png │ │ │ ├── icon.back.png │ │ │ ├── icon.confirm.png │ │ │ ├── icon.customize.png │ │ │ ├── icon.default.png │ │ │ ├── icon.exit.png │ │ │ ├── icon.info.png │ │ │ ├── icon.install.png │ │ │ ├── icon.installbutton.png │ │ │ ├── icon.license.png │ │ │ ├── icon.menu.png │ │ │ ├── icon.modem.png │ │ │ ├── icon.next.png │ │ │ ├── icon.personalize.png │ │ │ ├── icon.reboot.png │ │ │ ├── icon.recovery.png │ │ │ ├── icon.update.png │ │ │ ├── icon.welcome.png │ │ │ ├── list.9.png │ │ │ ├── navbar.png │ │ │ ├── radio.png │ │ │ ├── radio_focus.png │ │ │ ├── radio_on.png │ │ │ ├── radio_on_focus.png │ │ │ ├── radio_on_press.png │ │ │ ├── radio_press.png │ │ │ ├── theme.prop │ │ │ └── titlebar.9.png │ ├── ttf │ │ ├── DroidSans.ttf │ │ ├── DroidSansArabic.ttf │ │ ├── DroidSansFallback.ttf │ │ └── Roboto-Regular.ttf │ └── unicode │ │ ├── chinesse.txt │ │ └── russian_latin.txt │ ├── update-binary-installer │ └── updater-script ├── clean.bat ├── deploy.bat ├── include ├── freetype │ ├── config │ │ ├── ftconfig.h │ │ ├── ftheader.h │ │ ├── ftmodule.h │ │ ├── ftoption.h │ │ └── ftstdlib.h │ ├── freetype.h │ ├── ftadvanc.h │ ├── ftbbox.h │ ├── ftbdf.h │ ├── ftbitmap.h │ ├── ftcache.h │ ├── ftchapters.h │ ├── ftcid.h │ ├── fterrdef.h │ ├── fterrors.h │ ├── ftgasp.h │ ├── ftglyph.h │ ├── ftgxval.h │ ├── ftgzip.h │ ├── ftimage.h │ ├── ftincrem.h │ ├── ftlcdfil.h │ ├── ftlist.h │ ├── ftlzw.h │ ├── ftmac.h │ ├── ftmm.h │ ├── ftmodapi.h │ ├── ftmoderr.h │ ├── ftotval.h │ ├── ftoutln.h │ ├── ftpfr.h │ ├── ftrender.h │ ├── ftsizes.h │ ├── ftsnames.h │ ├── ftstroke.h │ ├── ftsynth.h │ ├── ftsystem.h │ ├── fttrigon.h │ ├── fttypes.h │ ├── ftwinfnt.h │ ├── ftxf86.h │ ├── internal │ │ ├── autohint.h │ │ ├── ftcalc.h │ │ ├── ftdebug.h │ │ ├── ftdriver.h │ │ ├── ftgloadr.h │ │ ├── ftmemory.h │ │ ├── ftobjs.h │ │ ├── ftpic.h │ │ ├── ftrfork.h │ │ ├── ftserv.h │ │ ├── ftstream.h │ │ ├── fttrace.h │ │ ├── ftvalid.h │ │ ├── internal.h │ │ ├── pcftypes.h │ │ ├── psaux.h │ │ ├── pshints.h │ │ ├── services │ │ │ ├── svbdf.h │ │ │ ├── svcid.h │ │ │ ├── svgldict.h │ │ │ ├── svgxval.h │ │ │ ├── svkern.h │ │ │ ├── svmm.h │ │ │ ├── svotval.h │ │ │ ├── svpfr.h │ │ │ ├── svpostnm.h │ │ │ ├── svpscmap.h │ │ │ ├── svpsinfo.h │ │ │ ├── svsfnt.h │ │ │ ├── svttcmap.h │ │ │ ├── svtteng.h │ │ │ ├── svttglyf.h │ │ │ ├── svwinfnt.h │ │ │ └── svxf86nm.h │ │ ├── sfnt.h │ │ ├── t1types.h │ │ └── tttypes.h │ ├── t1tables.h │ ├── ttnameid.h │ ├── tttables.h │ ├── tttags.h │ └── ttunpat.h ├── ft2build.h ├── minutf8.h ├── png.h ├── pngconf.h ├── zconf.h └── zlib.h ├── libs ├── freetype │ ├── autofit │ │ ├── afangles.c │ │ ├── afangles.h │ │ ├── afcjk.c │ │ ├── afcjk.h │ │ ├── afdummy.c │ │ ├── afdummy.h │ │ ├── aferrors.h │ │ ├── afglobal.c │ │ ├── afglobal.h │ │ ├── afhints.c │ │ ├── afhints.h │ │ ├── afindic.c │ │ ├── afindic.h │ │ ├── aflatin.c │ │ ├── aflatin.h │ │ ├── aflatin2.c │ │ ├── aflatin2.h │ │ ├── afloader.c │ │ ├── afloader.h │ │ ├── afmodule.c │ │ ├── afmodule.h │ │ ├── afpic.c │ │ ├── afpic.h │ │ ├── aftypes.h │ │ ├── afwarp.c │ │ ├── afwarp.h │ │ └── autofit.c │ ├── base │ │ ├── basepic.c │ │ ├── basepic.h │ │ ├── ftadvanc.c │ │ ├── ftapi.c │ │ ├── ftbase.c │ │ ├── ftbase.h │ │ ├── ftbbox.c │ │ ├── ftbitmap.c │ │ ├── ftcalc.c │ │ ├── ftdbgmem.c │ │ ├── ftdebug.c │ │ ├── ftfstype.c │ │ ├── ftgasp.c │ │ ├── ftgloadr.c │ │ ├── ftglyph.c │ │ ├── ftinit.c │ │ ├── ftlcdfil.c │ │ ├── ftmm.c │ │ ├── ftobjs.c │ │ ├── ftoutln.c │ │ ├── ftpatent.c │ │ ├── ftpic.c │ │ ├── ftrfork.c │ │ ├── ftsnames.c │ │ ├── ftstream.c │ │ ├── ftstroke.c │ │ ├── ftsynth.c │ │ ├── ftsystem.c │ │ ├── fttrigon.c │ │ ├── fttype1.c │ │ ├── ftutil.c │ │ ├── ftwinfnt.c │ │ └── ftxf86.c │ ├── cache │ │ ├── ftcbasic.c │ │ ├── ftccache.c │ │ ├── ftccache.h │ │ ├── ftccback.h │ │ ├── ftccmap.c │ │ ├── ftcglyph.c │ │ ├── ftcglyph.h │ │ ├── ftcmanag.h │ │ ├── ftcmru.c │ │ ├── ftcsbits.c │ │ └── ftcsbits.h │ ├── cff │ │ ├── cff.c │ │ ├── cffcmap.c │ │ ├── cffcmap.h │ │ ├── cffdrivr.c │ │ ├── cffdrivr.h │ │ ├── cfferrs.h │ │ ├── cffgload.c │ │ ├── cffgload.h │ │ ├── cffload.c │ │ ├── cffload.h │ │ ├── cffobjs.c │ │ ├── cffobjs.h │ │ ├── cffparse.c │ │ ├── cffparse.h │ │ ├── cffpic.c │ │ ├── cffpic.h │ │ ├── cfftoken.h │ │ └── cfftypes.h │ ├── pfr │ │ └── pfrload.c │ ├── psaux │ │ ├── afmparse.c │ │ ├── afmparse.h │ │ ├── psaux.c │ │ ├── psauxerr.h │ │ ├── psauxmod.c │ │ ├── psauxmod.h │ │ ├── psconv.c │ │ ├── psconv.h │ │ ├── psobjs.c │ │ ├── psobjs.h │ │ ├── t1cmap.c │ │ ├── t1cmap.h │ │ ├── t1decode.c │ │ └── t1decode.h │ ├── pshinter │ │ ├── pshalgo.c │ │ ├── pshalgo.h │ │ ├── pshglob.c │ │ ├── pshglob.h │ │ ├── pshinter.c │ │ ├── pshmod.c │ │ ├── pshmod.h │ │ ├── pshnterr.h │ │ ├── pshpic.c │ │ ├── pshpic.h │ │ ├── pshrec.c │ │ └── pshrec.h │ ├── psnames │ │ ├── psmodule.c │ │ ├── psmodule.h │ │ ├── psnamerr.h │ │ ├── psnames.c │ │ ├── pspic.c │ │ ├── pspic.h │ │ └── pstables.h │ ├── raster │ │ ├── ftmisc.h │ │ ├── ftraster.c │ │ ├── ftraster.h │ │ ├── ftrend1.c │ │ ├── ftrend1.h │ │ ├── raster.c │ │ ├── rasterrs.h │ │ ├── rastpic.c │ │ └── rastpic.h │ ├── sfnt │ │ ├── sfdriver.c │ │ ├── sfdriver.h │ │ ├── sferrors.h │ │ ├── sfnt.c │ │ ├── sfntpic.c │ │ ├── sfntpic.h │ │ ├── sfobjs.c │ │ ├── sfobjs.h │ │ ├── ttbdf.c │ │ ├── ttbdf.h │ │ ├── ttcmap.c │ │ ├── ttcmap.h │ │ ├── ttcmapc.h │ │ ├── ttkern.c │ │ ├── ttkern.h │ │ ├── ttload.c │ │ ├── ttload.h │ │ ├── ttmtx.c │ │ ├── ttmtx.h │ │ ├── ttpost.c │ │ ├── ttpost.h │ │ ├── ttsbit.c │ │ ├── ttsbit.h │ │ └── ttsbit0.c │ ├── smooth │ │ ├── ftgrays.c │ │ ├── ftgrays.h │ │ ├── ftsmerrs.h │ │ ├── ftsmooth.c │ │ ├── ftsmooth.h │ │ ├── ftspic.c │ │ ├── ftspic.h │ │ └── smooth.c │ └── truetype │ │ ├── truetype.c │ │ ├── ttdriver.c │ │ ├── ttdriver.h │ │ ├── tterrors.h │ │ ├── ttgload.c │ │ ├── ttgload.h │ │ ├── ttgxvar.c │ │ ├── ttgxvar.h │ │ ├── ttinterp.c │ │ ├── ttinterp.h │ │ ├── ttobjs.c │ │ ├── ttobjs.h │ │ ├── ttpic.c │ │ ├── ttpic.h │ │ ├── ttpload.c │ │ ├── ttpload.h │ │ ├── ttsubpix.c │ │ └── ttsubpix.h ├── minutf8 │ └── minutf8.c ├── minzip │ ├── Bits.h │ ├── DirUtil.c │ ├── DirUtil.h │ ├── Hash.c │ ├── Hash.h │ ├── Inlines.c │ ├── Log.h │ ├── SysUtil.c │ ├── SysUtil.h │ ├── Zip.c │ ├── Zip.h │ ├── inline_magic.h │ └── safe_iop.h ├── png │ ├── png.c │ ├── png_read_filter_row_neon.s │ ├── pngerror.c │ ├── pnggccrd.c │ ├── pngget.c │ ├── pngmem.c │ ├── pngpread.c │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngtrans.c │ ├── pngusr.h │ └── pngvcrd.c └── zlib │ ├── adler32.c │ ├── adler32_arm.c │ ├── crc32.c │ ├── crc32.h │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inflate_fast_copy_neon.s │ ├── inftrees.c │ ├── inftrees.h │ ├── zutil.c │ └── zutil.h ├── make.bat ├── makeall.bat ├── out └── out_folder.txt ├── push.bat ├── src ├── aroma.h ├── aroma_mem.h ├── controls │ ├── aroma_control_button.c │ ├── aroma_control_check.c │ ├── aroma_control_checkbox.c │ ├── aroma_control_checkopt.c │ ├── aroma_control_imgbutton.c │ ├── aroma_control_menubox.c │ ├── aroma_control_optbox.c │ ├── aroma_control_textbox.c │ ├── aroma_control_threads.c │ └── aroma_controls.c ├── edify │ ├── expr.c │ ├── expr.h │ ├── lex.yy.c │ ├── lexer.l │ ├── parser.c │ ├── parser.h │ ├── parser.y │ └── yydefs.h ├── libs │ ├── aroma_array.c │ ├── aroma_freetype.c │ ├── aroma_graph.c │ ├── aroma_input.c │ ├── aroma_languages.c │ ├── aroma_libs.c │ ├── aroma_memory.c │ ├── aroma_png.c │ ├── aroma_zip.c │ ├── input │ │ ├── input_device.c │ │ ├── input_driver.c │ │ └── input_translate │ │ │ ├── translate_keyboard.c │ │ │ └── translate_touch.c │ └── neon │ │ └── blt_neon.c └── main │ ├── aroma.c │ ├── aroma_installer.c │ └── aroma_ui.c └── tools ├── 7z.dll ├── 7z.exe ├── 7z.sfx ├── 7zCon.sfx ├── AStyle.exe ├── android_building.sh └── beauty.bat /assets/META-INF/CERT.RSA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/CERT.RSA -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/exec_demo/displaycapture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/exec_demo/displaycapture -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/exec_demo/exec_demo1.sh: -------------------------------------------------------------------------------- 1 | #!/sbin/sh 2 | # #!/system/bin/sh 3 | 4 | echo "Listing Root Directory:" 5 | ls / 6 | echo " " 7 | 8 | echo "Running ls -l /" 9 | ls -l / 10 | echo " " 11 | 12 | echo "Mounting /sdcard" 13 | mount -t auto /sdcard 14 | echo " " 15 | 16 | echo "Listing /sdcard" 17 | ls /sdcard 18 | echo " " 19 | 20 | echo "Mounting /system" 21 | mount -t auto /system 22 | echo " " 23 | 24 | echo "Listing /system" 25 | ls /system 26 | echo " " 27 | 28 | echo "Mounting /data" 29 | mount -t auto /data 30 | echo " " 31 | 32 | echo "Listing /data" 33 | ls /data 34 | echo " " 35 | 36 | echo "Mounting /sd-ext" 37 | mount -t auto /sd-ext 38 | echo " " 39 | 40 | echo "Listing /sd-ext" 41 | ls /sd-ext 42 | echo " " 43 | 44 | echo "Running df" 45 | df 46 | echo " " 47 | 48 | echo "Running ps" 49 | ps 50 | echo " " 51 | echo " " 52 | 53 | echo "Shell Finished" 54 | 55 | #-- Exit Code 56 | exit 10 -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/exec_demo/exec_demo2.sh: -------------------------------------------------------------------------------- 1 | #!/sbin/sh 2 | # #!/system/bin/sh 3 | 4 | echo "Evironment Variable Demo" 5 | echo "UPDATE_PACKAGE: $UPDATE_PACKAGE" 6 | echo "AROMA_TMP: $AROMA_TMP" 7 | echo "AROMA_NAME: $AROMA_NAME" 8 | echo "AROMA_COPY: $AROMA_COPY" 9 | echo "AROMA_VERSION: $AROMA_VERSION" 10 | echo "AROMA_BUILD: $AROMA_BUILD" 11 | echo "AROMA_BUILD_CN: $AROMA_BUILD_CN" 12 | echo "PATH: $PATH" 13 | echo " " 14 | 15 | echo "default.prop value" 16 | cat /default.prop 17 | 18 | 19 | #-- Exit Code 20 | exit 0 -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/exec_demo/sleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/exec_demo/sleep -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/fonts/big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/fonts/big.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/fonts/small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/fonts/small.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/agreement.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/alert.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/apps.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/back.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/confirm.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/customize.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/default.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/finish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/finish.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/info.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/install.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/installbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/installbutton.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/license.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/menu.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/next.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/personalize.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/update.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/icons/welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/icons/welcome.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/langs/cn.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 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 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : 简体中文 20 | # By : amarullz + google translate + 魂客(kinghunki) 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=确定 27 | text_next=下一步 28 | text_back=返回 29 | text_yes=同意 30 | text_no=放弃 31 | text_about=关于 32 | text_calibrating=屏幕校准 33 | text_quit=退出安装 34 | text_quit_msg=你确定要退出安装吗? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=到您的 40 | 41 | langtest.title=语言测试 42 | langtest.multiline=这个简体中文文件在:langs/cn.lang\ 43 | 如果你有更好的解释,请自行打开.lang文件修改其中内容。 44 | 45 | 感谢amarullz 提供的智能刷机脚本。 46 | 感谢您使用 AROMA Installer智能刷机脚本。 47 | 48 | #-- End of string without any backslash for multiline text 49 | 50 | 51 | themes.title=选择主题 52 | themes.desc=要在此安装测试使用,请选择安装的主题: 53 | 54 | welcome.title=欢迎 55 | welcome.text1=你即将安装 56 | welcome.text2=AROMA Installer 是第一也是唯一的触摸选择刷机过程的智能脚本. 57 | welcome.version=ROM 版本 58 | welcome.codename=定制作者 59 | welcome.updated=更新日期 60 | welcome.next=按下一步继续安装... 61 | 62 | terms.title=条款和许可 63 | terms.desc=请仔细阅读仔细的AROMA安装条款和以下许可. 64 | terms.check=我同意本条款及许可... 65 | terms.confirm=请认真阅读协议并同意... 66 | 67 | changelog.title=更新日志 68 | changelog.desc=关于更新说明 69 | -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/langs/de.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 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 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : German 20 | # By : Kalashnikitty (Midian666) 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=OK 27 | text_next=Weiter 28 | text_back=Zurück 29 | text_yes=Ja 30 | text_no=Nein 31 | text_about=Über 32 | text_calibrating=Kalibrierung 33 | text_quit=Installation beenden 34 | text_quit_msg=Installer wirklich beenden? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=für 40 | 41 | langtest.title=Sprach Test 42 | langtest.multiline=Dieser Text ist in/de.lang\ 43 | Benutze Backslash, bevor du eine neue Zeile beginnst \ 44 | \ 45 | Möglich sind auch Formatierungen innerhalb eines Textes.\ 46 | \ 47 | Danke das du den AROMA Installer benutzt. 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=Thema wählen 53 | themes.desc=Bitte wähle das Installations Thema, welches du während der Installation testen möchtest: 54 | 55 | welcome.title=Willkommen 56 | welcome.text1=Du bist dabei zu Installieren 57 | welcome.text2=Der AROMA Installer war das erste und das einzige anpassbare Touch Installer für ANDROID der Welt. 58 | welcome.version=VERSION 59 | welcome.codename=CODENAME 60 | welcome.updated=AKTUALISIERT 61 | welcome.next=Weiter drücken, um mit der Installation fortzufahren... 62 | 63 | terms.title=AGB 64 | terms.desc=Bitte lese dir die AGB für den AROMA Installer genau durch. 65 | terms.check=Ich stimme den AGBs zu... 66 | terms.confirm=Eingabe überprüfen... 67 | 68 | changelog.title=Changelog 69 | changelog.desc=AROMA Installer Changelog -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/langs/en.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 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 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : English 20 | # By : amarullz 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=OK 27 | text_next=Next 28 | text_back=Back 29 | text_yes=Yes 30 | text_no=No 31 | text_about=About 32 | text_calibrating=Calibrating Tools 33 | text_quit=Quit Installation 34 | text_quit_msg=Are you sure to quit the installer? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=for 40 | 41 | langtest.title=Language Test 42 | langtest.multiline=This text is located in langs/en.lang\ 43 | Use backslash before enter to add new line\ 44 | \ 45 | You can also do Formatting inside the language string resource.\ 46 | \ 47 | Thanks for using AROMA Installer 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=Select Theme 53 | themes.desc=Please select installer theme that you want to use in this installation test: 54 | 55 | welcome.title=Welcome 56 | welcome.text1=You are about to Installing 57 | welcome.text2=AROMA Installer was the first and the only Touch and Customizable ANDROID ROM Installer in the World. 58 | welcome.version=VERSION 59 | welcome.codename=CODENAME 60 | welcome.updated=UPDATED 61 | welcome.next=Press Next to Continue the Installation... 62 | 63 | terms.title=Terms and Conditions 64 | terms.desc=Please read carefully The AROMA Installer Terms and Conditions Below. 65 | terms.check=I Agree with this Terms and Conditions... 66 | terms.confirm=Please check the agreement... 67 | 68 | changelog.title=Changelog 69 | changelog.desc=AROMA Installer Changelog 70 | -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/langs/he.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 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 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : English 20 | # By : amarullz 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=אישור 27 | text_next=הבא 28 | text_back=הקודם 29 | text_yes=כן 30 | text_no=לא 31 | text_about=אודות 32 | text_calibrating=כלים לכיול 33 | text_quit=צא מההתקנה 34 | text_quit_msg=האם אתה בטוח שאתה רוצה לצאת מההתקנה? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=עבור 40 | 41 | langtest.title=בדיקת שפה 42 | langtest.multiline=הטקסט הזה נמצא ב- langs/en.lang\ 43 | השתמש בבקסלאש לפני אנטר בשביל לעבור לשורה חדשה\ 44 | \ 45 | אתה גם יכול לפרמט בתוך מאגר הנתונים של השפה.\ 46 | \ 47 | תודה לך עבור השימוש בהתקנת ארומה. 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=בחר ערכת נושא 53 | themes.desc=אנא בחר ערכת נושא שתרצה להשתמש בבדיקת ההתקנה: 54 | 55 | welcome.title=ברוכים הבאים 56 | welcome.text1=אתה עומד להתקין את 57 | welcome.text2=התקנת ארומה היא ההתקנה הראשונה והיחידה שמאפשרת התקנת מגע מותאמת אישית. 58 | welcome.version=גירסא 59 | welcome.codename=CODENAME 60 | welcome.updated=מעודכן 61 | welcome.next=לחץ הבא כדי להמשיך בהתקנה... 62 | 63 | terms.title=תנאי שימוש 64 | terms.desc=נא לקרוא בעיון את מתקין ארומה תנאי שימוש להלן. 65 | terms.check=אני מסכים לתנאי שימוש אלו... 66 | terms.confirm=נא סמן את ההסכמה... 67 | 68 | changelog.title=דוח שינויים 69 | changelog.desc=דוח שינויים של התקנת ארומה 70 | -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/langs/ja.lang: -------------------------------------------------------------------------------- 1 | ### LICENSE: 2 | # 3 | # Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 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 | ### LANGUAGE STRING RESOURCE FILE 18 | # 19 | # Language : Japanese(日本語) 20 | # By : @WedyDQ10 21 | # 22 | 23 | # 24 | #--- COMMON SYSTEM STRING RESOURCE 25 | # 26 | text_ok=OK 27 | text_next=次へ 28 | text_back=前へ 29 | text_yes=はい 30 | text_no=いいえ 31 | text_about=AROMAについて 32 | text_calibrating=調整ツール 33 | text_quit=インストールの中断 34 | text_quit_msg=インストールを中断しますか? 35 | 36 | # 37 | #-- CUSTOM STRING RESOURCE 38 | # 39 | common.for=for 40 | 41 | langtest.title=言語テスト 42 | langtest.multiline=このテキストは langs/ja.langに書かれています。\ 43 | 改行するにはバックスラッシュを入れてください。\ 44 | \ 45 | 言語リソースではフォーマットすることもできます。\ 46 | \ 47 | AROMAインストーラをお使いいただきありがとうございます。 48 | 49 | #-- End of string without any backslash for multiline text 50 | 51 | 52 | themes.title=テーマの選択 53 | themes.desc=インストールテストで使うテーマを選んでください: 54 | 55 | welcome.title=ようこそ 56 | welcome.text1=インストール内容:\ 57 | welcome.text2=AROMAインストーラは世界初の、タッチ操作とカスタマイズができるANDROID ROMインストーラです。 58 | welcome.version=バージョン 59 | welcome.codename=コードネーム 60 | welcome.updated=更新日時 61 | welcome.next=「次へ」をタップするとインストール操作を開始します... 62 | 63 | terms.title=利用規約 64 | terms.desc=以下のAROMAインストーラの利用規約をお読みください。 65 | terms.check=利用規約に同意します... 66 | terms.confirm=チェックしてください... 67 | 68 | changelog.title=更新履歴 69 | changelog.desc=AROMAインストーラの更新履歴です 70 | -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/sample.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/splash/a1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/splash/a1.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/splash/a2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/splash/a2.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/splash/a3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/splash/a3.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/splash/a4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/splash/a4.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/splash/a5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/splash/a5.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/splash/a6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/splash/a6.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/bg.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/button.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/button_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/button_focus.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/button_press.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/cb.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/cb_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/cb_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/cb_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/cb_on.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/cb_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/cb_on_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/cb_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/cb_on_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/cb_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/cb_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/dialog.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/dialog_titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/dialog_titlebar.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/font.roboto.big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/font.roboto.big.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/font.roboto.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/font.roboto.small.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.agreement.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.alert.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.apps.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.back.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.customize.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.default.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.exit.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.info.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.install.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.license.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.menu.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.next.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.personalize.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.update.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/icon.welcome.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/list.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/list.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/navbar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/navbar.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/radio.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/radio_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/radio_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/radio_on.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/radio_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/radio_on_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/radio_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/radio_on_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/radio_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/radio_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/theme.prop: -------------------------------------------------------------------------------- 1 | img.background=bg 2 | img.titlebar=titlebar.9 3 | img.navbar=navbar.9 4 | img.dialog=dialog.9 5 | img.dialog.titlebar=dialog_titlebar.9 6 | img.progress=button.9 7 | img.prograss.fill=button_press.9 8 | img.selection=list.9 9 | img.selection.push=list.9 10 | img.button=button.9 11 | img.button.focus=button_focus.9 12 | img.button.push=button_press.9 13 | img.checkbox=cb 14 | img.checkbox.focus=cb_focus 15 | img.checkbox.push=cb_press 16 | img.checkbox.on=cb_on 17 | img.checkbox.on.focus=cb_on_focus 18 | img.checkbox.on.push=cb_on_press 19 | img.radio=radio 20 | img.radio.focus=radio_focus 21 | img.radio.push=radio_press 22 | img.radio.on=radio_on 23 | img.radio.on.focus=radio_on_focus 24 | img.radio.on.push=radio_on_press 25 | 26 | 27 | color.winbg = #000 28 | color.winbg_g = #444 29 | color.winfg = #fff 30 | color.winfg_gray = #666 31 | color.dialogbg = #000 32 | color.dialogbg_g = #444 33 | color.dialogfg = #fff 34 | color.textbg = #000 35 | color.textfg = #fff 36 | color.textfg_gray = #aaa 37 | color.controlbg = #999 38 | color.controlbg_g = #999 39 | color.controlfg = #000000 40 | color.selectbg = #33B5E5 41 | color.selectbg_g = #33B5E5 42 | color.selectfg = #fff 43 | color.titlebg = #33B5E5 44 | color.titlebg_g = #33B5E5 45 | color.titlefg = #0E004A 46 | color.dlgtitlebg = #fff 47 | color.dlgtitlebg_g = #33B5E5 48 | color.dlgtitlefg = #808080 49 | color.scrollbar = #06F7FB 50 | color.navbg = #33B5E5 51 | color.navbg_g = #33B5E5 52 | color.border = #666 53 | color.border_g = #666 54 | color.progressglow = #33B5E5 55 | 56 | config.roundsize = 1 57 | config.button_roundsize = 1 58 | config.window_roundsize = 1 59 | config.transition_frame = 5 60 | 61 | font.small = font.roboto.small 62 | font.big = font.roboto.big 63 | 64 | 65 | info.themename = BlueSky 66 | info.description = BlueSky Theme for AROMA Installer 67 | info.author = Franzyroy -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/franzyroy/titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/franzyroy/titlebar.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/bg.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/button.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/button_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/button_focus.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/button_press.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/cb.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/cb_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/cb_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/cb_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/cb_on.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/cb_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/cb_on_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/cb_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/cb_on_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/cb_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/cb_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/dialog.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/dialog_titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/dialog_titlebar.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/font.roboto.big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/font.roboto.big.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/font.roboto.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/font.roboto.small.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.agreement.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.alert.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.apps.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.back.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.confirm.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.customize.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.default.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.info.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.install.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.license.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.menu.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.next.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.personalize.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.update.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/icon.welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/icon.welcome.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/list.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/list.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/navbar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/navbar.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/radio.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/radio_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/radio_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/radio_on.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/radio_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/radio_on_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/radio_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/radio_on_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/radio_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/radio_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/theme.prop: -------------------------------------------------------------------------------- 1 | img.background=bg 2 | img.titlebar=titlebar.9 3 | img.navbar=navbar.9 4 | img.dialog=dialog.9 5 | img.dialog.titlebar=dialog_titlebar.9 6 | img.progress=button.9 7 | img.prograss.fill=button_press.9 8 | img.selection=list.9 9 | img.selection.push=list.9 10 | img.button=button.9 11 | img.button.focus=button_focus.9 12 | img.button.push=button_press.9 13 | img.checkbox=cb 14 | img.checkbox.focus=cb_focus 15 | img.checkbox.push=cb_press 16 | img.checkbox.on=cb_on 17 | img.checkbox.on.focus=cb_on_focus 18 | img.checkbox.on.push=cb_on_press 19 | img.radio=radio 20 | img.radio.focus=radio_focus 21 | img.radio.push=radio_press 22 | img.radio.on=radio_on 23 | img.radio.on.focus=radio_on_focus 24 | img.radio.on.push=radio_on_press 25 | 26 | 27 | color.winbg = #000 28 | color.winbg_g = #444 29 | color.winfg = #fff 30 | color.winfg_gray = #666 31 | color.dialogbg = #000 32 | color.dialogbg_g = #444 33 | color.dialogfg = #fff 34 | color.textbg = #000 35 | color.textfg = #fff 36 | color.textfg_gray = #aaa 37 | color.controlbg = #999 38 | color.controlbg_g = #999 39 | color.controlfg = #fff 40 | color.selectbg = #33B5E5 41 | color.selectbg_g = #33B5E5 42 | color.selectfg = #fff 43 | color.titlebg = #000 44 | color.titlebg_g = #000 45 | color.titlefg = #fff 46 | color.dlgtitlebg = #fff 47 | color.dlgtitlebg_g = #000 48 | color.dlgtitlefg = #fff 49 | color.scrollbar = #ccc 50 | color.navbg = #000 51 | color.navbg_g = #000 52 | color.border = #666 53 | color.border_g = #666 54 | color.progressglow = #33B5E5 55 | 56 | config.roundsize = 1 57 | config.button_roundsize = 1 58 | config.window_roundsize = 1 59 | config.transition_frame = 5 60 | 61 | font.small = font.roboto.small 62 | font.big = font.roboto.big 63 | 64 | 65 | info.themename = ICS 66 | info.description = ICS Theme for AROMA Installer 67 | info.author = DemonWav & amarullz -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/ics/titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/ics/titlebar.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/button.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/button_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/button_focus.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/button_press.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/cb.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/cb_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/cb_on.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/cb_on_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/cb_on_sel.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/cb_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/cb_sel.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/dialog.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/dialog_titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/dialog_titlebar.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/font.roboto.big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/font.roboto.big.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/font.roboto.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/font.roboto.small.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.agreement.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.alert.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.apps.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.back.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.confirm.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.customize.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.default.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.info.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.install.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.license.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.menu.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.next.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.personalize.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.update.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/icon.welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/icon.welcome.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/nav.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/nav.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/radio.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/radio_on.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/radio_on_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/radio_on_sel.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/radio_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/radio_sel.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/select.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/select.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/select_push.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/select_push.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui/titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui/titlebar.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/bg.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/button.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/button_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/button_focus.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/button_press.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/cb.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/cb_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/cb_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/cb_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/cb_on.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/cb_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/cb_on_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/cb_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/cb_on_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/cb_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/cb_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/dialog.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/dialog_titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/dialog_titlebar.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/font.roboto.big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/font.roboto.big.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/font.roboto.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/font.roboto.small.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.agreement.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.alert.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.apps.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.back.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.confirm.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.customize.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.default.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.info.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.install.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.license.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.menu.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.next.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.personalize.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.update.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/icon.welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/icon.welcome.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/list.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/list.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/navbar.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/radio.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/radio_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/radio_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/radio_on.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/radio_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/radio_on_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/radio_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/radio_on_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/radio_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/radio_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/theme.prop: -------------------------------------------------------------------------------- 1 | img.background=bg 2 | img.titlebar=titlebar 3 | img.navbar=navbar 4 | img.dialog=dialog.9 5 | img.dialog.titlebar=dialog_titlebar.9 6 | img.progress=button.9 7 | img.prograss.fill=button_press.9 8 | img.selection=list.9 9 | img.selection.push=list.9 10 | img.button=button.9 11 | img.button.focus=button_focus.9 12 | img.button.push=button_press.9 13 | img.checkbox=cb 14 | img.checkbox.focus=cb_focus 15 | img.checkbox.push=cb_press 16 | img.checkbox.on=cb_on 17 | img.checkbox.on.focus=cb_on_focus 18 | img.checkbox.on.push=cb_on_press 19 | img.radio=radio 20 | img.radio.focus=radio_focus 21 | img.radio.push=radio_press 22 | img.radio.on=radio_on 23 | img.radio.on.focus=radio_on_focus 24 | img.radio.on.push=radio_on_press 25 | 26 | 27 | color.winbg = #ffffff 28 | color.winbg_g = #eeeeee 29 | color.winfg = #000000 30 | color.winfg_gray = #666666 31 | color.dialogbg = #ffffff 32 | color.dialogbg_g = #eeeeee 33 | color.dialogfg = #000000 34 | color.textbg = #ffffff 35 | color.textfg = #000000 36 | color.textfg_gray = #666666 37 | color.controlbg = #dddddd 38 | color.controlbg_g = #cccccc 39 | color.controlfg = #000000 40 | color.selectbg = #ff7e00 41 | color.selectbg_g = #ff7e00 42 | color.selectfg = #ffffff 43 | color.titlebg = #ff7e00 44 | color.titlebg_g = #ff7e00 45 | color.titlefg = #ffffff 46 | color.dlgtitlebg = #ffffff 47 | color.dlgtitlebg_g = #ffffff 48 | color.dlgtitlefg = #444444 49 | color.scrollbar = #ff7e00 50 | color.navbg = #ffffff 51 | color.navbg_g = #eeeeee 52 | color.border = #666666 53 | color.border_g = #666666 54 | color.progressglow = #ff7e00 55 | 56 | config.roundsize = 1 57 | config.button_roundsize = 1 58 | config.window_roundsize = 1 59 | config.transition_frame = 5 60 | 61 | font.small = font.roboto.small 62 | font.big = font.roboto.big 63 | 64 | 65 | info.themename = MIUI v4 ICS 66 | info.description = MIUI v4 ICS Theme for AROMA Installer 67 | info.author = DemonWav & amarullz & Lennox -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/miui4/titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/miui4/titlebar.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/bg.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/button.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/button_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/button_focus.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/button_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/button_press.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/cb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/cb.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/cb_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/cb_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/cb_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/cb_on.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/cb_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/cb_on_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/cb_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/cb_on_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/cb_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/cb_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/dialog.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/dialog.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/dialog_titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/dialog_titlebar.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/font.roboto.big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/font.roboto.big.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/font.roboto.small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/font.roboto.small.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.agreement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.agreement.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.alert.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.apps.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.back.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.confirm.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.customize.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.default.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.exit.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.info.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.install.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.installbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.installbutton.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.license.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.menu.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.modem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.modem.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.next.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.personalize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.personalize.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.reboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.reboot.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.recovery.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.update.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/icon.welcome.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/list.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/list.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/navbar.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/radio.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/radio_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/radio_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/radio_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/radio_on.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/radio_on_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/radio_on_focus.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/radio_on_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/radio_on_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/radio_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/radio_press.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/theme.prop: -------------------------------------------------------------------------------- 1 | img.background=bg 2 | img.titlebar=titlebar.9 3 | img.navbar=navbar 4 | img.dialog=dialog.9 5 | img.dialog.titlebar=dialog_titlebar.9 6 | img.progress=button.9 7 | img.prograss.fill=button_press.9 8 | img.selection=list.9 9 | img.selection.push=list.9 10 | img.button=button.9 11 | img.button.focus=button_focus.9 12 | img.button.push=button_press.9 13 | img.checkbox=cb 14 | img.checkbox.focus=cb_focus 15 | img.checkbox.push=cb_press 16 | img.checkbox.on=cb_on 17 | img.checkbox.on.focus=cb_on_focus 18 | img.checkbox.on.push=cb_on_press 19 | img.radio=radio 20 | img.radio.focus=radio_focus 21 | img.radio.push=radio_press 22 | img.radio.on=radio_on 23 | img.radio.on.focus=radio_on_focus 24 | img.radio.on.push=radio_on_press 25 | 26 | 27 | color.winbg = #000 28 | color.winbg_g = #444 29 | color.winfg = #fff 30 | color.winfg_gray = #666 31 | color.dialogbg = #000 32 | color.dialogbg_g = #444 33 | color.dialogfg = #fff 34 | color.textbg = #000 35 | color.textfg = #fff 36 | color.textfg_gray = #aaa 37 | color.controlbg = #999 38 | color.controlbg_g = #999 39 | color.controlfg = #fff 40 | color.selectbg = #33b5e5 41 | color.selectbg_g = #33b5e5 42 | color.selectfg = #fff 43 | color.titlebg = #000 44 | color.titlebg_g = #000 45 | color.titlefg = #fff 46 | color.dlgtitlebg = #fff 47 | color.dlgtitlebg_g = #000 48 | color.dlgtitlefg = #fff 49 | color.scrollbar = #ccc 50 | color.navbg = #000 51 | color.navbg_g = #000 52 | color.border = #666 53 | color.border_g = #666 54 | color.progressglow = #33b5e5 55 | 56 | config.roundsize = 1 57 | config.button_roundsize = 1 58 | config.window_roundsize = 1 59 | config.transition_frame = 5 60 | 61 | font.small = font.roboto.small 62 | font.big = font.roboto.big 63 | 64 | 65 | info.themename = Touchwiz 66 | info.description = Touchwiz Theme for AROMA Installer 67 | info.author = titanic_fanatic -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/themes/touchwiz/titlebar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/themes/touchwiz/titlebar.9.png -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/ttf/DroidSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/ttf/DroidSans.ttf -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/ttf/DroidSansArabic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/ttf/DroidSansArabic.ttf -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/ttf/DroidSansFallback.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/ttf/DroidSansFallback.ttf -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/ttf/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/aroma/ttf/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/aroma/unicode/russian_latin.txt: -------------------------------------------------------------------------------- 1 | Детали о следующем поколении планшетов компании Archos попали в сеть до того, как сам производитель успел их анонсировать. Третье поколение планшетов будет работать под управлением ОС Google Android 4.0 Ice Cream Sandwich (ICS), а вместо доступа к официальному магазину Google Android Market в них будет AppsLib Market. 2 | 3 | <@fill>Вместе с китайской компанией Huawei, не менее известная компания под названием ZTE анонсировала на MWC свои смартфоны с операционной системой Android, в том числе и четырехъядерный. По окончании выставки в сети появилась информация о еще одной модели, которую по иронии судьбы назвали ZTE Optimus Barcelona. Официальной информации о нем пока мало - компания не анонсировала его, но некоторые данные уже появились для сертификации в Bluetooth SIG и Wi-Fi Alliance. 4 | 5 | <@right>Компания Novero представила гибрид, попытавшись объединить в одном корпусе сразу два типа популярных устройств. Получившаяся новинка называется Solana и очень похожа на виденный нами ранее аналогичный гибрид Dell Inspiron Duo - её экран разворачивается точно так же: в одном положении мы получаем ноутбук с Windows 7 (готовый к Windows 8), а в другом планшет с операционной системой Android. 6 | 7 | Hoy os traemos una nueva aplicación creada por nosotros que se suma a nuestra lista de aplicaciones. Y con esta, ya son 6 las aplicaciones que ponemos a vuestra disposición de manera totalmente gratuita a través del Android Market. 8 | 9 | En esta ocasión se trata de "Mis notas y préstamos", una aplicación que destaca por su cuidado diseño (al estilo Ice Cream Sandwich) y que te permitirá gestionar de una manera sencilla e intuitiva tus notas y préstamos personales. 10 | 11 | Podrás anotar cualquier tipo de información, y en un futuro próximo, incluso dibujar tus notas. 12 | 13 | Además, si realizas algún préstamo a un amigo, familiar o conocido, ¡anótalo para que no caiga en el olvido! 14 | 15 | -------------------------------------------------------------------------------- /assets/META-INF/com/google/android/update-binary-installer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/assets/META-INF/com/google/android/update-binary-installer -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | echo CLEANUP AROMA INSTALLER 3 | echo ======================= 4 | echo. 5 | echo * Creating directories 6 | mkdir obj 7 | mkdir out 8 | cd obj 9 | echo * Cleanup objects 10 | del /F /Q /S *.* 11 | cd .. 12 | echo * Cleanup binaries 13 | 14 | cd out 15 | del /F /Q * 16 | cd ..\assets\META-INF\com\google\android\ 17 | del /F /Q update-binary 18 | cd ..\..\..\..\.. 19 | 20 | echo. 21 | pause -------------------------------------------------------------------------------- /deploy.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | echo Deploying... 3 | REM 4 | REM "D:\DevelTools\sdk\" change to android sdk path 5 | REM 6 | 7 | echo Initializing Device 8 | D:\DevelTools\sdk\platform-tools\adb shell mount -a 9 | D:\DevelTools\sdk\platform-tools\adb shell mkdir -p /sdcard/0/ 10 | echo Copiying zip file 11 | D:\DevelTools\sdk\platform-tools\adb push out/aroma.zip /sdcard/0/aroma.zip 12 | echo Copiying Binary File 13 | D:\DevelTools\sdk\platform-tools\adb push out/aroma_installer /tmp/update-binary 14 | echo CHMOD 15 | D:\DevelTools\sdk\platform-tools\adb shell chmod 777 /tmp/update-binary 16 | 17 | echo STARTING 18 | echo -------------------------------------------------------- 19 | echo. 20 | D:\DevelTools\sdk\platform-tools\adb shell /tmp/update-binary 1 0 /sdcard/0/aroma.zip 21 | echo. 22 | echo -------------------------------------------------------- 23 | echo CTRL-C = Save, Enter = Clean 24 | pause 25 | D:\DevelTools\sdk\platform-tools\adb shell rm /tmp/update-binary -------------------------------------------------------------------------------- /include/freetype/config/ftmodule.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file registers the FreeType modules compiled into the library. 3 | * 4 | * If you use GNU make, this file IS NOT USED! Instead, it is created in 5 | * the objects directory (normally `/objs/') based on information 6 | * from `/modules.cfg'. 7 | * 8 | * Please read `docs/INSTALL.ANY' and `docs/CUSTOMIZE' how to compile 9 | * FreeType without GNU make. 10 | * 11 | */ 12 | 13 | FT_USE_MODULE( FT_Module_Class, autofit_module_class ) 14 | FT_USE_MODULE( FT_Driver_ClassRec, tt_driver_class ) 15 | FT_USE_MODULE( FT_Driver_ClassRec, cff_driver_class ) 16 | FT_USE_MODULE( FT_Module_Class, psnames_module_class ) 17 | FT_USE_MODULE( FT_Module_Class, pshinter_module_class ) 18 | FT_USE_MODULE( FT_Renderer_Class, ft_raster1_renderer_class ) 19 | FT_USE_MODULE( FT_Module_Class, sfnt_module_class ) 20 | FT_USE_MODULE( FT_Renderer_Class, ft_smooth_renderer_class ) 21 | FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcd_renderer_class ) 22 | FT_USE_MODULE( FT_Renderer_Class, ft_smooth_lcdv_renderer_class ) 23 | 24 | /* 25 | * New modules in 2.4.7: 26 | FT_USE_MODULE( FT_Driver_ClassRec, t1_driver_class ) 27 | FT_USE_MODULE( FT_Driver_ClassRec, t1cid_driver_class ) 28 | FT_USE_MODULE( FT_Driver_ClassRec, pfr_driver_class ) 29 | FT_USE_MODULE( FT_Driver_ClassRec, t42_driver_class ) 30 | FT_USE_MODULE( FT_Driver_ClassRec, winfnt_driver_class ) 31 | FT_USE_MODULE( FT_Driver_ClassRec, pcf_driver_class ) 32 | FT_USE_MODULE( FT_Module_Class, psaux_module_class ) 33 | FT_USE_MODULE( FT_Driver_ClassRec, bdf_driver_class ) 34 | */ 35 | 36 | /* EOF */ 37 | -------------------------------------------------------------------------------- /include/freetype/internal/pcftypes.h: -------------------------------------------------------------------------------- 1 | /* pcftypes.h 2 | 3 | FreeType font driver for pcf fonts 4 | 5 | Copyright (C) 2000, 2001, 2002 by 6 | Francesco Zappa Nardelli 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | */ 26 | 27 | 28 | #ifndef __PCFTYPES_H__ 29 | #define __PCFTYPES_H__ 30 | 31 | 32 | #include 33 | #include FT_FREETYPE_H 34 | 35 | 36 | FT_BEGIN_HEADER 37 | 38 | 39 | typedef struct PCF_Public_FaceRec_ 40 | { 41 | FT_FaceRec root; 42 | FT_StreamRec gzip_stream; 43 | FT_Stream gzip_source; 44 | 45 | char* charset_encoding; 46 | char* charset_registry; 47 | 48 | } PCF_Public_FaceRec, *PCF_Public_Face; 49 | 50 | 51 | FT_END_HEADER 52 | 53 | #endif /* __PCFTYPES_H__ */ 54 | 55 | 56 | /* END */ 57 | -------------------------------------------------------------------------------- /include/freetype/internal/services/svkern.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* svkern.h */ 4 | /* */ 5 | /* The FreeType Kerning service (specification). */ 6 | /* */ 7 | /* Copyright 2006 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __SVKERN_H__ 20 | #define __SVKERN_H__ 21 | 22 | #include FT_INTERNAL_SERVICE_H 23 | #include FT_TRUETYPE_TABLES_H 24 | 25 | 26 | FT_BEGIN_HEADER 27 | 28 | #define FT_SERVICE_ID_KERNING "kerning" 29 | 30 | 31 | typedef FT_Error 32 | (*FT_Kerning_TrackGetFunc)( FT_Face face, 33 | FT_Fixed point_size, 34 | FT_Int degree, 35 | FT_Fixed* akerning ); 36 | 37 | FT_DEFINE_SERVICE( Kerning ) 38 | { 39 | FT_Kerning_TrackGetFunc get_track; 40 | }; 41 | 42 | /* */ 43 | 44 | 45 | FT_END_HEADER 46 | 47 | 48 | #endif /* __SVKERN_H__ */ 49 | 50 | 51 | /* END */ 52 | -------------------------------------------------------------------------------- /include/freetype/internal/services/svotval.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* svotval.h */ 4 | /* */ 5 | /* The FreeType OpenType validation service (specification). */ 6 | /* */ 7 | /* Copyright 2004, 2006 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __SVOTVAL_H__ 20 | #define __SVOTVAL_H__ 21 | 22 | #include FT_OPENTYPE_VALIDATE_H 23 | #include FT_INTERNAL_VALIDATE_H 24 | 25 | FT_BEGIN_HEADER 26 | 27 | 28 | #define FT_SERVICE_ID_OPENTYPE_VALIDATE "opentype-validate" 29 | 30 | 31 | typedef FT_Error 32 | (*otv_validate_func)( FT_Face volatile face, 33 | FT_UInt ot_flags, 34 | FT_Bytes *base, 35 | FT_Bytes *gdef, 36 | FT_Bytes *gpos, 37 | FT_Bytes *gsub, 38 | FT_Bytes *jstf ); 39 | 40 | 41 | FT_DEFINE_SERVICE( OTvalidate ) 42 | { 43 | otv_validate_func validate; 44 | }; 45 | 46 | /* */ 47 | 48 | 49 | FT_END_HEADER 50 | 51 | 52 | #endif /* __SVOTVAL_H__ */ 53 | 54 | 55 | /* END */ 56 | -------------------------------------------------------------------------------- /include/freetype/internal/services/svtteng.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* svtteng.h */ 4 | /* */ 5 | /* The FreeType TrueType engine query service (specification). */ 6 | /* */ 7 | /* Copyright 2006 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __SVTTENG_H__ 20 | #define __SVTTENG_H__ 21 | 22 | #include FT_INTERNAL_SERVICE_H 23 | #include FT_MODULE_H 24 | 25 | 26 | FT_BEGIN_HEADER 27 | 28 | 29 | /* 30 | * SFNT table loading service. 31 | */ 32 | 33 | #define FT_SERVICE_ID_TRUETYPE_ENGINE "truetype-engine" 34 | 35 | /* 36 | * Used to implement FT_Get_TrueType_Engine_Type 37 | */ 38 | 39 | FT_DEFINE_SERVICE( TrueTypeEngine ) 40 | { 41 | FT_TrueTypeEngineType engine_type; 42 | }; 43 | 44 | /* */ 45 | 46 | 47 | FT_END_HEADER 48 | 49 | 50 | #endif /* __SVTTENG_H__ */ 51 | 52 | 53 | /* END */ 54 | -------------------------------------------------------------------------------- /include/freetype/internal/services/svwinfnt.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* svwinfnt.h */ 4 | /* */ 5 | /* The FreeType Windows FNT/FONT service (specification). */ 6 | /* */ 7 | /* Copyright 2003 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __SVWINFNT_H__ 20 | #define __SVWINFNT_H__ 21 | 22 | #include FT_INTERNAL_SERVICE_H 23 | #include FT_WINFONTS_H 24 | 25 | 26 | FT_BEGIN_HEADER 27 | 28 | 29 | #define FT_SERVICE_ID_WINFNT "winfonts" 30 | 31 | typedef FT_Error 32 | (*FT_WinFnt_GetHeaderFunc)( FT_Face face, 33 | FT_WinFNT_HeaderRec *aheader ); 34 | 35 | 36 | FT_DEFINE_SERVICE( WinFnt ) 37 | { 38 | FT_WinFnt_GetHeaderFunc get_header; 39 | }; 40 | 41 | /* */ 42 | 43 | 44 | FT_END_HEADER 45 | 46 | 47 | #endif /* __SVWINFNT_H__ */ 48 | 49 | 50 | /* END */ 51 | -------------------------------------------------------------------------------- /include/freetype/internal/services/svxf86nm.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* svxf86nm.h */ 4 | /* */ 5 | /* The FreeType XFree86 services (specification only). */ 6 | /* */ 7 | /* Copyright 2003 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __SVXF86NM_H__ 20 | #define __SVXF86NM_H__ 21 | 22 | #include FT_INTERNAL_SERVICE_H 23 | 24 | 25 | FT_BEGIN_HEADER 26 | 27 | 28 | /* 29 | * A trivial service used to return the name of a face's font driver, 30 | * according to the XFree86 nomenclature. Note that the service data 31 | * is a simple constant string pointer. 32 | */ 33 | 34 | #define FT_SERVICE_ID_XF86_NAME "xf86-driver-name" 35 | 36 | #define FT_XF86_FORMAT_TRUETYPE "TrueType" 37 | #define FT_XF86_FORMAT_TYPE_1 "Type 1" 38 | #define FT_XF86_FORMAT_BDF "BDF" 39 | #define FT_XF86_FORMAT_PCF "PCF" 40 | #define FT_XF86_FORMAT_TYPE_42 "Type 42" 41 | #define FT_XF86_FORMAT_CID "CID Type 1" 42 | #define FT_XF86_FORMAT_CFF "CFF" 43 | #define FT_XF86_FORMAT_PFR "PFR" 44 | #define FT_XF86_FORMAT_WINFNT "Windows FNT" 45 | 46 | /* */ 47 | 48 | 49 | FT_END_HEADER 50 | 51 | 52 | #endif /* __SVXF86NM_H__ */ 53 | 54 | 55 | /* END */ 56 | -------------------------------------------------------------------------------- /include/ft2build.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ft2build.h */ 4 | /* */ 5 | /* FreeType 2 build and setup macros. */ 6 | /* (Generic version) */ 7 | /* */ 8 | /* Copyright 1996-2001, 2006 by */ 9 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 10 | /* */ 11 | /* This file is part of the FreeType project, and may only be used, */ 12 | /* modified, and distributed under the terms of the FreeType project */ 13 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 14 | /* this file you indicate that you have read the license and */ 15 | /* understand and accept it fully. */ 16 | /* */ 17 | /***************************************************************************/ 18 | 19 | 20 | /*************************************************************************/ 21 | /* */ 22 | /* This file corresponds to the default `ft2build.h' file for */ 23 | /* FreeType 2. It uses the `freetype' include root. */ 24 | /* */ 25 | /* Note that specific platforms might use a different configuration. */ 26 | /* See builds/unix/ft2unix.h for an example. */ 27 | /* */ 28 | /*************************************************************************/ 29 | 30 | 31 | #ifndef __FT2_BUILD_GENERIC_H__ 32 | #define __FT2_BUILD_GENERIC_H__ 33 | 34 | #include 35 | 36 | #endif /* __FT2_BUILD_GENERIC_H__ */ 37 | 38 | 39 | /* END */ 40 | -------------------------------------------------------------------------------- /include/minutf8.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | /* 18 | * Descriptions: 19 | * ------------- 20 | * Minimalist & Fast UTF8 Decoder Header 21 | * 22 | */ 23 | 24 | #ifndef MINUTF8_H 25 | #define MINUTF8_H 26 | 27 | int utf8_len(const char *s); 28 | void utf8_dec_ex(int * d, int dl, const char * s); 29 | int * utf8_dec(const char *s); 30 | int utf8c(const char * src, const char ** ss,int * move); 31 | 32 | #endif -------------------------------------------------------------------------------- /libs/freetype/autofit/afangles.h: -------------------------------------------------------------------------------- 1 | /* 2 | * afangles.h 3 | * 4 | * This is a dummy file, used to please the build system. It is never 5 | * included by the auto-fitter sources. 6 | * 7 | */ 8 | -------------------------------------------------------------------------------- /libs/freetype/autofit/afdummy.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* afdummy.h */ 4 | /* */ 5 | /* Auto-fitter dummy routines to be used if no hinting should be */ 6 | /* performed (specification). */ 7 | /* */ 8 | /* Copyright 2003-2005, 2011 by */ 9 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 10 | /* */ 11 | /* This file is part of the FreeType project, and may only be used, */ 12 | /* modified, and distributed under the terms of the FreeType project */ 13 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 14 | /* this file you indicate that you have read the license and */ 15 | /* understand and accept it fully. */ 16 | /* */ 17 | /***************************************************************************/ 18 | 19 | 20 | #ifndef __AFDUMMY_H__ 21 | #define __AFDUMMY_H__ 22 | 23 | #include "aftypes.h" 24 | 25 | 26 | FT_BEGIN_HEADER 27 | 28 | /* A dummy script metrics class used when no hinting should 29 | * be performed. This is the default for non-latin glyphs! 30 | */ 31 | 32 | AF_DECLARE_SCRIPT_CLASS( af_dummy_script_class ) 33 | 34 | /* */ 35 | 36 | FT_END_HEADER 37 | 38 | 39 | #endif /* __AFDUMMY_H__ */ 40 | 41 | 42 | /* END */ 43 | -------------------------------------------------------------------------------- /libs/freetype/autofit/aferrors.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* aferrors.h */ 4 | /* */ 5 | /* Autofitter error codes (specification only). */ 6 | /* */ 7 | /* Copyright 2005, 2012 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | /*************************************************************************/ 20 | /* */ 21 | /* This file is used to define the Autofitter error enumeration */ 22 | /* constants. */ 23 | /* */ 24 | /*************************************************************************/ 25 | 26 | #ifndef __AFERRORS_H__ 27 | #define __AFERRORS_H__ 28 | 29 | #include FT_MODULE_ERRORS_H 30 | 31 | #undef __FTERRORS_H__ 32 | 33 | #undef FT_ERR_PREFIX 34 | #define FT_ERR_PREFIX AF_Err_ 35 | #define FT_ERR_BASE FT_Mod_Err_Autofit 36 | 37 | #include FT_ERRORS_H 38 | 39 | #endif /* __AFERRORS_H__ */ 40 | 41 | /* END */ 42 | -------------------------------------------------------------------------------- /libs/freetype/autofit/afindic.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* afindic.h */ 4 | /* */ 5 | /* Auto-fitter hinting routines for Indic scripts (specification). */ 6 | /* */ 7 | /* Copyright 2007 by */ 8 | /* Rahul Bhalerao , . */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __AFINDIC_H__ 20 | #define __AFINDIC_H__ 21 | 22 | #include "afhints.h" 23 | 24 | 25 | FT_BEGIN_HEADER 26 | 27 | 28 | /* the Indic-specific script class */ 29 | 30 | AF_DECLARE_SCRIPT_CLASS(af_indic_script_class) 31 | 32 | 33 | /* */ 34 | 35 | FT_END_HEADER 36 | 37 | #endif /* __AFINDIC_H__ */ 38 | 39 | 40 | /* END */ 41 | -------------------------------------------------------------------------------- /libs/freetype/autofit/aflatin2.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* aflatin2.h */ 4 | /* */ 5 | /* Auto-fitter hinting routines for latin script (specification). */ 6 | /* */ 7 | /* Copyright 2003, 2004, 2005, 2006, 2007 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __AFLATIN2_H__ 20 | #define __AFLATIN2_H__ 21 | 22 | #include "afhints.h" 23 | 24 | 25 | FT_BEGIN_HEADER 26 | 27 | 28 | /* the latin-specific script class */ 29 | 30 | AF_DECLARE_SCRIPT_CLASS(af_latin2_script_class) 31 | 32 | /* */ 33 | 34 | FT_END_HEADER 35 | 36 | #endif /* __AFLATIN_H__ */ 37 | 38 | 39 | /* END */ 40 | -------------------------------------------------------------------------------- /libs/freetype/autofit/afmodule.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* afmodule.h */ 4 | /* */ 5 | /* Auto-fitter module implementation (specification). */ 6 | /* */ 7 | /* Copyright 2003, 2004, 2005 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __AFMODULE_H__ 20 | #define __AFMODULE_H__ 21 | 22 | #include 23 | #include FT_INTERNAL_OBJECTS_H 24 | #include FT_MODULE_H 25 | 26 | 27 | FT_BEGIN_HEADER 28 | 29 | FT_DECLARE_MODULE(autofit_module_class) 30 | 31 | 32 | FT_END_HEADER 33 | 34 | #endif /* __AFMODULE_H__ */ 35 | 36 | 37 | /* END */ 38 | -------------------------------------------------------------------------------- /libs/freetype/autofit/autofit.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* autofit.c */ 4 | /* */ 5 | /* Auto-fitter module (body). */ 6 | /* */ 7 | /* Copyright 2003-2007, 2011 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #define FT_MAKE_OPTION_SINGLE_OBJECT 20 | #include 21 | #include "afpic.c" 22 | #include "afangles.c" 23 | #include "afglobal.c" 24 | #include "afhints.c" 25 | 26 | #include "afdummy.c" 27 | #include "aflatin.c" 28 | #ifdef FT_OPTION_AUTOFIT2 29 | #include "aflatin2.c" 30 | #endif 31 | #include "afcjk.c" 32 | #include "afindic.c" 33 | 34 | #include "afloader.c" 35 | #include "afmodule.c" 36 | 37 | #ifdef AF_CONFIG_OPTION_USE_WARPER 38 | #include "afwarp.c" 39 | #endif 40 | 41 | /* END */ 42 | -------------------------------------------------------------------------------- /libs/freetype/base/ftbase.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ftbase.c */ 4 | /* */ 5 | /* Single object library component (body only). */ 6 | /* */ 7 | /* Copyright 1996-2001, 2002, 2003, 2004, 2006, 2007, 2008, 2009 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #include 20 | 21 | #define FT_MAKE_OPTION_SINGLE_OBJECT 22 | 23 | #include "ftpic.c" 24 | #include "basepic.c" 25 | #include "ftadvanc.c" 26 | #include "ftcalc.c" 27 | #include "ftdbgmem.c" 28 | #include "ftgloadr.c" 29 | #include "ftobjs.c" 30 | #include "ftoutln.c" 31 | #include "ftrfork.c" 32 | #include "ftsnames.c" 33 | #include "ftstream.c" 34 | #include "fttrigon.c" 35 | #include "ftutil.c" 36 | 37 | #ifdef FT_MACINTOSH 38 | #include "ftmac.c" 39 | #endif 40 | 41 | /* END */ 42 | -------------------------------------------------------------------------------- /libs/freetype/base/ftgasp.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ftgasp.c */ 4 | /* */ 5 | /* Access of TrueType's `gasp' table (body). */ 6 | /* */ 7 | /* Copyright 2007 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #include 20 | #include FT_GASP_H 21 | #include FT_INTERNAL_TRUETYPE_TYPES_H 22 | 23 | 24 | FT_EXPORT_DEF( FT_Int ) 25 | FT_Get_Gasp( FT_Face face, 26 | FT_UInt ppem ) 27 | { 28 | FT_Int result = FT_GASP_NO_TABLE; 29 | 30 | 31 | if ( face && FT_IS_SFNT( face ) ) 32 | { 33 | TT_Face ttface = (TT_Face)face; 34 | 35 | 36 | if ( ttface->gasp.numRanges > 0 ) 37 | { 38 | TT_GaspRange range = ttface->gasp.gaspRanges; 39 | TT_GaspRange range_end = range + ttface->gasp.numRanges; 40 | 41 | 42 | while ( ppem > range->maxPPEM ) 43 | { 44 | range++; 45 | if ( range >= range_end ) 46 | goto Exit; 47 | } 48 | 49 | result = range->gaspFlag; 50 | 51 | /* ensure that we don't have spurious bits */ 52 | if ( ttface->gasp.version == 0 ) 53 | result &= 3; 54 | } 55 | } 56 | Exit: 57 | return result; 58 | } 59 | 60 | 61 | /* END */ 62 | -------------------------------------------------------------------------------- /libs/freetype/base/ftpic.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ftpic.c */ 4 | /* */ 5 | /* The FreeType position independent code services (body). */ 6 | /* */ 7 | /* Copyright 2009 by */ 8 | /* Oran Agra and Mickey Gabel. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #include 20 | #include FT_FREETYPE_H 21 | #include FT_INTERNAL_OBJECTS_H 22 | #include "basepic.h" 23 | 24 | #ifdef FT_CONFIG_OPTION_PIC 25 | 26 | /* documentation is in ftpic.h */ 27 | 28 | FT_BASE_DEF( FT_Error ) 29 | ft_pic_container_init( FT_Library library ) 30 | { 31 | FT_PIC_Container* pic_container = &library->pic_container; 32 | FT_Error error = FT_Err_Ok; 33 | 34 | FT_MEM_SET( pic_container, 0, sizeof ( *pic_container ) ); 35 | 36 | error = ft_base_pic_init( library ); 37 | if ( error ) 38 | return error; 39 | 40 | return FT_Err_Ok; 41 | } 42 | 43 | 44 | /* Destroy the contents of the container. */ 45 | FT_BASE_DEF( void ) 46 | ft_pic_container_destroy( FT_Library library ) 47 | { 48 | ft_base_pic_free( library ); 49 | } 50 | 51 | #endif /* FT_CONFIG_OPTION_PIC */ 52 | 53 | 54 | /* END */ 55 | -------------------------------------------------------------------------------- /libs/freetype/base/ftwinfnt.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ftwinfnt.c */ 4 | /* */ 5 | /* FreeType API for accessing Windows FNT specific info (body). */ 6 | /* */ 7 | /* Copyright 2003, 2004 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #include 20 | #include FT_WINFONTS_H 21 | #include FT_INTERNAL_OBJECTS_H 22 | #include FT_SERVICE_WINFNT_H 23 | 24 | 25 | /* documentation is in ftwinfnt.h */ 26 | 27 | FT_EXPORT_DEF( FT_Error ) 28 | FT_Get_WinFNT_Header( FT_Face face, 29 | FT_WinFNT_HeaderRec *header ) 30 | { 31 | FT_Service_WinFnt service; 32 | FT_Error error; 33 | 34 | 35 | error = FT_Err_Invalid_Argument; 36 | 37 | if ( face != NULL ) 38 | { 39 | FT_FACE_LOOKUP_SERVICE( face, service, WINFNT ); 40 | 41 | if ( service != NULL ) 42 | { 43 | error = service->get_header( face, header ); 44 | } 45 | } 46 | 47 | return error; 48 | } 49 | 50 | 51 | /* END */ 52 | -------------------------------------------------------------------------------- /libs/freetype/base/ftxf86.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ftxf86.c */ 4 | /* */ 5 | /* FreeType utility file for X11 support (body). */ 6 | /* */ 7 | /* Copyright 2002, 2003, 2004 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #include 20 | #include FT_XFREE86_H 21 | #include FT_INTERNAL_OBJECTS_H 22 | #include FT_SERVICE_XFREE86_NAME_H 23 | 24 | 25 | /* documentation is in ftxf86.h */ 26 | 27 | FT_EXPORT_DEF( const char* ) 28 | FT_Get_X11_Font_Format( FT_Face face ) 29 | { 30 | const char* result = NULL; 31 | 32 | 33 | if ( face ) 34 | FT_FACE_FIND_SERVICE( face, result, XF86_NAME ); 35 | 36 | return result; 37 | } 38 | 39 | 40 | /* END */ 41 | -------------------------------------------------------------------------------- /libs/freetype/cff/cff.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* cff.c */ 4 | /* */ 5 | /* FreeType OpenType driver component (body only). */ 6 | /* */ 7 | /* Copyright 1996-2001, 2002 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #define FT_MAKE_OPTION_SINGLE_OBJECT 20 | 21 | #include 22 | #include "cffpic.c" 23 | #include "cffdrivr.c" 24 | #include "cffparse.c" 25 | #include "cffload.c" 26 | #include "cffobjs.c" 27 | #include "cffgload.c" 28 | #include "cffcmap.c" 29 | 30 | /* END */ 31 | -------------------------------------------------------------------------------- /libs/freetype/cff/cffdrivr.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* cffdrivr.h */ 4 | /* */ 5 | /* High-level OpenType driver interface (specification). */ 6 | /* */ 7 | /* Copyright 1996-2001, 2002 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __CFFDRIVER_H__ 20 | #define __CFFDRIVER_H__ 21 | 22 | 23 | #include 24 | #include FT_INTERNAL_DRIVER_H 25 | 26 | 27 | FT_BEGIN_HEADER 28 | 29 | 30 | FT_DECLARE_DRIVER( cff_driver_class ) 31 | 32 | 33 | FT_END_HEADER 34 | 35 | #endif /* __CFFDRIVER_H__ */ 36 | 37 | 38 | /* END */ 39 | -------------------------------------------------------------------------------- /libs/freetype/cff/cfferrs.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* cfferrs.h */ 4 | /* */ 5 | /* CFF error codes (specification only). */ 6 | /* */ 7 | /* Copyright 2001, 2012 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | /*************************************************************************/ 20 | /* */ 21 | /* This file is used to define the CFF error enumeration constants. */ 22 | /* */ 23 | /*************************************************************************/ 24 | 25 | #ifndef __CFFERRS_H__ 26 | #define __CFFERRS_H__ 27 | 28 | #include FT_MODULE_ERRORS_H 29 | 30 | #undef __FTERRORS_H__ 31 | 32 | #undef FT_ERR_PREFIX 33 | #define FT_ERR_PREFIX CFF_Err_ 34 | #define FT_ERR_BASE FT_Mod_Err_CFF 35 | 36 | 37 | #include FT_ERRORS_H 38 | 39 | #endif /* __CFFERRS_H__ */ 40 | 41 | 42 | /* END */ 43 | -------------------------------------------------------------------------------- /libs/freetype/psaux/psaux.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* psaux.c */ 4 | /* */ 5 | /* FreeType auxiliary PostScript driver component (body only). */ 6 | /* */ 7 | /* Copyright 1996-2001, 2002, 2006 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #define FT_MAKE_OPTION_SINGLE_OBJECT 20 | 21 | #include 22 | #include "psobjs.c" 23 | #include "psauxmod.c" 24 | #include "t1decode.c" 25 | #include "t1cmap.c" 26 | 27 | #ifndef T1_CONFIG_OPTION_NO_AFM 28 | #include "afmparse.c" 29 | #endif 30 | 31 | #include "psconv.c" 32 | 33 | 34 | /* END */ 35 | -------------------------------------------------------------------------------- /libs/freetype/psaux/psauxerr.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* psauxerr.h */ 4 | /* */ 5 | /* PS auxiliary module error codes (specification only). */ 6 | /* */ 7 | /* Copyright 2001, 2012 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | /*************************************************************************/ 20 | /* */ 21 | /* This file is used to define the PS auxiliary module error enumeration */ 22 | /* constants. */ 23 | /* */ 24 | /*************************************************************************/ 25 | 26 | #ifndef __PSAUXERR_H__ 27 | #define __PSAUXERR_H__ 28 | 29 | #include FT_MODULE_ERRORS_H 30 | 31 | #undef __FTERRORS_H__ 32 | 33 | #undef FT_ERR_PREFIX 34 | #define FT_ERR_PREFIX PSaux_Err_ 35 | #define FT_ERR_BASE FT_Mod_Err_PSaux 36 | 37 | #include FT_ERRORS_H 38 | 39 | #endif /* __PSAUXERR_H__ */ 40 | 41 | 42 | /* END */ 43 | -------------------------------------------------------------------------------- /libs/freetype/psaux/psauxmod.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* psauxmod.h */ 4 | /* */ 5 | /* FreeType auxiliary PostScript module implementation (specification). */ 6 | /* */ 7 | /* Copyright 2000-2001 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __PSAUXMOD_H__ 20 | #define __PSAUXMOD_H__ 21 | 22 | 23 | #include 24 | #include FT_MODULE_H 25 | 26 | 27 | FT_BEGIN_HEADER 28 | 29 | #ifdef FT_CONFIG_OPTION_PIC 30 | #error "this module does not support PIC yet" 31 | #endif 32 | 33 | 34 | FT_EXPORT_VAR( const FT_Module_Class ) psaux_driver_class; 35 | 36 | 37 | FT_END_HEADER 38 | 39 | #endif /* __PSAUXMOD_H__ */ 40 | 41 | 42 | /* END */ 43 | -------------------------------------------------------------------------------- /libs/freetype/pshinter/pshinter.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* pshinter.c */ 4 | /* */ 5 | /* FreeType PostScript Hinting module */ 6 | /* */ 7 | /* Copyright 2001, 2003 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #define FT_MAKE_OPTION_SINGLE_OBJECT 20 | 21 | #include 22 | #include "pshpic.c" 23 | #include "pshrec.c" 24 | #include "pshglob.c" 25 | #include "pshalgo.c" 26 | #include "pshmod.c" 27 | 28 | 29 | /* END */ 30 | -------------------------------------------------------------------------------- /libs/freetype/pshinter/pshmod.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* pshmod.h */ 4 | /* */ 5 | /* PostScript hinter module interface (specification). */ 6 | /* */ 7 | /* Copyright 2001 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __PSHMOD_H__ 20 | #define __PSHMOD_H__ 21 | 22 | 23 | #include 24 | #include FT_MODULE_H 25 | 26 | 27 | FT_BEGIN_HEADER 28 | 29 | 30 | FT_DECLARE_MODULE( pshinter_module_class ) 31 | 32 | 33 | FT_END_HEADER 34 | 35 | 36 | #endif /* __PSHMOD_H__ */ 37 | 38 | 39 | /* END */ 40 | -------------------------------------------------------------------------------- /libs/freetype/pshinter/pshnterr.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* pshnterr.h */ 4 | /* */ 5 | /* PS Hinter error codes (specification only). */ 6 | /* */ 7 | /* Copyright 2003, 2012 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | /*************************************************************************/ 20 | /* */ 21 | /* This file is used to define the PSHinter error enumeration constants. */ 22 | /* */ 23 | /*************************************************************************/ 24 | 25 | #ifndef __PSHNTERR_H__ 26 | #define __PSHNTERR_H__ 27 | 28 | #include FT_MODULE_ERRORS_H 29 | 30 | #undef __FTERRORS_H__ 31 | 32 | #undef FT_ERR_PREFIX 33 | #define FT_ERR_PREFIX PSH_Err_ 34 | #define FT_ERR_BASE FT_Mod_Err_PShinter 35 | 36 | #include FT_ERRORS_H 37 | 38 | #endif /* __PSHNTERR_H__ */ 39 | 40 | 41 | /* END */ 42 | -------------------------------------------------------------------------------- /libs/freetype/pshinter/pshpic.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* pshpic.h */ 4 | /* */ 5 | /* The FreeType position independent code services for pshinter module. */ 6 | /* */ 7 | /* Copyright 2009 by */ 8 | /* Oran Agra and Mickey Gabel. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __PSHPIC_H__ 20 | #define __PSHPIC_H__ 21 | 22 | 23 | FT_BEGIN_HEADER 24 | 25 | #include FT_INTERNAL_PIC_H 26 | 27 | #ifndef FT_CONFIG_OPTION_PIC 28 | 29 | #define FTPSHINTER_INTERFACE_GET pshinter_interface 30 | 31 | #else /* FT_CONFIG_OPTION_PIC */ 32 | 33 | #include FT_INTERNAL_POSTSCRIPT_HINTS_H 34 | 35 | typedef struct PSHinterPIC_ 36 | { 37 | PSHinter_Interface pshinter_interface; 38 | } PSHinterPIC; 39 | 40 | #define GET_PIC(lib) ((PSHinterPIC*)((lib)->pic_container.autofit)) 41 | #define FTPSHINTER_INTERFACE_GET (GET_PIC(library)->pshinter_interface) 42 | 43 | /* see pshpic.c for the implementation */ 44 | void 45 | pshinter_module_class_pic_free( FT_Library library ); 46 | 47 | FT_Error 48 | pshinter_module_class_pic_init( FT_Library library ); 49 | 50 | #endif /* FT_CONFIG_OPTION_PIC */ 51 | 52 | /* */ 53 | 54 | FT_END_HEADER 55 | 56 | #endif /* __PSHPIC_H__ */ 57 | 58 | 59 | /* END */ 60 | -------------------------------------------------------------------------------- /libs/freetype/psnames/psmodule.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* psmodule.h */ 4 | /* */ 5 | /* High-level PSNames module interface (specification). */ 6 | /* */ 7 | /* Copyright 1996-2001 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __PSMODULE_H__ 20 | #define __PSMODULE_H__ 21 | 22 | 23 | #include 24 | #include FT_MODULE_H 25 | 26 | 27 | FT_BEGIN_HEADER 28 | 29 | 30 | FT_DECLARE_MODULE( psnames_module_class ) 31 | 32 | 33 | FT_END_HEADER 34 | 35 | #endif /* __PSMODULE_H__ */ 36 | 37 | 38 | /* END */ 39 | -------------------------------------------------------------------------------- /libs/freetype/psnames/psnamerr.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* psnamerr.h */ 4 | /* */ 5 | /* PS names module error codes (specification only). */ 6 | /* */ 7 | /* Copyright 2001, 2012 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | /*************************************************************************/ 20 | /* */ 21 | /* This file is used to define the PS names module error enumeration */ 22 | /* constants. */ 23 | /* */ 24 | /*************************************************************************/ 25 | 26 | #ifndef __PSNAMERR_H__ 27 | #define __PSNAMERR_H__ 28 | 29 | #include FT_MODULE_ERRORS_H 30 | 31 | #undef __FTERRORS_H__ 32 | 33 | #undef FT_ERR_PREFIX 34 | #define FT_ERR_PREFIX PSnames_Err_ 35 | #define FT_ERR_BASE FT_Mod_Err_PSnames 36 | 37 | #include FT_ERRORS_H 38 | 39 | #endif /* __PSNAMERR_H__ */ 40 | 41 | 42 | /* END */ 43 | -------------------------------------------------------------------------------- /libs/freetype/psnames/psnames.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* psnames.c */ 4 | /* */ 5 | /* FreeType PSNames module component (body only). */ 6 | /* */ 7 | /* Copyright 1996-2001 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #define FT_MAKE_OPTION_SINGLE_OBJECT 20 | 21 | #include 22 | #include "pspic.c" 23 | #include "psmodule.c" 24 | 25 | 26 | /* END */ 27 | -------------------------------------------------------------------------------- /libs/freetype/raster/ftraster.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ftraster.h */ 4 | /* */ 5 | /* The FreeType glyph rasterizer (specification). */ 6 | /* */ 7 | /* Copyright 1996-2001 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used */ 11 | /* modified and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __FTRASTER_H__ 20 | #define __FTRASTER_H__ 21 | 22 | 23 | #include 24 | #include FT_CONFIG_CONFIG_H 25 | #include FT_IMAGE_H 26 | 27 | 28 | FT_BEGIN_HEADER 29 | 30 | 31 | /*************************************************************************/ 32 | /* */ 33 | /* Uncomment the following line if you are using ftraster.c as a */ 34 | /* standalone module, fully independent of FreeType. */ 35 | /* */ 36 | /* #define _STANDALONE_ */ 37 | 38 | FT_EXPORT_VAR( const FT_Raster_Funcs ) ft_standard_raster; 39 | 40 | 41 | FT_END_HEADER 42 | 43 | #endif /* __FTRASTER_H__ */ 44 | 45 | 46 | /* END */ 47 | -------------------------------------------------------------------------------- /libs/freetype/raster/ftrend1.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ftrend1.h */ 4 | /* */ 5 | /* The FreeType glyph rasterizer interface (specification). */ 6 | /* */ 7 | /* Copyright 1996-2001 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __FTREND1_H__ 20 | #define __FTREND1_H__ 21 | 22 | 23 | #include 24 | #include FT_RENDER_H 25 | 26 | 27 | FT_BEGIN_HEADER 28 | 29 | 30 | FT_DECLARE_RENDERER( ft_raster1_renderer_class ) 31 | 32 | /* this renderer is _NOT_ part of the default modules, you'll need */ 33 | /* to register it by hand in your application. It should only be */ 34 | /* used for backwards-compatibility with FT 1.x anyway. */ 35 | /* */ 36 | FT_DECLARE_RENDERER( ft_raster5_renderer_class ) 37 | 38 | 39 | FT_END_HEADER 40 | 41 | #endif /* __FTREND1_H__ */ 42 | 43 | 44 | /* END */ 45 | -------------------------------------------------------------------------------- /libs/freetype/raster/raster.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* raster.c */ 4 | /* */ 5 | /* FreeType monochrome rasterer module component (body only). */ 6 | /* */ 7 | /* Copyright 1996-2001 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #define FT_MAKE_OPTION_SINGLE_OBJECT 20 | 21 | #include 22 | #include "rastpic.c" 23 | #include "ftraster.c" 24 | #include "ftrend1.c" 25 | 26 | 27 | /* END */ 28 | -------------------------------------------------------------------------------- /libs/freetype/raster/rasterrs.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* rasterrs.h */ 4 | /* */ 5 | /* monochrome renderer error codes (specification only). */ 6 | /* */ 7 | /* Copyright 2001, 2012 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | /*************************************************************************/ 20 | /* */ 21 | /* This file is used to define the monochrome renderer error enumeration */ 22 | /* constants. */ 23 | /* */ 24 | /*************************************************************************/ 25 | 26 | #ifndef __RASTERRS_H__ 27 | #define __RASTERRS_H__ 28 | 29 | #include FT_MODULE_ERRORS_H 30 | 31 | #undef __FTERRORS_H__ 32 | 33 | #undef FT_ERR_PREFIX 34 | #define FT_ERR_PREFIX Raster_Err_ 35 | #define FT_ERR_BASE FT_Mod_Err_Raster 36 | 37 | #include FT_ERRORS_H 38 | 39 | #endif /* __RASTERRS_H__ */ 40 | 41 | 42 | /* END */ 43 | -------------------------------------------------------------------------------- /libs/freetype/sfnt/sfdriver.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* sfdriver.h */ 4 | /* */ 5 | /* High-level SFNT driver interface (specification). */ 6 | /* */ 7 | /* Copyright 1996-2001 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __SFDRIVER_H__ 20 | #define __SFDRIVER_H__ 21 | 22 | 23 | #include 24 | #include FT_MODULE_H 25 | 26 | 27 | FT_BEGIN_HEADER 28 | 29 | 30 | FT_DECLARE_MODULE( sfnt_module_class ) 31 | 32 | 33 | FT_END_HEADER 34 | 35 | #endif /* __SFDRIVER_H__ */ 36 | 37 | 38 | /* END */ 39 | -------------------------------------------------------------------------------- /libs/freetype/sfnt/sferrors.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* sferrors.h */ 4 | /* */ 5 | /* SFNT error codes (specification only). */ 6 | /* */ 7 | /* Copyright 2001, 2004, 2012 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | /*************************************************************************/ 20 | /* */ 21 | /* This file is used to define the SFNT error enumeration constants. */ 22 | /* */ 23 | /*************************************************************************/ 24 | 25 | #ifndef __SFERRORS_H__ 26 | #define __SFERRORS_H__ 27 | 28 | #include FT_MODULE_ERRORS_H 29 | 30 | #undef __FTERRORS_H__ 31 | 32 | #undef FT_ERR_PREFIX 33 | #define FT_ERR_PREFIX SFNT_Err_ 34 | #define FT_ERR_BASE FT_Mod_Err_SFNT 35 | 36 | #define FT_KEEP_ERR_PREFIX 37 | 38 | #include FT_ERRORS_H 39 | 40 | #endif /* __SFERRORS_H__ */ 41 | 42 | /* END */ 43 | -------------------------------------------------------------------------------- /libs/freetype/sfnt/sfnt.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* sfnt.c */ 4 | /* */ 5 | /* Single object library component. */ 6 | /* */ 7 | /* Copyright 1996-2001, 2002, 2003, 2004, 2005, 2006 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #define FT_MAKE_OPTION_SINGLE_OBJECT 20 | 21 | #include 22 | #include "sfntpic.c" 23 | #include "ttload.c" 24 | #include "ttmtx.c" 25 | #include "ttcmap.c" 26 | #include "ttkern.c" 27 | #include "sfobjs.c" 28 | #include "sfdriver.c" 29 | 30 | #ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS 31 | #include "ttsbit.c" 32 | #endif 33 | 34 | #ifdef TT_CONFIG_OPTION_POSTSCRIPT_NAMES 35 | #include "ttpost.c" 36 | #endif 37 | 38 | #ifdef TT_CONFIG_OPTION_BDF 39 | #include "ttbdf.c" 40 | #endif 41 | 42 | /* END */ 43 | -------------------------------------------------------------------------------- /libs/freetype/sfnt/sfobjs.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* sfobjs.h */ 4 | /* */ 5 | /* SFNT object management (specification). */ 6 | /* */ 7 | /* Copyright 1996-2001, 2002 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __SFOBJS_H__ 20 | #define __SFOBJS_H__ 21 | 22 | 23 | #include 24 | #include FT_INTERNAL_SFNT_H 25 | #include FT_INTERNAL_OBJECTS_H 26 | 27 | 28 | FT_BEGIN_HEADER 29 | 30 | 31 | FT_LOCAL( FT_Error ) 32 | sfnt_init_face( FT_Stream stream, 33 | TT_Face face, 34 | FT_Int face_index, 35 | FT_Int num_params, 36 | FT_Parameter* params ); 37 | 38 | FT_LOCAL( FT_Error ) 39 | sfnt_load_face( FT_Stream stream, 40 | TT_Face face, 41 | FT_Int face_index, 42 | FT_Int num_params, 43 | FT_Parameter* params ); 44 | 45 | FT_LOCAL( void ) 46 | sfnt_done_face( TT_Face face ); 47 | 48 | 49 | FT_END_HEADER 50 | 51 | #endif /* __SFDRIVER_H__ */ 52 | 53 | 54 | /* END */ 55 | -------------------------------------------------------------------------------- /libs/freetype/sfnt/ttbdf.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ttbdf.h */ 4 | /* */ 5 | /* TrueType and OpenType embedded BDF properties (specification). */ 6 | /* */ 7 | /* Copyright 2005 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __TTBDF_H__ 20 | #define __TTBDF_H__ 21 | 22 | 23 | #include 24 | #include "ttload.h" 25 | #include FT_BDF_H 26 | 27 | 28 | FT_BEGIN_HEADER 29 | 30 | 31 | FT_LOCAL( void ) 32 | tt_face_free_bdf_props( TT_Face face ); 33 | 34 | 35 | FT_LOCAL( FT_Error ) 36 | tt_face_find_bdf_prop( TT_Face face, 37 | const char* property_name, 38 | BDF_PropertyRec *aprop ); 39 | 40 | 41 | FT_END_HEADER 42 | 43 | #endif /* __TTBDF_H__ */ 44 | 45 | 46 | /* END */ 47 | -------------------------------------------------------------------------------- /libs/freetype/sfnt/ttcmapc.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ttcmapc.h */ 4 | /* */ 5 | /* TT CMAP classes definitions (specification only). */ 6 | /* */ 7 | /* Copyright 2009 by */ 8 | /* Oran Agra and Mickey Gabel. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifdef TT_CONFIG_CMAP_FORMAT_0 20 | TTCMAPCITEM(tt_cmap0_class_rec) 21 | #endif 22 | 23 | #ifdef TT_CONFIG_CMAP_FORMAT_2 24 | TTCMAPCITEM(tt_cmap2_class_rec) 25 | #endif 26 | 27 | #ifdef TT_CONFIG_CMAP_FORMAT_4 28 | TTCMAPCITEM(tt_cmap4_class_rec) 29 | #endif 30 | 31 | #ifdef TT_CONFIG_CMAP_FORMAT_6 32 | TTCMAPCITEM(tt_cmap6_class_rec) 33 | #endif 34 | 35 | #ifdef TT_CONFIG_CMAP_FORMAT_8 36 | TTCMAPCITEM(tt_cmap8_class_rec) 37 | #endif 38 | 39 | #ifdef TT_CONFIG_CMAP_FORMAT_10 40 | TTCMAPCITEM(tt_cmap10_class_rec) 41 | #endif 42 | 43 | #ifdef TT_CONFIG_CMAP_FORMAT_12 44 | TTCMAPCITEM(tt_cmap12_class_rec) 45 | #endif 46 | 47 | #ifdef TT_CONFIG_CMAP_FORMAT_13 48 | TTCMAPCITEM(tt_cmap13_class_rec) 49 | #endif 50 | 51 | #ifdef TT_CONFIG_CMAP_FORMAT_14 52 | TTCMAPCITEM(tt_cmap14_class_rec) 53 | #endif 54 | 55 | /* END */ 56 | -------------------------------------------------------------------------------- /libs/freetype/sfnt/ttkern.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ttkern.h */ 4 | /* */ 5 | /* Load the basic TrueType kerning table. This doesn't handle */ 6 | /* kerning data within the GPOS table at the moment. */ 7 | /* */ 8 | /* Copyright 1996-2001, 2002, 2005, 2007 by */ 9 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 10 | /* */ 11 | /* This file is part of the FreeType project, and may only be used, */ 12 | /* modified, and distributed under the terms of the FreeType project */ 13 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 14 | /* this file you indicate that you have read the license and */ 15 | /* understand and accept it fully. */ 16 | /* */ 17 | /***************************************************************************/ 18 | 19 | 20 | #ifndef __TTKERN_H__ 21 | #define __TTKERN_H__ 22 | 23 | 24 | #include 25 | #include FT_INTERNAL_STREAM_H 26 | #include FT_INTERNAL_TRUETYPE_TYPES_H 27 | 28 | 29 | FT_BEGIN_HEADER 30 | 31 | 32 | FT_LOCAL( FT_Error ) 33 | tt_face_load_kern( TT_Face face, 34 | FT_Stream stream ); 35 | 36 | FT_LOCAL( void ) 37 | tt_face_done_kern( TT_Face face ); 38 | 39 | FT_LOCAL( FT_Int ) 40 | tt_face_get_kerning( TT_Face face, 41 | FT_UInt left_glyph, 42 | FT_UInt right_glyph ); 43 | 44 | #define TT_FACE_HAS_KERNING( face ) ( (face)->kern_avail_bits != 0 ) 45 | 46 | 47 | FT_END_HEADER 48 | 49 | #endif /* __TTKERN_H__ */ 50 | 51 | 52 | /* END */ 53 | -------------------------------------------------------------------------------- /libs/freetype/sfnt/ttmtx.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ttmtx.h */ 4 | /* */ 5 | /* Load the metrics tables common to TTF and OTF fonts (specification). */ 6 | /* */ 7 | /* Copyright 2006 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __TTMTX_H__ 20 | #define __TTMTX_H__ 21 | 22 | 23 | #include 24 | #include FT_INTERNAL_STREAM_H 25 | #include FT_INTERNAL_TRUETYPE_TYPES_H 26 | 27 | 28 | FT_BEGIN_HEADER 29 | 30 | 31 | FT_LOCAL( FT_Error ) 32 | tt_face_load_hhea( TT_Face face, 33 | FT_Stream stream, 34 | FT_Bool vertical ); 35 | 36 | 37 | FT_LOCAL( FT_Error ) 38 | tt_face_load_hmtx( TT_Face face, 39 | FT_Stream stream, 40 | FT_Bool vertical ); 41 | 42 | 43 | FT_LOCAL( FT_Error ) 44 | tt_face_get_metrics( TT_Face face, 45 | FT_Bool vertical, 46 | FT_UInt gindex, 47 | FT_Short* abearing, 48 | FT_UShort* aadvance ); 49 | 50 | FT_END_HEADER 51 | 52 | #endif /* __TTMTX_H__ */ 53 | 54 | 55 | /* END */ 56 | -------------------------------------------------------------------------------- /libs/freetype/sfnt/ttpost.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ttpost.h */ 4 | /* */ 5 | /* Postcript name table processing for TrueType and OpenType fonts */ 6 | /* (specification). */ 7 | /* */ 8 | /* Copyright 1996-2001, 2002 by */ 9 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 10 | /* */ 11 | /* This file is part of the FreeType project, and may only be used, */ 12 | /* modified, and distributed under the terms of the FreeType project */ 13 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 14 | /* this file you indicate that you have read the license and */ 15 | /* understand and accept it fully. */ 16 | /* */ 17 | /***************************************************************************/ 18 | 19 | 20 | #ifndef __TTPOST_H__ 21 | #define __TTPOST_H__ 22 | 23 | 24 | #include 25 | #include FT_CONFIG_CONFIG_H 26 | #include FT_INTERNAL_TRUETYPE_TYPES_H 27 | 28 | 29 | FT_BEGIN_HEADER 30 | 31 | 32 | FT_LOCAL( FT_Error ) 33 | tt_face_get_ps_name( TT_Face face, 34 | FT_UInt idx, 35 | FT_String** PSname ); 36 | 37 | FT_LOCAL( void ) 38 | tt_face_free_ps_names( TT_Face face ); 39 | 40 | 41 | FT_END_HEADER 42 | 43 | #endif /* __TTPOST_H__ */ 44 | 45 | 46 | /* END */ 47 | -------------------------------------------------------------------------------- /libs/freetype/smooth/ftsmerrs.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ftsmerrs.h */ 4 | /* */ 5 | /* smooth renderer error codes (specification only). */ 6 | /* */ 7 | /* Copyright 2001, 2012 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | /*************************************************************************/ 20 | /* */ 21 | /* This file is used to define the smooth renderer error enumeration */ 22 | /* constants. */ 23 | /* */ 24 | /*************************************************************************/ 25 | 26 | #ifndef __FTSMERRS_H__ 27 | #define __FTSMERRS_H__ 28 | 29 | #include FT_MODULE_ERRORS_H 30 | 31 | #undef __FTERRORS_H__ 32 | 33 | #undef FT_ERR_PREFIX 34 | #define FT_ERR_PREFIX Smooth_Err_ 35 | #define FT_ERR_BASE FT_Mod_Err_Smooth 36 | 37 | #include FT_ERRORS_H 38 | 39 | #endif /* __FTSMERRS_H__ */ 40 | 41 | 42 | /* END */ 43 | -------------------------------------------------------------------------------- /libs/freetype/smooth/ftsmooth.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ftsmooth.h */ 4 | /* */ 5 | /* Anti-aliasing renderer interface (specification). */ 6 | /* */ 7 | /* Copyright 1996-2001 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __FTSMOOTH_H__ 20 | #define __FTSMOOTH_H__ 21 | 22 | 23 | #include 24 | #include FT_RENDER_H 25 | 26 | 27 | FT_BEGIN_HEADER 28 | 29 | 30 | #ifndef FT_CONFIG_OPTION_NO_STD_RASTER 31 | FT_DECLARE_RENDERER( ft_std_renderer_class ) 32 | #endif 33 | 34 | #ifndef FT_CONFIG_OPTION_NO_SMOOTH_RASTER 35 | FT_DECLARE_RENDERER( ft_smooth_renderer_class ) 36 | 37 | FT_DECLARE_RENDERER( ft_smooth_lcd_renderer_class ) 38 | 39 | FT_DECLARE_RENDERER( ft_smooth_lcd_v_renderer_class ) 40 | #endif 41 | 42 | 43 | 44 | FT_END_HEADER 45 | 46 | #endif /* __FTSMOOTH_H__ */ 47 | 48 | 49 | /* END */ 50 | -------------------------------------------------------------------------------- /libs/freetype/smooth/smooth.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* smooth.c */ 4 | /* */ 5 | /* FreeType anti-aliasing rasterer module component (body only). */ 6 | /* */ 7 | /* Copyright 1996-2001 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #define FT_MAKE_OPTION_SINGLE_OBJECT 20 | 21 | #include 22 | #include "ftspic.c" 23 | #include "ftgrays.c" 24 | #include "ftsmooth.c" 25 | 26 | 27 | /* END */ 28 | -------------------------------------------------------------------------------- /libs/freetype/truetype/truetype.c: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* truetype.c */ 4 | /* */ 5 | /* FreeType TrueType driver component (body only). */ 6 | /* */ 7 | /* Copyright 1996-2001, 2004, 2006 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #define FT_MAKE_OPTION_SINGLE_OBJECT 20 | 21 | #include 22 | #include "ttpic.c" 23 | #include "ttdriver.c" /* driver interface */ 24 | #include "ttpload.c" /* tables loader */ 25 | #include "ttgload.c" /* glyph loader */ 26 | #include "ttobjs.c" /* object manager */ 27 | 28 | #ifdef TT_USE_BYTECODE_INTERPRETER 29 | #include "ttinterp.c" 30 | #include "ttsubpix.c" 31 | #endif 32 | 33 | #ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT 34 | #include "ttgxvar.c" /* gx distortable font */ 35 | #endif 36 | 37 | 38 | /* END */ 39 | -------------------------------------------------------------------------------- /libs/freetype/truetype/ttdriver.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ttdriver.h */ 4 | /* */ 5 | /* High-level TrueType driver interface (specification). */ 6 | /* */ 7 | /* Copyright 1996-2001, 2002 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __TTDRIVER_H__ 20 | #define __TTDRIVER_H__ 21 | 22 | 23 | #include 24 | #include FT_INTERNAL_DRIVER_H 25 | 26 | 27 | FT_BEGIN_HEADER 28 | 29 | 30 | FT_DECLARE_DRIVER( tt_driver_class ) 31 | 32 | 33 | FT_END_HEADER 34 | 35 | #endif /* __TTDRIVER_H__ */ 36 | 37 | 38 | /* END */ 39 | -------------------------------------------------------------------------------- /libs/freetype/truetype/tterrors.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* tterrors.h */ 4 | /* */ 5 | /* TrueType error codes (specification only). */ 6 | /* */ 7 | /* Copyright 2001, 2012 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | /*************************************************************************/ 20 | /* */ 21 | /* This file is used to define the TrueType error enumeration */ 22 | /* constants. */ 23 | /* */ 24 | /*************************************************************************/ 25 | 26 | #ifndef __TTERRORS_H__ 27 | #define __TTERRORS_H__ 28 | 29 | #include FT_MODULE_ERRORS_H 30 | 31 | #undef __FTERRORS_H__ 32 | 33 | #undef FT_ERR_PREFIX 34 | #define FT_ERR_PREFIX TT_Err_ 35 | #define FT_ERR_BASE FT_Mod_Err_TrueType 36 | 37 | #include FT_ERRORS_H 38 | 39 | #endif /* __TTERRORS_H__ */ 40 | 41 | /* END */ 42 | -------------------------------------------------------------------------------- /libs/freetype/truetype/ttgload.h: -------------------------------------------------------------------------------- 1 | /***************************************************************************/ 2 | /* */ 3 | /* ttgload.h */ 4 | /* */ 5 | /* TrueType Glyph Loader (specification). */ 6 | /* */ 7 | /* Copyright 1996-2006, 2008, 2011 by */ 8 | /* David Turner, Robert Wilhelm, and Werner Lemberg. */ 9 | /* */ 10 | /* This file is part of the FreeType project, and may only be used, */ 11 | /* modified, and distributed under the terms of the FreeType project */ 12 | /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 13 | /* this file you indicate that you have read the license and */ 14 | /* understand and accept it fully. */ 15 | /* */ 16 | /***************************************************************************/ 17 | 18 | 19 | #ifndef __TTGLOAD_H__ 20 | #define __TTGLOAD_H__ 21 | 22 | 23 | #include 24 | #include "ttobjs.h" 25 | 26 | #ifdef TT_USE_BYTECODE_INTERPRETER 27 | #include "ttinterp.h" 28 | #endif 29 | 30 | 31 | FT_BEGIN_HEADER 32 | 33 | 34 | FT_LOCAL( void ) 35 | TT_Init_Glyph_Loading( TT_Face face ); 36 | 37 | FT_LOCAL( void ) 38 | TT_Get_HMetrics( TT_Face face, 39 | FT_UInt idx, 40 | FT_Short* lsb, 41 | FT_UShort* aw ); 42 | 43 | FT_LOCAL( void ) 44 | TT_Get_VMetrics( TT_Face face, 45 | FT_UInt idx, 46 | FT_Short* tsb, 47 | FT_UShort* ah ); 48 | 49 | FT_LOCAL( FT_Error ) 50 | TT_Load_Glyph( TT_Size size, 51 | TT_GlyphSlot glyph, 52 | FT_UInt glyph_index, 53 | FT_Int32 load_flags ); 54 | 55 | 56 | FT_END_HEADER 57 | 58 | #endif /* __TTGLOAD_H__ */ 59 | 60 | 61 | /* END */ 62 | -------------------------------------------------------------------------------- /libs/minzip/DirUtil.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2007 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #ifndef MINZIP_DIRUTIL_H_ 18 | #define MINZIP_DIRUTIL_H_ 19 | 20 | #include 21 | #include 22 | 23 | /* Like "mkdir -p", try to guarantee that all directories 24 | * specified in path are present, creating as many directories 25 | * as necessary. The specified mode is passed to all mkdir 26 | * calls; no modifications are made to umask. 27 | * 28 | * If stripFileName is set, everything after the final '/' 29 | * is stripped before creating the directory hierarchy. 30 | * 31 | * If timestamp is non-NULL, new directories will be timestamped accordingly. 32 | * 33 | * Returns 0 on success; returns -1 (and sets errno) on failure 34 | * (usually if some element of path is not a directory). 35 | */ 36 | int dirCreateHierarchy(const char *path, int mode, 37 | const struct utimbuf *timestamp, bool stripFileName); 38 | 39 | /* rm -rf 40 | */ 41 | int dirUnlinkHierarchy(const char *path); 42 | 43 | /* chown -R : 44 | * chmod -R 45 | * 46 | * Sets directories to and files to . Skips symlinks. 47 | */ 48 | int dirSetHierarchyPermissions(const char *path, 49 | int uid, int gid, int dirMode, int fileMode); 50 | 51 | #endif // MINZIP_DIRUTIL_H_ 52 | -------------------------------------------------------------------------------- /libs/minzip/Inlines.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2007 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | /* Make sure that non-inlined versions of INLINED-marked functions 18 | * exist so that debug builds (which don't generally do inlining) 19 | * don't break. 20 | */ 21 | #define MINZIP_GENERATE_INLINES 1 22 | #include "Bits.h" 23 | #include "Hash.h" 24 | #include "SysUtil.h" 25 | #include "Zip.h" 26 | -------------------------------------------------------------------------------- /libs/minzip/SysUtil.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2006 The Android Open Source Project 3 | * 4 | * System utilities. 5 | */ 6 | #ifndef _MINZIP_SYSUTIL 7 | #define _MINZIP_SYSUTIL 8 | 9 | #include "inline_magic.h" 10 | 11 | #include 12 | 13 | /* 14 | * Use this to keep track of mapped segments. 15 | */ 16 | typedef struct MemMapping { 17 | void* addr; /* start of data */ 18 | size_t length; /* length of data */ 19 | 20 | void* baseAddr; /* page-aligned base address */ 21 | size_t baseLength; /* length of mapping */ 22 | } MemMapping; 23 | 24 | /* copy a map */ 25 | INLINE void sysCopyMap(MemMapping* dst, const MemMapping* src) { 26 | *dst = *src; 27 | } 28 | 29 | /* 30 | * Load a file into a new shared memory segment. All data from the current 31 | * offset to the end of the file is pulled in. 32 | * 33 | * The segment is read-write, allowing VM fixups. (It should be modified 34 | * to support .gz/.zip compressed data.) 35 | * 36 | * On success, "pMap" is filled in, and zero is returned. 37 | */ 38 | int sysLoadFileInShmem(int fd, MemMapping* pMap); 39 | 40 | /* 41 | * Map a file (from fd's current offset) into a shared, 42 | * read-only memory segment. 43 | * 44 | * On success, "pMap" is filled in, and zero is returned. 45 | */ 46 | int sysMapFileInShmem(int fd, MemMapping* pMap); 47 | 48 | /* 49 | * Like sysMapFileInShmem, but on only part of a file. 50 | */ 51 | int sysMapFileSegmentInShmem(int fd, off_t start, long length, 52 | MemMapping* pMap); 53 | 54 | /* 55 | * Release the pages associated with a shared memory segment. 56 | * 57 | * This does not free "pMap"; it just releases the memory. 58 | */ 59 | void sysReleaseShmem(MemMapping* pMap); 60 | 61 | #endif /*_MINZIP_SYSUTIL*/ 62 | -------------------------------------------------------------------------------- /libs/minzip/inline_magic.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2007 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #ifndef MINZIP_INLINE_MAGIC_H_ 18 | #define MINZIP_INLINE_MAGIC_H_ 19 | 20 | #ifndef MINZIP_GENERATE_INLINES 21 | #define INLINE extern __inline__ 22 | #else 23 | #define INLINE 24 | #endif 25 | 26 | #endif // MINZIP_INLINE_MAGIC_H_ 27 | -------------------------------------------------------------------------------- /libs/png/pngusr.h: -------------------------------------------------------------------------------- 1 | #define PNG_USER_PRIVATEBUILD "Skia build; no MNG features" 2 | #define PNG_USER_DLLFNAME_POSTFIX "Sk" 3 | #define PNG_NO_MNG_FEATURES 4 | #define PNG_NO_READ_GAMMA 5 | -------------------------------------------------------------------------------- /libs/png/pngvcrd.c: -------------------------------------------------------------------------------- 1 | /* pnggvrd.c was removed from libpng-1.2.20. */ 2 | -------------------------------------------------------------------------------- /libs/zlib/inffast.h: -------------------------------------------------------------------------------- 1 | /* inffast.h -- header to use inffast.c 2 | * Copyright (C) 1995-2003, 2010 Mark Adler 3 | * For conditions of distribution and use, see copyright notice in zlib.h 4 | */ 5 | 6 | /* WARNING: this file should *not* be used by applications. It is 7 | part of the implementation of the compression library and is 8 | subject to change. Applications should only use zlib.h. 9 | */ 10 | 11 | void ZLIB_INTERNAL inflate_fast OF((z_streamp strm, unsigned start)); 12 | -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | echo COMPILING AROMA INSTALLER 3 | echo ========================= 4 | echo. 5 | echo * Creating directories 6 | mkdir obj 7 | mkdir out 8 | cd obj 9 | echo. 10 | echo * Compiling... This may take a moments... 11 | echo. 12 | 13 | D:\DevelTools\cndk\arm\bin\arm-none-linux-gnueabi-gcc ^ 14 | -O2 -static -fdata-sections ^ 15 | -ffunction-sections ^ 16 | -Wl,--gc-sections ^ 17 | -fPIC -DPIC ^ 18 | -Wl,-s -Werror ^ 19 | -D_GLIBCXX_DEBUG_PEDANTIC ^ 20 | -D_GLIBCXX_DEBUG ^ 21 | -D_AROMA_NODEBUG ^ 22 | -DFT2_BUILD_LIBRARY=1 ^ 23 | -DDARWIN_NO_CARBON ^ 24 | -mfloat-abi=softfp -mfpu=neon ^ 25 | -D__ARM_HAVE_NEON ^ 26 | ^ 27 | *.o ^ 28 | ^ 29 | ../src/libs/*.c ^ 30 | ../src/controls/*.c ^ 31 | ../src/main/*.c ^ 32 | ^ 33 | -I../include ^ 34 | -I../src ^ 35 | -o ../out/aroma_installer ^ 36 | -lm -lpthread 37 | 38 | echo. 39 | cd .. 40 | 41 | echo * Copying binary into release 42 | echo. 43 | copy out\aroma_installer assets\META-INF\com\google\android\update-binary 44 | echo. 45 | 46 | echo Press Enter to Build Release ZIP 47 | pause 48 | echo * Creating Release Zip 49 | cd assets 50 | ..\tools\7z a -mx9 -tzip ..\out/aroma.zip . 51 | cd .. 52 | 53 | 54 | echo ============================= 55 | echo CTRL-C = Exit, Enter = Deploy 56 | echo. 57 | pause 58 | echo. 59 | deploy.bat -------------------------------------------------------------------------------- /out/out_folder.txt: -------------------------------------------------------------------------------- 1 | Output Binary and Zip Here -------------------------------------------------------------------------------- /push.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | echo Pushing... 3 | D:\DevelTools\sdk\platform-tools\adb shell mount -a 4 | D:\DevelTools\sdk\platform-tools\adb shell mkdir -p /sdcard/0/ 5 | echo Copiying zip file 6 | D:\DevelTools\sdk\platform-tools\adb push out/aroma.zip /sdcard/0/aroma.zip 7 | pause -------------------------------------------------------------------------------- /src/aroma_mem.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ ) 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | // 18 | // MALLOC WRAPPER 19 | // 20 | #ifndef __AROMA_MEM_H__ 21 | #define __AROMA_MEM_H__ 22 | 23 | #define __CURR_FILE() __FILE__ 24 | #define __CURR_LINE() __LINE__ 25 | 26 | void * aroma_malloc(size_t size 27 | #ifndef _AROMA_NODEBUG 28 | , long line, char * filename 29 | #endif 30 | ); 31 | 32 | void * aroma_realloc(void * x, size_t size 33 | #ifndef _AROMA_NODEBUG 34 | , long line, char * filename 35 | #endif 36 | ); 37 | 38 | void aroma_memory_parentpid(int parent_pid); 39 | void aroma_memory_terminate(const char * message); 40 | 41 | #ifndef malloc 42 | 43 | #ifndef _AROMA_NODEBUG 44 | #define malloc(x) aroma_malloc(x,__CURR_LINE(), __CURR_FILE()) 45 | #else 46 | #define malloc(x) aroma_malloc(x) 47 | #endif 48 | 49 | #ifndef _AROMA_NODEBUG 50 | #define realloc(x,s) aroma_realloc(x,s,__CURR_LINE(), __CURR_FILE()) 51 | #else 52 | #define realloc(x,s) aroma_realloc(x,s) 53 | #endif 54 | 55 | void aroma_free(void ** x); 56 | #define free(x) aroma_free((void **) &x) 57 | 58 | #endif 59 | 60 | #ifndef _AROMA_NODEBUG 61 | void aroma_memory_debug_init(); 62 | void aroma_dump_malloc(); 63 | #endif 64 | 65 | #endif -------------------------------------------------------------------------------- /src/edify/yydefs.h: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2009 The Android Open Source Project 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | #ifndef _YYDEFS_H_ 18 | #define _YYDEFS_H_ 19 | 20 | #define YYLTYPE YYLTYPE 21 | typedef struct { 22 | int start, end; 23 | } YYLTYPE; 24 | 25 | #define YYLLOC_DEFAULT(Current, Rhs, N) \ 26 | do { \ 27 | if (N) { \ 28 | (Current).start = YYRHSLOC(Rhs, 1).start; \ 29 | (Current).end = YYRHSLOC(Rhs, N).end; \ 30 | } else { \ 31 | (Current).start = YYRHSLOC(Rhs, 0).start; \ 32 | (Current).end = YYRHSLOC(Rhs, 0).end; \ 33 | } \ 34 | } while (0) 35 | 36 | int yylex(); 37 | 38 | #endif 39 | -------------------------------------------------------------------------------- /tools/7z.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/tools/7z.dll -------------------------------------------------------------------------------- /tools/7z.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/tools/7z.exe -------------------------------------------------------------------------------- /tools/7z.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/tools/7z.sfx -------------------------------------------------------------------------------- /tools/7zCon.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/tools/7zCon.sfx -------------------------------------------------------------------------------- /tools/AStyle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amarullz/AROMA-Installer/de82ccc5c4f832ef2a495300f2c4a85c74a9a4d3/tools/AStyle.exe -------------------------------------------------------------------------------- /tools/android_building.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | AROMA_LOCAL_PATH=$(dirname $(dirname $0)) 3 | AROMA_BINARY="out/aroma_installer" 4 | cd $AROMA_LOCAL_PATH 5 | 6 | # 7 | # Copy Binary 8 | # 9 | if [ ! -x $AROMA_BINARY ] 10 | then 11 | echo "0" 12 | exit 13 | fi 14 | 15 | rm -rf out/aroma.zip 16 | rm -rf assets/META-INF/com/google/android/update-binary 17 | 18 | cp $AROMA_BINARY assets/META-INF/com/google/android/update-binary 19 | cd assets 20 | zip -r9q ../out/aroma.zip . 21 | cd .. 22 | echo "1" 23 | -------------------------------------------------------------------------------- /tools/beauty.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | AStyle -A2 --indent=spaces=2 -S -K -L -w -Y -f -p -H -xe -E -k2 -W3 -y -j -n -r -v -Q -z2 ../src/*.c ../src/*.h 3 | pause --------------------------------------------------------------------------------