about summary refs log tree commit diff stats
path: root/src/ui/window.h
Commit message (Collapse)AuthorAgeFilesLines
...
* Implement XEP-0363: HTTP File UploadDominik Heidler2016-04-261-0/+2
|
* Removed #AX_PREFIX_CONFIG_HJames Booth2016-03-311-3/+3
|
* Merge branch 'master' into plugins-cJames Booth2016-02-141-1/+1
|\ | | | | | | | | | | Conflicts: src/main.c src/ui/console.c
| * Updated copyrightJames Booth2016-02-141-1/+1
| |
* | Added C plugin code from plugins branchJames Booth2016-02-141-3/+3
|/
* Added word wrap to roster panelJames Booth2015-11-221-1/+1
|
* Pass wrap boolean to win_sub_print()James Booth2015-11-221-1/+1
|
* Renamed subwin functionsJames Booth2015-11-221-2/+2
|
* Option to show presence information on single line in rosterJames Booth2015-11-221-0/+1
|
* Added /roster indent contactJames Booth2015-11-211-1/+1
|
* Removed ui_clear_winJames Booth2015-11-021-2/+0
|
* Applied coding style to src/ui/James Booth2015-10-251-7/+7
|
* Display special char for encrypted messagesJames Booth2015-08-261-1/+1
|
* Added indent paddingJames Booth2015-07-291-1/+1
|
* Removed /mouse commandJames Booth2015-07-191-1/+0
|
* WIP fix for #516, needs memory cleanupJames Booth2015-06-291-1/+1
|
* Moved UI interfaces to ui.hJames Booth2015-06-151-124/+1
|
* Moved refresh subwin logic to window.cJames Booth2015-06-151-0/+3
|
* Added win_resize() functionJames Booth2015-06-151-0/+1
|
* Added win_clear() functionJames Booth2015-06-151-0/+2
|
* I removed ncurses header dependencies, removed unused codeJames Booth2015-06-151-6/+6
|
* Renamed otr trusted window propertyJames Booth2015-06-131-1/+1
|
* Added enc_mode to ProfChatWinJames Booth2015-05-041-1/+6
|
* Added option to show jids in occupants panelJames Booth2015-04-121-0/+1
|
* Use colouring for message receiptsJames Booth2015-03-141-0/+3
|
* Renamed win_save_newline -> win_newlineJames Booth2015-03-141-1/+1
|
* Renamed win_save_println -> win_printlnJames Booth2015-03-141-1/+1
|
* Renamed win_save_print -> win_printJames Booth2015-03-141-1/+1
|
* Renamed win_save_vprint -> win_vprintJames Booth2015-03-141-1/+1
|
* Merge branch 'master' into readlineJames Booth2015-02-111-1/+1
|\ | | | | | | | | | | Conflicts: src/tools/history.c src/tools/history.h
| * Updated copyrightJames Booth2015-02-101-1/+1
| |
* | Added paging handlersJames Booth2015-01-311-1/+6
|/
* Moved win_handle_page to window moduleJames Booth2015-01-151-0/+3
|
* Added remaining chat statesJames Booth2015-01-111-0/+2
|
* Renamed resource -> resource_overrideJames Booth2015-01-101-1/+1
|
* Removed functions from window.cJames Booth2014-12-221-3/+0
|
* Moved unread to window subtypesJames Booth2014-12-211-1/+4
|
* Added win_get_titleJames Booth2014-12-211-4/+5
|
* Use class instead of base pointerJames Booth2014-12-211-8/+8
|
* Refactoring window types, removing recipient and from references - wipJames Booth2014-12-181-4/+16
|
* Added rosterwin.cJames Booth2014-12-161-0/+3
|
* Refactor layout creationJames Booth2014-12-161-3/+3
|
* Added new window and layout typesJames Booth2014-12-161-39/+58
|
* Added window specific creation functionsJames Booth2014-12-151-1/+4
|
* Added win create functions for chat and private chatJames Booth2014-12-101-0/+3
|
* Removed unused argument from _wins_show_historyJames Booth2014-12-101-1/+1
|
* Renamed chat_resource -> resourceJames Booth2014-12-101-1/+1
|
* Moved chat resource to WIN_CHAT typeJames Booth2014-12-101-1/+1
|
* Moved otr properties to WIN_CHAT typeJames Booth2014-12-101-4/+4
|
* Added form to WIN_MUC_CONFIG typeJames Booth2014-12-101-1/+1
|
842'>842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069