-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathChangeLog
More file actions
2559 lines (1900 loc) · 81 KB
/
Copy pathChangeLog
File metadata and controls
2559 lines (1900 loc) · 81 KB
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
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
2007-11-14 Richard Purdie <rpurdie@opened.com>
* configure.ac:
Stop -L/lib being added to compiler commandline and breaking builds
when --enable-expat and --disable-expat options aren't used and
$expat is empty.
2007-11-01 Tomas Frydrych <tf@o-hand.com>
* src/keys.c: (keys_keysym_needs_shift):
Fixed retrival of shift mask for keys that have matching symbol in
column 0 of the key map (bug #570).
2007-09-21 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_handle_configure_request):
Dont resize desktop windows for input windows.
2007-09-12 Matthew Allum <mallum@openedhand.com>
* src/mbtheme.c: (_theme_paint_core):
Clamp x,y destination values for safety. (Tapani Palli)
2007-09-05 Matthew Allum <mallum@openedhand.com>
* src/toolbar_client_alt.c:
Correction to previous patch (Tapani Palli)
2007-09-04 Matthew Allum <mallum@openedhand.com>
* src/toolbar_client_alt.c:
* src/wm.c:
Ignore minimised flag for alt input windows.
Fixes for not resizing desktop with alt input window.
(Tapani Palli)
2007-08-16 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_make_new_client):
Always send config notifiy to new clients (Tapani Palli)
2007-08-13 Matthew Allum <mallum@openedhand.com>
* src/client_common.c: (client_button_do_ops):
Set time from event rather that CurrentTime when sending
MB_GRAB_TRANSFER (Tapani Palli)
2007-06-22 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_make_new_client):
Make sure EWMH lists are updated when app starts in iconized
state.
2007-06-21 Matthew Allum <mallum@openedhand.com>
* src/structs.h:
* src/base_client.c:
* src/wm.c: (wm_handle_configure_request), (wm_make_new_client):
Change handling of affected dialogs when an (alt) input window.
(Via Tapani)
Handle application windows starting in iconized state (Sugar)
2007-05-25 Matthew Allum <mallum@openedhand.com>
* src/client_common.c: (client_button_do_ops):
Send button number with 'grab tranfer' (#334)
(Via Tapani)
2007-04-26 Matthew Allum <mallum@openedhand.com>
* src/ewmh.c: (ewmh_init), (ewmh_update_lists):
* src/structs.h:
Add new _MB_NUM_SYSTEM_MODAL_WINDOWS_PRESENT prop.
2007-04-23 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_make_new_client):
Make sure dialog ABOVE state is inherited. (via Tapani)
2007-04-13 =============== 1.2 Release. =====================
2007-04-13 Matthew Allum <mallum@openedhand.com>
* configure.ac:
Bump up for 1.2 release
2007-03-19 Matthew Allum <mallum@openedhand.com>
* src/ewmh.c: (ewmh_init):
* src/structs.h:
* src/wm.c: (wm_make_new_client):
Add basic support for;
_NET_WM_WINDOW_TYPE_POPUP_MENU & _NET_WM_WINDOW_TYPE_DROPDOWN_MENU
2007-02-17 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_move_resize):
Dont attempt to move non existstant frame of non decorated
dialog window.
2007-02-06 Matthew Allum <mallum@openedhand.com>
* src/ewmh.c: (ewmh_init_props):
Set _NET_CURRENT_DESKTOP to 0
2007-02-06 Matthew Allum <mallum@openedhand.com>
* src/ewmh.c: (ewmh_update_rects), (set_supported):
Dont list _NET_CURRENT_DESKTOP supported twice.
Fix _NET_DESKTOP_GEOMETRY to be correctly WxH rather than full geom.
2007-01-25 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_handle_configure_request):
Allow decorationless dialogs to *re*position themselves offscreen.
2007-01-17 Matthew Allum <mallum@openedhand.com>
* src/ewmh.c:
* src/structs.h:
* src/wm.c:
Add support for _NET_WM_WINDOW_TYPE_NOTIFICATION
(maps to mb only TYPE_MESSAGE, can be deprecated)
2007-01-16 Matthew Allum <mallum@openedhand.com>
* src/wm.c:
Fix Maemo input win vertical resize handling.
2007-01-11 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c:
Fixes to focus chaining in presence of modal dialogs.
* src/stack.c: (stack_dump):
* src/wm.c: (wm_activate_client):
Improve debug stack dumping info.
2006-12-22 Matthew Allum <mallum@openedhand.com>
* src/ewmh.c:
* src/structs.h:
Add very basic support for an _MB_WM_STATE prop.
2006-12-15 Matthew Allum <mallum@openedhand.com>
* src/wm.c:
Fix small XSet #define typo (thanks to Tapani)
2006-12-14 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_update_layout):
Handle resizing of dialogs better when a input window
unmaps. (Note, for non alt-input-wins, i.e. maemo)
2006-12-14 Matthew Allum <mallum@openedhand.com>
* src/base_client.c: (base_client_destroy):
Release passive button grab on client destruction
2006-11-23 Matthew Allum <mallum@openedhand.com>
* data/themes/blondie/theme.xml:
* src/mbtheme.c: (mbtheme_init):
Allow theme to set cursor theme and size.
2006-11-17 Matthew Allum <mallum@openedhand.com>
* configure.ac:
* src/Makefile.am:
* src/wm.c: (wm_xsettings_notify_cb):
Sync with cursor theme and size GTK xsettings propertys
2006-11-03 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_init_geometry):
On position a splash window centered if positioned initially at 0,0
Fixes position issues with mb panel applet message wins.
2006-10-11 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_get_available_area):
Backout 2006-09-07 change (uneeded)
* src/wm.c: (wm_handle_configure_request), (wm_activate_client):
Dont let alt input wins resize horizontal.
Misc cleanups ( a c++ comment )
2006-09-22 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c:
* src/ewmh.c:
* src/structs.h:
Set modal indicator desktop hint for all modal dialogs, not
just system ones.
Be sure to set panel in titlebar state hints (#40723)
2006-09-18 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_handle_button_event):
Dont attempt to move focus from a modal dialog to parent
(maemo #40455)
2006-09-18 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_get_available_area),
(dialog_client_button_press):
Fix alt input win positioning.
Add better check for modal window presence to disable decoration
buttons ( in super modal mode ).
2006-09-07 Matthew Allum <mallum@openedhand.com>
* src/ewmh.c: (ewmh_init), (ewmh_update_lists):
* src/structs.h:
Advertise presence of modal blocker wins on root
window ( in maemo super modal mode )
2006-09-07 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_get_available_area):
Fix for returning correct available area for dialogs
when alt input win present.
2006-09-05 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c:
Redo dialog dragging code to use XShape for outlines
rather that XOR'ing.
2006-08-31 Matthew Allum <mallum@openedhand.com>
* configure.ac:
Really check for 4.0 xfixes..
2006-08-29 Matthew Allum <mallum@openedhand.com>
* configure.ac:
Check for xfixes >= 4.0 rather than 2.0.
2006-08-28 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_init_geometry):
Still allow decorationless dialogs to position
themselves freely - fixes error in previous commit.
( Thanks to Marco )
2006-08-28 Matthew Allum <mallum@openedhand.com>
* src/base_client.c: (base_client_new):
Remove spurious repositioning if client positioned
with negative positions ( should get fixed later ).
* src/structs.h:
* src/dialog_client.c: (dialog_init_geometry):
* src/wm.c: (wm_make_new_client):
Only center 0,0 non decorated clients if they have
splash screen hint set.
2006-08-24 Matthew Allum <mallum@openedhand.com>
* configure.ac:
* src/Makefile.am:
* src/wm.c:
Support XFixesHide/ShowCursor if XFixes lib and recent
enough extension available. Really hides cursor now.
2006-08-24 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_update_layout):
Dont let panels changing size ( or unmapping ) effect
fullscreen app windows.
2006-08-24 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_remove_client):
Only check for lack of main win, not desktop also
for mb app active prop update ( see last commit )
2006-08-24 Matthew Allum <mallum@openedhand.com>
* src/ewmh.c: (ewmh_update_lists):
* src/wm.c: (wm_remove_client):
Set root win list and active props accordingly when
no active clients.
2006-08-11 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_show):
* src/stack.c: (stack_dump):
* src/wm.c: (wm_activate_client):
Grouped dialog stacking fixes (see maemo #36977)
2006-08-09 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_activate_client):
Fix focus for app mapping with multi level trans for root
present.
2006-08-04 =============== 1.1 Release. =====================
2006-08-04 Matthew Allum <mallum@openedhand.com>
* NEWS:
* configure.ac:
Bump up version to 1.1
2006-08-03 Matthew Allum <mallum@openedhand.com>
* src/client_common.c: (client_get_transient_list):
* src/ewmh.c: (ewmh_init):
* src/main_client.c: (main_client_configure),
(main_client_title_height), (main_client_get_coverage),
(main_client_reparent), (main_client_move_resize),
(main_client_toggle_fullscreen), (main_client_redraw),
(main_client_button_press), (main_client_toggle_title_bar):
* src/structs.h:
* src/wm.c: (wm_handle_property_change), (wm_make_new_client),
(wm_activate_client):
Add support for decoration less application windows.
2006-07-28 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_load_config):
Fix typo in non XRDB cmd line parser.
2006-07-19 Matthew Allum <mallum@openedhand.com>
* src/keys.c: (keys_load_config):
* src/structs.h:
* src/wm.c: (wm_usage), (wm_load_config):
Add support for '-kbdconfig' cmd line option to specify
an alternate key shortcut config file.
2006-07-05 Matthew Allum <mallum@openedhand.com>
* src/base_client.c: (base_client_destroy):
Fix compiler warning when not building with alt input wins.
* src/structs.h:
* src/keys.c: (keys_keysym_needs_shift), (keys_add_entry):
* src/wm.c: (wm_handle_keypress):
Fixes for better handling shifted key shortcuts.
2006-07-05 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_activate_client):
Set the active app root prop *after* setting new list
props as to avoid sync issues in apps using this info.
2006-06-13 Matthew Allum <mallum@openedhand.com>
* src/ewmh.c: (ewmh_handle_root_message):
Dont start pinging an app if requests to be activated
but is already activated, ( maemo #32483 )
2006-06-06 Matthew Allum <mallum@openedhand.com>
* src/base_client.c: (base_client_destroy):
Be more careful removing alt ( maemo ) input methods
when transient to removed dialog / application.
2006-06-01 Matthew Allum <mallum@openedhand.com>
* src/ewmh.c: (ewmh_hung_app_check):
Call XSync() so ping is sent immediatly to be double safe.
* src/wm.c: (wm_event_loop):
correctly honur PING_INTERVAL, not PING_INTERVAL+1
2006-05-26 Matthew Allum <mallum@openedhand.com>
* src/toolbar_client.c: (toolbar_client_show),
(toolbar_client_hide), (toolbar_client_button_press):
Fix for iconizing toolbar windows and there position.
Fixes MB bug #95
2006-05-23 Matthew Allum <mallum@openedhand.com>
* src/toolbar_client_alt.c: (toolbar_client_destroy):
Add repaint to removal also.
2006-05-22 Matthew Allum <mallum@openedhand.com>
* src/toolbar_client_alt.c: (toolbar_client_configure):
Force a dialog repaint on IM dialog resize for safety.
2006-05-17 Matthew Allum <mallum@openedhand.com>
* src/toolbar_client_alt.c: (toolbar_client_destroy):
Fix typo snafu with previous commit.
2006-05-17 Matthew Allum <mallum@openedhand.com>
* src/toolbar_client_alt.c: (toolbar_client_destroy):
Just change affected dialog height back to original
size. Dont try and do anything clever with positioning.
2006-05-11 Matthew Allum <mallum@openedhand.com>
* src/ewmh.c: (ewmh_handle_root_message):
* src/main_client.c: (main_client_toggle_fullscreen):
* src/wm.c: (wm_activate_client):
Make aggresive pinging a little less aggressive;
- No pinging on fullscreen toggles.
- Only ping on NET_ACTIVE message.
2006-05-08 Matthew Allum <mallum@openedhand.com>
* src/toolbar_client_alt.c: (toolbar_client_new),
(toolbar_client_configure), (toolbar_client_destroy):
Only remember size of affected dialogs for reseting, not position.
2006-05-08 Matthew Allum <mallum@openedhand.com>
* src/client_common.c: (client_get_highest_transient):
Honour client_flags in initial loop. should fix maemo #25281
2006-04-19 Matthew Allum <mallum@openedhand.com>
* src/main_client.c: (main_client_toggle_fullscreen):
Send state message before configure when toggleing
fullscreen.
2006-04-19 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_init_geometry):
Fix dialog gravity in presence of panels
2006-04-13 Matthew Allum <mallum@openedhand.com>
* src/mbtheme.c: (theme_frame_paint):
Dont attempt to paint 0 width decorations.
2006-04-12 Matthew Allum <mallum@openedhand.com>
* src/toolbar_client_alt.c: (toolbar_client_new),
(toolbar_client_configure), (toolbar_client_destroy):
Support repositioning dialogs an alt toolbar ( IM ) window
is transient for.
* src/wm.c: (wm_handle_configure_request):
Correct some debug info.
2006-04-12 Matthew Allum <mallum@openedhand.com>
* src/client_common.c: (client_set_focus):
Focus tracking fix moving between dialogs and trans for
root dialog. fixs maemo #26095
2006-04-10 Matthew Allum <mallum@openedhand.com>
* src/base_client.c: (base_client_new):
* src/dialog_client.c: (dialog_client_reparent),
(dialog_init_geometry):
* src/structs.h:
* src/wm.c: (wm_event_loop), (wm_handle_configure_request):
Add basic support for window gravity on dialogs.
2006-03-24 Matthew Allum <mallum@openedhand.com>
* src/wm.c: (wm_handle_property_change):
Make sure window names changes can end up NULL.
2006-03-15 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_button_press):
Stop buttons on lower dialogs working when modal
blocker window in place ( When in super modal mode ).
2006-03-10 Matthew Allum <mallum@openedhand.com>
* src/client_common.c: (client_set_focus):
* src/dialog_client.c: (dialog_client_set_focus_next):
Focus fixes for case of multiple trans for root dialogs.
2006-03-07 =============== 1.0 Release. =====================
2006-03-07 Matthew Allum <mallum@openedhand.com>
* configure.ac:
Be brave and finally bump up version to 1.0
2006-03-01 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_show):
Attempted fix for grouped dialog stacking.
2006-02-19 Matthew Allum <mallum@openedhand.com>
* src/client_common.c: (client_deliver_delete):
* src/ewmh.c: (ewmh_handle_root_message), (ewmh_get_user_time),
(ewmh_set_current_app_window), (ewmh_ping_client_start),
(ewmh_ping_client_stop), (ewmh_hung_app_check):
* src/ewmh.h:
* src/main_client.c: (main_client_toggle_fullscreen):
* src/structs.h:
* src/wm.c: (wm_load_config), (wm_event_loop),
(wm_activate_client):
Implement alternate optional more aggesive pinging policy needed
for maemo.
2006-02-05 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_get_offsets),
(dialog_client_title_height), (dialog_client_redraw):
* src/mbtheme-standalone.c: (theme_has_message_decor):
* src/mbtheme-standalone.h:
* src/mbtheme.c: (theme_has_message_decor), (theme_frame_paint):
* src/mbtheme.h:
* src/structs.h:
Add support for optional alternate custom themeing for border only
( no title bar ) dialogs.
2006-02-03 Matthew Allum <mallum@openedhand.com>
* configure.ac:
Add a FIXME comment
* src/mbtheme.c: (theme_frame_paint):
avoid freeing non existant font color on theme switch.
2006-01-24 Matthew Allum <mallum@openedhand.com>
* src/mbtheme.c: (mbtheme_new), (mbtheme_init):
Add support for cache attribute in <theme> tags.
MB_THEME_ALWAYS_CACHE env var overides.
2006-01-19 Matthew Allum <mallum@openedhand.com>
* src/mbtheme.c: (theme_frame_button_paint), (theme_frame_paint),
(mbtheme_new):
* src/mbtheme.h:
setting MB_NO_THEME_CACHE env var turns off internal pixbuf
cacheing ( very experimental )
2006-01-17 Matthew Allum <mallum@openedhand.com>
* src/base_client.c: (base_client_new):
* src/ewmh.c: (ewmh_init), (ewmh_set_active):
* src/ewmh.h:
* src/main_client.c: (main_client_show):
* src/structs.h:
Add basic ( set to 0 ) support for _NET_USER_TIME
* src/mbtheme.c: (theme_frame_paint),
(_theme_frame_menu_paint_text_entry):
Fix wierd mb_col leak.
2006-01-05 Matthew Allum <mallum@openedhand.com>
* src/ewmh.c: (ewmh_init), (ewmh_update_lists):
* src/structs.h:
Add support for _MB_APP_WINDOW_LIST_STACKING root win prop
2005-12-27 Matthew Allum <mallum@openedhand.com>
* src/client_common.c: (client_set_focus),
(client_get_transient_list):
* src/dialog_client.c: (dialog_client_show):
Add basic support for window grouping.
2005-12-12 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_show):
* src/main_client.c: (main_client_show):
* src/structs.h:
* src/wm.c: (wm_activate_client):
Fix 'flash' when non top apps map dialogs.
Fix issues with minimised dialogs not remapping.
2005-11-15 Matthew Allum <mallum@openedhand.com>
* src/client_common.c: (client_get_transient_list):
* src/client_common.h:
* src/dialog_client.c: (dialog_client_show):
Stacking fixes for multiple groups of transient for transient dialogs.
2005-11-01 Matthew Allum <mallum@openedhand.com>
* src/stack.c: (stack_get_window_list), (stack_sync_to_display):
XRestackWindows didn't include count of blocker wins in total
window count.
2005-10-27 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_show):
Fix preivous blocker win borkage
2005-10-17 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_reparent):
Dont map the blocker wins on reparenting, wait for show()
2005-10-14 Matthew Allum <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_show),
(dialog_client_reparent), (dialog_client_iconize),
(dialog_client_destroy):
Add extra debug info for blocker wins
2005-10-10 mallum <mallum@openedhand.com>
* src/wm.c: (wm_make_new_client):
Fix potential XGetWMHints leak
2005-10-04 mallum <mallum@openedhand.com>
* src/dockbar_client.c: (dockbar_client_configure):
Small fix for east panels to get correctly positioned after
theme switch.
2005-10-03 mallum <mallum@openedhand.com>
* src/base_client.c: (base_client_new):
* src/ewmh.c: (ewmh_get_utf8_prop), (ewmh_get_icon_prop_data):
* src/matchbox-remote.c: (mbcommand):
* src/mbtheme.c: (theme_frame_icon_paint), (mbtheme_init):
* src/misc.c: (mwm_get_decoration_flags):
* src/wm.c: (wm_handle_property_change):
Fix GCC 4 warnings.
2005-09-29 mallum,,, <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_show),
(dialog_client_reparent), (dialog_client_iconize),
(dialog_client_destroy):
* src/stack.c: (stack_get_window_list):
* src/structs.h:
Fix issues with modal blocker wins breaking stack count.
2005-09-29 mallum,,, <mallum@openedhand.com>
* src/base_client.c: (base_client_destroy):
* src/wm.c: (wm_remove_client):
Move previous fix to safer place in code.
2005-09-29 mallum,,, <mallum@openedhand.com>
* src/wm.c: (wm_remove_client):
Make sure ewmh lists get updated when closing a window.
( regression from 2005-06-14 change )
2005-09-20 mallum,,, <mallum@openedhand.com>
* src/client_common.c: (client_get_wm_protocols):
* src/wm.c: (wm_handle_property_change):
Fix re-enabling of help/accept/custom buttons
2005-09-20 mallum <mallum@openedhand.com>
* src/base_client.c: (base_client_new):
* src/client_common.c: (client_deliver_wm_protocol):
* src/client_common.h:
* src/wm.c: (wm_handle_property_change):
Add support for help/accept/custom buttons being toggled on the fly
2005-09-07 mallum <mallum@openedhand.com>
* src/main_client.c: (main_client_manage_toolbars_for_fullscreen):
Add a little more debug.
* src/wm.c: (wm_activate_client):
Fix for making sure alt input windows get resized correctly when
transient for a transient for root window and switching from/to
a fullscreen to a non fullscreen app win.
2005-09-07 mallum <mallum@openedhand.com>
* src/base_client.c: (base_client_new):
Dont try and manage new clients if no memory available.
* src/wm.c: (wm_remove_client):
unmap before reparent to root in effort to avoid potential
flash.
2005-08-31 mallum,,, <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_reparent):
* src/main_client.c: (main_client_button_press):
* src/structs.h:
* src/wm.c: (wm_usage), (wm_load_config):
Add new -use_super_modal switch to enable previously default
maemo 'aggresive' modal handling - blocking wins etc
2005-08-08 mallum,,, <mallum@openedhand.com>
* src/toolbar_client_alt.c: (toolbar_client_hide):
Reparent hidden toolbar wins to current position rather than 0,0
2005-07-28 mallum,,, <mallum@openedhand.com>
* src/wm.c: (wm_remove_client):
reparent 'removed' win to current pos on root rather than 0,0
2005-07-28 mallum,,, <mallum@openedhand.com>
* src/ewmh.c: (ewmh_state_set):
Really clear NET_WM_STATE if no states set.
2005-06-21 mallum,,, <mallum@openedhand.com>
* src/main_client.c: (main_client_button_press):
Send PING even when close button is 'blocked' by modal dialog
* src/wm.c: (wm_handle_property_change):
print debug warning if client sets tranciency to itself
2005-06-20 mallum,,, <mallum@openedhand.com>
* src/wm.c: (wm_handle_configure_request), (wm_make_new_client):
Add some more X error traps very early on in new client creation.
2005-06-19 mallum,,, <mallum@openedhand.com>
* src/mbtheme.c: (theme_frame_menu_get_dimentions)
Include iconized clients in select menu sizing.
2005-06-17 mallum,,, <mallum@openedhand.com>
* src/wm.c: (wm_handle_property_change):
Avoid potential recursive for self tranciency changes.
2005-06-17 mallum,,, <mallum@openedhand.com>
* src/ewmh.c: (ewmh_update_lists), (ewmh_hung_app_check):
* src/wm.c: (wm_usage), (wm_load_config):
Fix compiler warning.
If set, use env 'MB_HUNG_APP_HANDLER' pointing at executable
to handle hung applications rather than default killer.
2005-06-15 mallum,,, <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_show):
* src/main_client.c: (main_client_show):
Make sure de iconizing a client de-iconizes transients too.
2005-06-14 mallum,,, <mallum@openedhand.com>
* src/base_client.c: (base_client_destroy):
* src/desktop_client.c: (desktop_client_unmap):
* src/dockbar_client.c: (dockbar_client_show):
* src/ewmh.c: (ewmh_handle_root_message):
* src/ewmh.h:
* src/mbtheme.c: (mbtheme_switch):
* src/wm.c: (wm_init_existing), (wm_update_layout),
(wm_activate_client), (wm_toggle_desktop):
Less aggresive root window property updating.
2005-06-12 mallum,,, <mallum@openedhand.com>
* src/ewmh.c: (ewmh_set_current_app_window), (ewmh_hung_app_check):
* src/ewmh.h:
* src/wm.c: (wm_event_loop):
Clean up ping code a little. Adding new define for frequency
of hung app check.
* src/mbtheme.c: (mbtheme_switch):
Simplify switching code a little.
2005-06-08 mallum,,, <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_show):
Remove old attempted transient infinite loop fix ( 2005-06-02 )
2005-06-06 mallum,,, <mallum@openedhand.com>
* src/main_client.c: (main_client_iconize):
* src/wm.c: (wm_handle_property_change), (wm_remove_client):
Handle windows hiding but not always unmapping there windows.
Fixes 'ghost' windows when quicking hiding/showing a GTK win.
2005-06-03 mallum,,, <mallum@openedhand.com>
* src/wm.c: (wm_handle_property_change):
Dont let windows change transiency to themselves.
2005-06-02 mallum,,, <mallum@openedhand.com>
* configure.ac:
* src/dialog_client.c: (dialog_client_show):
avoid potential infinite loop from transiant race?
2005-05-26 mallum,,, <mallum@openedhand.com>
* configure.ac:
Bump up version to 0.9.5
2005-05-25 mallum,,, <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_reparent):
Possible fix for odd dissapearing firefox prefs window bug.
2005-05-24 mallum,,, <mallum@openedhand.com>
* src/dialog_client.c: (dialog_init_geometry),
(dialog_client_configure):
* src/wm.c: (wm_make_new_client):
Fix broken login so menu's really can position at 0,0 this time.
2005-05-24 mallum,,, <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_check_for_state_hints),
(dialog_init_geometry):
* src/structs.h:
* src/wm.c: (wm_make_new_client):
Dont center 'menu' dialogs if initial position is 0,0
2005-05-20 mallum,,, <mallum@openedhand.com>
* src/ewmh.c: (ewmh_state_set):
* src/wm.c: (wm_make_new_client):
Avoid trashing unsupported state hints.
2005-05-17 mallum,,, <mallum@openedhand.com>
* src/wm.c: (wm_usage):
Rejig usage info a little.
2005-05-12 mallum,,, <mallum@openedhand.com>
* src/matchbox-remote.c: (usage), (main):
* src/structs.h:
* src/wm.c: (wm_handle_client_message):
Add 2 new simple switches to matchbox-remote, one too toggle
compositor and one to force reload of key shortcuts.
2005-05-11 mallum,,, <mallum@openedhand.com>
* src/toolbar_client.c: (toolbar_client_reparent):
* src/wm.c: (wm_remove_client), (wm_update_layout):
Clear up some more ( final? ) X Errors.
Speed up app window resizes caused by horizonal
panels/toolbars by avoiding uneeded repaints.
2005-05-11 mallum,,, <mallum@openedhand.com>
* data/themes/Default/theme.xml:
* data/themes/MBOpus/theme.xml:
* data/themes/blondie/theme.xml:
Tweak+add basic rough toolbar decorations to keep
old apps happy that still use decorated toolbars.
2005-05-11 mallum,,, <mallum@openedhand.com>
* configure.ac:
minor cleanups, remove xsync enable
* src/session.c: (sm_save_yourself_cb):
Fix things enough to avoid gnome-session hanging.
Support still very basic and incomplete.
2005-05-11 mallum,,, <mallum@openedhand.com>
* src/session.c: (sm_save_yourself_cb), (sm_die_cb),
(sm_shutdown_cancelled_cb), (sm_connect):
* src/session.h:
* src/structs.h:
* src/wm.c: (wm_new), (wm_usage), (wm_load_config),
(wm_find_client), (get_xevent_timed):
Fix up session support some more.
2005-05-05 mallum,,, <mallum@openedhand.com>
* src/client_common.c: (client_set_focus):
* src/ewmh.c: (ewmh_init), (ewmh_set_active):
* src/ewmh.h:
* src/structs.h:
* src/wm.c: (wm_activate_client):
Fix _NET_ACTIVE_WIN to not be set to just app wins.
Add _MB_CURRENT_APP_WINDOW to do old behaviour.
* src/dialog_client.c: (dialog_client_set_focus_next):
Fix focusing when non focused dialog is closed
2005-04-28 mallum,,, <mallum@openedhand.com>
* src/session.c: (sm_save_yourself_cb):
Add some very basic registration info with session manager
2005-04-28 mallum,,, <mallum@openedhand.com>
* configure.ac:
* src/Makefile.am:
* src/session.c:
* src/session.h:
* src/structs.h:
* src/wm.c: (wm_new), (wm_find_client), (wm_event_loop):
* src/wm.h:
Add basic initial support for connecting to session managers.
It currently just connects, should avoid hang when started
by gnome-session.
2005-04-26 mallum,,, <mallum@openedhand.com>
* src/ewmh.c: (ewmh_handle_root_message):
Fix for activate client message being sent to an non topped
app dialog window and no effect happerning.
Makes GNOME task selector work nicer with MB.
2005-04-26 mallum,,, <mallum@openedhand.com>
* src/mbtheme.c: (theme_frame_icon_paint):
Fix potential segv if app sets ewmh icon smaller than 16x16
2005-04-26 mallum,,, <mallum@openedhand.com>
* src/toolbar_client.c: (toolbar_client_move_resize),
(toolbar_client_reparent):
Fix a couple of toolbar related X Error warnings
2005-04-16 mallum,,, <mallum@openedhand.com>
* configure.ac:
Throw an error if AC_PATH_XTRA comes up empty
2005-04-11 Relased 0.9.4
2005-04-11 mallum,,, <mallum@openedhand.com>
* configure.ac:
Bump up version to 0.9.4
2005-04-07 mallum,,, <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_set_focus_next):
Possible fix for odd focus crasher
2005-04-07 mallum,,, <mallum@openedhand.com>
* src/dialog_client.c: (dialog_get_available_area):
* src/main_client.c: (main_client_manage_toolbars_for_fullscreen):
* src/toolbar_client_alt.c: (toolbar_client_configure):
Make sure alt input trans for dialog but on top of fullscreen
app get resized correctly on fullscreen toggle.
Make sure dialogs get positioned correctly for fullscreen with
alt input.
2005-03-30 mallum,,, <mallum@openedhand.com>
* src/base_client.c: (base_client_new), (base_client_process_name):
* src/ewmh.c: (ewmh_update_lists):
* src/mbtheme.c: (mbtheme_init):
* src/misc.c: (fork_exec):
* src/wm.c: (wm_sn_exec):
Fixes via Andreas Gunnarsson for bugs 117-121. Includes mainly
potential overflow fixes + warnings on openBSD.
* src/toolbar_client_alt.c: (toolbar_client_new),
(toolbar_client_move_resize):
Extra debug statements
2005-03-16 mallum,,, <mallum@openedhand.com>
* src/base_client.h:
* src/matchbox-remote.c:
* src/structs.h:
* src/xml.c:
Add _GNU_SOURCE to work round x11.pc setting -DX_OPENSOURCE
2005-03-11 mallum,,, <mallum@openedhand.com>
* src/base_client.c: (base_client_new):
* src/composite-engine.c: (_render_a_client),
(comp_engine_destroy_root_buffer), (comp_engine_render):
* src/dialog_client.c: (dialog_client_reparent):
* src/wm.c: (wm_handle_map_notify):
Fix composite lowlighting with blocker win.
Also make modal for root dialogs lowlight entire display.
2005-03-01 mallum <mallum@openedhand.com>
* src/toolbar_client_alt.c: (toolbar_client_show):
Attempt for lessening potential dekstop flash on mapping input win
* src/wm.c: (wm_activate_client):
Fix stacking order for transient for desktop dialogs
2005-02-28 mallum,,, <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_button_press):
Fix for static mode dialogs losing focus when hidden via title
bar click.
2005-02-23 mallum,,, <mallum@openedhand.com>
* src/keys.c: (keys_add_entry), (keys_load_config):
* src/structs.h:
Backed held key code out. Seems very difficult todo
sanely due to the way X does keyrepeats. Maybe battle
again another day.
2005-02-23 mallum,,, <mallum@openedhand.com>
* src/main_client.c: (main_client_configure):
Refix fullscreen toggling for non alt input windows
2005-02-23 mallum,,, <mallum@openedhand.com>
* src/structs.h:
* src/keys.c: (keys_add_entry), (keys_load_config):
Initial work on supporting 'held' keys - config can now be parsed.
* src/main_client.c: (main_client_configure):
Fix for toolbars affecting app size when toggling fullscreen.
2005-02-22 mallum,,, <mallum@openedhand.com>
* src/dialog_client.c: (dialog_client_reparent),
(dialog_client_redraw), (dialog_client_drag):
More composite lowlighting related tweaks
2005-02-22 mallum,,, <mallum@openedhand.com>