about summary refs log tree commit diff stats
path: root/src/ui/window.c
Commit message (Expand)AuthorAgeFilesLines
* trying to block (and save cpu power) more dynamicallySimon Effenberg2015-01-121-1/+3
* Added remaining chat statesJames Booth2015-01-111-0/+2
* Renamed resource -> resource_overrideJames Booth2015-01-101-2/+2
* Removed functions from window.cJames Booth2014-12-221-33/+0
* Moved unread to window subtypesJames Booth2014-12-211-6/+23
* Show nick for titleJames Booth2014-12-211-1/+7
* Added win_get_titleJames Booth2014-12-211-55/+48
* Use class instead of base pointerJames Booth2014-12-211-55/+55
* Fixed /occupants hideJames Booth2014-12-201-6/+13
* Refactored all window recipients and typesJames Booth2014-12-201-0/+8
* Refactoring window types, removing recipient and from references - wipJames Booth2014-12-181-27/+69
* Added rosterwin.cJames Booth2014-12-161-0/+2
* Refactor layout creationJames Booth2014-12-161-82/+50
* Added new window and layout typesJames Booth2014-12-161-188/+224
* Added window specific creation functionsJames Booth2014-12-151-40/+88
* Added win create functions for chat and private chatJames Booth2014-12-101-0/+50
* Removed unused argument from _wins_show_historyJames Booth2014-12-101-2/+2
* Renamed chat_resource -> resourceJames Booth2014-12-101-2/+2
* Moved chat resource to WIN_CHAT typeJames Booth2014-12-101-3/+5
* Moved otr properties to WIN_CHAT typeJames Booth2014-12-101-4/+28
* Added form to WIN_MUC_CONFIG typeJames Booth2014-12-101-2/+9
* Added union for window typesJames Booth2014-12-101-37/+93
* Added /resource commandJames Booth2014-12-021-0/+2
* Colour /me messages correctlyJames Booth2014-11-301-6/+8
* Changed type to enum for presence colour attributesJames Booth2014-11-161-24/+6
* Replaced colours with theme_item_tJames Booth2014-11-161-33/+33
* Fixed indentation bugJames Booth2014-11-161-20/+20
* Added /time offJames Booth2014-11-161-9/+11
* Implemented /time preferenceJames Booth2014-11-161-17/+43
* Added /roster size and /occupants size settingsJames Booth2014-11-151-3/+2
* Added seperate values for roster and occupants win sizesJames Booth2014-11-151-4/+22
* Changed subwin width to percentageJames Booth2014-11-151-12/+14
* Fixed printing utf8 chats to roster, changed boothj5 themeJames Booth2014-11-111-4/+2
* Added /roster show|hide command, only show roster on connect successJames Booth2014-11-101-1/+1
* Refactor subwin sizing and disabled wrappingJames Booth2014-11-101-8/+34
* Added subwin to consoleJames Booth2014-11-101-8/+8
* Added /wrap user preference for enabling/disabling word wrappingJames Booth2014-11-091-2/+5
* Wordwrap, handle words bigger than line spaceJames Booth2014-11-091-6/+18
* Fixed history messages to work with wrappingJames Booth2014-11-091-2/+6
* Added time to xmlconsole, handle newlines in messagesJames Booth2014-11-081-1/+4
* Simple word wrapJames Booth2014-11-081-0/+10
* Print one word at a timeJames Booth2014-11-081-2/+28
* Use message theme setting for regular chatJames Booth2014-11-071-1/+1
* Fixed various memory leaksJames Booth2014-11-011-0/+2
* Added occupants UI preferenceJames Booth2014-10-091-1/+2
* Implemented /occupants showJames Booth2014-10-091-0/+13
* Implemented /occupants hideJames Booth2014-10-091-1/+15
* Added larger occupants pad sizeJames Booth2014-10-081-4/+4
* Added scroll support to occupant listJames Booth2014-10-071-2/+2
* Handle occupant list resizeJames Booth2014-10-071-5/+8
ious revision' href='/danisanti/profani-tty/blame/src/ui/privwin.c?id=9fcdc5901cf27526cdb492cd7a4fbfe2133aeefe'>^
8a397263 ^

3b2ceee8 ^
ebff1fc8 ^
d9435d3b ^
150015fa ^




8f1d3ab5 ^
150015fa ^


77e819e8 ^



8f1d3ab5 ^
77e819e8 ^


150015fa ^





8f1d3ab5 ^
150015fa ^



3ddef99d ^

















8f1d3ab5 ^
3ddef99d ^





















8f1d3ab5 ^
3ddef99d ^



150015fa ^





8f1d3ab5 ^
150015fa ^


77e819e8 ^






8f1d3ab5 ^
77e819e8 ^









8f1d3ab5 ^
77e819e8 ^









8f1d3ab5 ^
77e819e8 ^





















8f1d3ab5 ^
77e819e8 ^





















8f1d3ab5 ^
77e819e8 ^


d9435d3b ^
















1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278