├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── android ├── AndroidManifest.xml ├── audio.c ├── freetype.c ├── gl.c ├── main.c ├── main.h └── res │ └── drawable │ └── i.png ├── avatar.c ├── avatar.h ├── button.c ├── button.h ├── cocoa ├── Info.plist ├── MainMenu.xib ├── Makefile ├── cursor.h ├── drawing.m ├── find_static.sh ├── frozen_dmg.tar.bz2 ├── grabdesktop.m ├── interaction.m ├── main.h ├── main.m ├── make_dmg.sh ├── make_info_plist.sh ├── objc_main.h ├── utox.iconset │ ├── icon_128x128.png │ ├── icon_16x16.png │ ├── icon_256x256.png │ ├── icon_32x32.png │ ├── icon_512x512.png │ └── icon_512x512@2x.png └── video.m ├── commands.c ├── commands.h ├── contextmenu.c ├── contextmenu.h ├── dns.c ├── dns.h ├── docs ├── BUILD.md ├── COCOA.md └── INSTALL.md ├── dropdown.c ├── dropdown.h ├── edit.c ├── edit.h ├── file_transfers.c ├── file_transfers.h ├── friend.c ├── friend.h ├── icons ├── icon.ico ├── icon.rc ├── icon_unread.ico ├── utox-128x128.png ├── utox-14x14.png ├── utox-16x16.png ├── utox-192x192.png ├── utox-22x22.png ├── utox-24x24.png ├── utox-256x256.png ├── utox-32x32.png ├── utox-36x36.png ├── utox-48x48.png ├── utox-512x512.png ├── utox-64x64.png ├── utox-72x72.png ├── utox-96x96.png └── utox.svg ├── images ├── uTox-win32.png └── uTox-xlib.png ├── langs ├── bg.h ├── br.h ├── cn.h ├── cs.h ├── da.h ├── de.h ├── en.h ├── es.h ├── fr.h ├── hi.h ├── hu.h ├── it.h ├── ja.h ├── lv.h ├── nl.h ├── no.h ├── pl.h ├── pt.h ├── ro.h ├── ru.h ├── sv.h ├── tr.h ├── tw.h └── ua.h ├── list.c ├── list.h ├── main.c ├── main.h ├── messages.c ├── messages.h ├── png ├── png.c └── png.h ├── scrollable.c ├── scrollable.h ├── shared └── freetype-text.c ├── sized_string.h ├── svg.c ├── svg.h ├── text.c ├── text.h ├── theme.c ├── theme.h ├── theme_tables.h ├── tools ├── android-build.sh ├── cross-compile-windows.sh └── logs_to_plaintext.c ├── tooltip.c ├── tooltip.h ├── tox.c ├── tox.h ├── tox_av.h ├── tox_bootstrap.h ├── tox_callbacks.h ├── ui.c ├── ui.h ├── ui_buttons.h ├── ui_dropdown.c ├── ui_dropdown.h ├── ui_edits.h ├── ui_i18n.c ├── ui_i18n.h ├── ui_i18n_decls.h ├── unused.h ├── util.c ├── util.h ├── utox.1 ├── utox.desktop ├── utox_theme.ini ├── windows ├── audio.c ├── dnd.c ├── example.reg ├── main.7.c ├── main.XP.c ├── main.c └── main.h └── xlib ├── audio.c ├── dbus.c ├── event.c ├── freetype.c ├── gtk.c ├── keysym2ucs.c ├── main.c ├── main.h ├── mmenu.c ├── mmenu.h └── v4l.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/README.md -------------------------------------------------------------------------------- /android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/android/audio.c -------------------------------------------------------------------------------- /android/freetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/android/freetype.c -------------------------------------------------------------------------------- /android/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/android/gl.c -------------------------------------------------------------------------------- /android/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/android/main.c -------------------------------------------------------------------------------- /android/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/android/main.h -------------------------------------------------------------------------------- /android/res/drawable/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/android/res/drawable/i.png -------------------------------------------------------------------------------- /avatar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/avatar.c -------------------------------------------------------------------------------- /avatar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/avatar.h -------------------------------------------------------------------------------- /button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/button.c -------------------------------------------------------------------------------- /button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/button.h -------------------------------------------------------------------------------- /cocoa/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/Info.plist -------------------------------------------------------------------------------- /cocoa/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/MainMenu.xib -------------------------------------------------------------------------------- /cocoa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/Makefile -------------------------------------------------------------------------------- /cocoa/cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/cursor.h -------------------------------------------------------------------------------- /cocoa/drawing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/drawing.m -------------------------------------------------------------------------------- /cocoa/find_static.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/find_static.sh -------------------------------------------------------------------------------- /cocoa/frozen_dmg.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/frozen_dmg.tar.bz2 -------------------------------------------------------------------------------- /cocoa/grabdesktop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/grabdesktop.m -------------------------------------------------------------------------------- /cocoa/interaction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/interaction.m -------------------------------------------------------------------------------- /cocoa/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/main.h -------------------------------------------------------------------------------- /cocoa/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/main.m -------------------------------------------------------------------------------- /cocoa/make_dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/make_dmg.sh -------------------------------------------------------------------------------- /cocoa/make_info_plist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/make_info_plist.sh -------------------------------------------------------------------------------- /cocoa/objc_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/objc_main.h -------------------------------------------------------------------------------- /cocoa/utox.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/utox.iconset/icon_128x128.png -------------------------------------------------------------------------------- /cocoa/utox.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/utox.iconset/icon_16x16.png -------------------------------------------------------------------------------- /cocoa/utox.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/utox.iconset/icon_256x256.png -------------------------------------------------------------------------------- /cocoa/utox.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/utox.iconset/icon_32x32.png -------------------------------------------------------------------------------- /cocoa/utox.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/utox.iconset/icon_512x512.png -------------------------------------------------------------------------------- /cocoa/utox.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/utox.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /cocoa/video.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/cocoa/video.m -------------------------------------------------------------------------------- /commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/commands.c -------------------------------------------------------------------------------- /commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/commands.h -------------------------------------------------------------------------------- /contextmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/contextmenu.c -------------------------------------------------------------------------------- /contextmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/contextmenu.h -------------------------------------------------------------------------------- /dns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/dns.c -------------------------------------------------------------------------------- /dns.h: -------------------------------------------------------------------------------- 1 | void dns_request(char_t *name, uint16_t length); 2 | -------------------------------------------------------------------------------- /docs/BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/docs/BUILD.md -------------------------------------------------------------------------------- /docs/COCOA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/docs/COCOA.md -------------------------------------------------------------------------------- /docs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/docs/INSTALL.md -------------------------------------------------------------------------------- /dropdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/dropdown.c -------------------------------------------------------------------------------- /dropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/dropdown.h -------------------------------------------------------------------------------- /edit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/edit.c -------------------------------------------------------------------------------- /edit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/edit.h -------------------------------------------------------------------------------- /file_transfers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/file_transfers.c -------------------------------------------------------------------------------- /file_transfers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/file_transfers.h -------------------------------------------------------------------------------- /friend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/friend.c -------------------------------------------------------------------------------- /friend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/friend.h -------------------------------------------------------------------------------- /icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/icon.ico -------------------------------------------------------------------------------- /icons/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/icon.rc -------------------------------------------------------------------------------- /icons/icon_unread.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/icon_unread.ico -------------------------------------------------------------------------------- /icons/utox-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-128x128.png -------------------------------------------------------------------------------- /icons/utox-14x14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-14x14.png -------------------------------------------------------------------------------- /icons/utox-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-16x16.png -------------------------------------------------------------------------------- /icons/utox-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-192x192.png -------------------------------------------------------------------------------- /icons/utox-22x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-22x22.png -------------------------------------------------------------------------------- /icons/utox-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-24x24.png -------------------------------------------------------------------------------- /icons/utox-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-256x256.png -------------------------------------------------------------------------------- /icons/utox-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-32x32.png -------------------------------------------------------------------------------- /icons/utox-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-36x36.png -------------------------------------------------------------------------------- /icons/utox-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-48x48.png -------------------------------------------------------------------------------- /icons/utox-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-512x512.png -------------------------------------------------------------------------------- /icons/utox-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-64x64.png -------------------------------------------------------------------------------- /icons/utox-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-72x72.png -------------------------------------------------------------------------------- /icons/utox-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox-96x96.png -------------------------------------------------------------------------------- /icons/utox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/icons/utox.svg -------------------------------------------------------------------------------- /images/uTox-win32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/images/uTox-win32.png -------------------------------------------------------------------------------- /images/uTox-xlib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/images/uTox-xlib.png -------------------------------------------------------------------------------- /langs/bg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/bg.h -------------------------------------------------------------------------------- /langs/br.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/br.h -------------------------------------------------------------------------------- /langs/cn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/cn.h -------------------------------------------------------------------------------- /langs/cs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/cs.h -------------------------------------------------------------------------------- /langs/da.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/da.h -------------------------------------------------------------------------------- /langs/de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/de.h -------------------------------------------------------------------------------- /langs/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/en.h -------------------------------------------------------------------------------- /langs/es.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/es.h -------------------------------------------------------------------------------- /langs/fr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/fr.h -------------------------------------------------------------------------------- /langs/hi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/hi.h -------------------------------------------------------------------------------- /langs/hu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/hu.h -------------------------------------------------------------------------------- /langs/it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/it.h -------------------------------------------------------------------------------- /langs/ja.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/ja.h -------------------------------------------------------------------------------- /langs/lv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/lv.h -------------------------------------------------------------------------------- /langs/nl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/nl.h -------------------------------------------------------------------------------- /langs/no.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/no.h -------------------------------------------------------------------------------- /langs/pl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/pl.h -------------------------------------------------------------------------------- /langs/pt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/pt.h -------------------------------------------------------------------------------- /langs/ro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/ro.h -------------------------------------------------------------------------------- /langs/ru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/ru.h -------------------------------------------------------------------------------- /langs/sv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/sv.h -------------------------------------------------------------------------------- /langs/tr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/tr.h -------------------------------------------------------------------------------- /langs/tw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/tw.h -------------------------------------------------------------------------------- /langs/ua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/langs/ua.h -------------------------------------------------------------------------------- /list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/list.c -------------------------------------------------------------------------------- /list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/list.h -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/main.h -------------------------------------------------------------------------------- /messages.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/messages.c -------------------------------------------------------------------------------- /messages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/messages.h -------------------------------------------------------------------------------- /png/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/png/png.c -------------------------------------------------------------------------------- /png/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/png/png.h -------------------------------------------------------------------------------- /scrollable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/scrollable.c -------------------------------------------------------------------------------- /scrollable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/scrollable.h -------------------------------------------------------------------------------- /shared/freetype-text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/shared/freetype-text.c -------------------------------------------------------------------------------- /sized_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/sized_string.h -------------------------------------------------------------------------------- /svg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/svg.c -------------------------------------------------------------------------------- /svg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/svg.h -------------------------------------------------------------------------------- /text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/text.c -------------------------------------------------------------------------------- /text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/text.h -------------------------------------------------------------------------------- /theme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/theme.c -------------------------------------------------------------------------------- /theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/theme.h -------------------------------------------------------------------------------- /theme_tables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/theme_tables.h -------------------------------------------------------------------------------- /tools/android-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/tools/android-build.sh -------------------------------------------------------------------------------- /tools/cross-compile-windows.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/tools/cross-compile-windows.sh -------------------------------------------------------------------------------- /tools/logs_to_plaintext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/tools/logs_to_plaintext.c -------------------------------------------------------------------------------- /tooltip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/tooltip.c -------------------------------------------------------------------------------- /tooltip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/tooltip.h -------------------------------------------------------------------------------- /tox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/tox.c -------------------------------------------------------------------------------- /tox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/tox.h -------------------------------------------------------------------------------- /tox_av.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/tox_av.h -------------------------------------------------------------------------------- /tox_bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/tox_bootstrap.h -------------------------------------------------------------------------------- /tox_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/tox_callbacks.h -------------------------------------------------------------------------------- /ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/ui.c -------------------------------------------------------------------------------- /ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/ui.h -------------------------------------------------------------------------------- /ui_buttons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/ui_buttons.h -------------------------------------------------------------------------------- /ui_dropdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/ui_dropdown.c -------------------------------------------------------------------------------- /ui_dropdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/ui_dropdown.h -------------------------------------------------------------------------------- /ui_edits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/ui_edits.h -------------------------------------------------------------------------------- /ui_i18n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/ui_i18n.c -------------------------------------------------------------------------------- /ui_i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/ui_i18n.h -------------------------------------------------------------------------------- /ui_i18n_decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/ui_i18n_decls.h -------------------------------------------------------------------------------- /unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/unused.h -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/util.h -------------------------------------------------------------------------------- /utox.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/utox.1 -------------------------------------------------------------------------------- /utox.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/utox.desktop -------------------------------------------------------------------------------- /utox_theme.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/utox_theme.ini -------------------------------------------------------------------------------- /windows/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/windows/audio.c -------------------------------------------------------------------------------- /windows/dnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/windows/dnd.c -------------------------------------------------------------------------------- /windows/example.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/windows/example.reg -------------------------------------------------------------------------------- /windows/main.7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/windows/main.7.c -------------------------------------------------------------------------------- /windows/main.XP.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/windows/main.XP.c -------------------------------------------------------------------------------- /windows/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/windows/main.c -------------------------------------------------------------------------------- /windows/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/windows/main.h -------------------------------------------------------------------------------- /xlib/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/xlib/audio.c -------------------------------------------------------------------------------- /xlib/dbus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/xlib/dbus.c -------------------------------------------------------------------------------- /xlib/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/xlib/event.c -------------------------------------------------------------------------------- /xlib/freetype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/xlib/freetype.c -------------------------------------------------------------------------------- /xlib/gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/xlib/gtk.c -------------------------------------------------------------------------------- /xlib/keysym2ucs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/xlib/keysym2ucs.c -------------------------------------------------------------------------------- /xlib/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/xlib/main.c -------------------------------------------------------------------------------- /xlib/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/xlib/main.h -------------------------------------------------------------------------------- /xlib/mmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/xlib/mmenu.c -------------------------------------------------------------------------------- /xlib/mmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/xlib/mmenu.h -------------------------------------------------------------------------------- /xlib/v4l.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notsecure/uTox/HEAD/xlib/v4l.c --------------------------------------------------------------------------------