-
Notifications
You must be signed in to change notification settings - Fork 24
/
NEWS
executable file
·4772 lines (4202 loc) · 147 KB
/
NEWS
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
4.16.0 (stable) 2024-09-10
Almost identical to 4.15.1.
Gtk:
* gtkmm.h: Add eventcontrollerlegacy.h.
4.15.1 (unstable) 2024-08-30:
Gdk:
* DrawContext: Deprecate begin_frame(), end_frame(), is_in_frame(),
get_frame_region().
* Surface: Deprecate set_opaque_region().
(Kjell Ahlstedt)
* Cursor: Rename create(const SlotGetTexture& slot, .....).
Call it create_from_slot(). It was added in 4.15.0 (unstable),
but some create() calls in old code became ambiguous.
(Kjell Ahlstedt) Issue #159 (Alessandro Astone)
Gtk:
* Window: Add set_interactive_debugging().
* TextBuffer: Add enum TextBuffer::NotifyFlags,
add_commit_notify(), remove_commit_notify().
(Kjell Ahlstedt)
Build:
* Require gtk4 >= 4.15.5.
(Kjell Ahlstedt)
4.15.0 (unstable) 2024-08-01:
Gdk:
* Cursor: Add create(slot, fallback).
* Add class CicpParams, ColorState and MemoryTextureBuilder.
* DmabufTextureBuilder: Add get/set/property_color_state().
* GLTextureBuilder.[ccg|hg]: Add get/set/property_color_state().
* Texture: Add get/property_color_state().
* TextureDownloader: Add get/set_color_state().
(Kjell Ahlstedt)
Gtk:
* Widget: Deprecate set/unset/get_font_options().
(Kjell Ahlstedt)
* Paned: Add unset_start_child() and unset_end_child().
(Kjell Ahlstedt) Issue #156 (PBS)
* Add enum FontRendering.
* GraphicsOffload: Add set/get/property_black_background().
* Settings: Add property_gtk_font_rendering().
* FileDialog: Add a nullptr test.
(Kjell Ahlstedt)
* Undefine preprocessor macro BSD, which can be defined in MacOS,
and can interfere with enum License::BSD.
(Kjell Ahlstedt) Issue #157 (Mohamed Akram)
* Shortcut: Add set_action(). Deprecate the misnamed
set_trigger(const Glib::RefPtr<const ShortcutAction>& action).
* Snapshot: Deprecate gl_shader_pop_texture().
(Kjell Ahlstedt)
Demos:
* Dialog demo: Fix a memory leak. Add some comments.
(Kjell Ahlstedt)
Documentation:
* Gdk::Cursor: Update the class description.
* Gtk::Settings: Improve the class documentation.
(Kjell Ahlstedt)
* Don't link to removed parts of library.gnome.org.
(Andre Klapper, Kjell Ahlstedt)
Build:
* Require gtk4 >= 4.15.4.
* Meson build: Require meson >= 0.62.0.
Use Meson's pkgconfig module instead of using
the *.pc.in templates.
(Kjell Ahlstedt)
4.14.0 (stable):
Gdk:
* Display: Add supports_shadow_width(), property_shadow_width()
* DmabufFormats: Add equal()
* Monitor: Add get/property_scale()
(Kjell Ahlstedt)
Gtk:
* SpinButton: Add signal_activate()
* Accessible: Add announce()
* AccessibleText: New interface
* Calendar: Add set/get_day(), set/get_month(), set/get_year()
* SearchEntry2: Add set/get/property_input_purpose(),
set/get/property_input_hints()
(Kjell Ahlstedt)
Demos:
* Fix the TextView demo, ClickMe button
(Kjell Ahlstedt)
Build:
* Require gtk4 >= 4.14.0
(Kjell Ahlstedt)
4.13.3 (unstable):
Gdk, Gtk:
* Make enum bitwise operators constexpr
(Kjell Ahlstedt) Issue #153 (PBS)
Gtk:
* FileLauncher: Add get/set/property_writable()
* Settings: Add property_gtk_show_status_shapes()
* SpinButton: Add get/set/property_activates_default()
(Kjell Ahlstedt)
Documentation:
* Gtk::ScrolledWindow: Update the class description
(Kjell Ahlstedt)
Build:
* Require gtk4 >= 4.13.6
(Kjell Ahlstedt)
4.13.2 (unstable):
Gdk:
* Gdk::DmabufTexture: Fix GType of GDK_GL_TEXTURE to GDK_DMABUF_TEXTURE
(Kjell Ahlstedt)
Gtk:
* Widget: Add measure+get_preferred_size() overloads that return structs
(Daniel Boles) Issue #38, merge request !83
* Widget: Add [[nodiscard]] on get_children()
(Daniel Boles) Merge request !85
* TreeIter: Fix operator=() missing return statement
(Daniel Boles)
* Add SearchEntry2 not deriving Entry, to replace old SearchEntry
that erroneously does, whereas GtkSearchEntry is no longer a GtkEntry in GTK4.
(Kjell Ahlstedt) Issue #148, merge request !86
* Gtk::RecentInfo: Fix refcount of Glib::DateTime from get_added() et al.
(Kjell Ahlstedt) Issue #150 (PBS)
* TreeIter: Add fn docs, intro. Document pitfall with reference from *rvalue_it.
(Daniel Boles) Merge request !90
* Window: Get an extra reference, if not managed
(Kjell Ahlstedt) Issue #151 (PBS)
* Add GraphicsOffload and enum GraphicsOffloadEnabled
(Kjell Ahlstedt)
Documentaton:
* Gtk::Widget: Fix outdated, wrong destructor doc comment
(Daniel Boles) Issue #138, merge request !84
Tests:
* tree_model_iterator: Fix/add various tests, especially const versus non-const.
(Daniel Boles, Kjell Ahlstedt) Merge request !88
Build:
* Meson: Donʼt fail if warning_level=everything
(Daniel Boles, Kjell Ahlstedt) Merge request !87
* Require gtk4 >= 4.13.3
(Kjell Ahlstedt)
4.13.1 (unstable):
Gdk:
* Add DmabufFormats, DmabufTexture, DmabufTextureBuilder
* Display: Add get/property_dmabuf_formats().
(Kjell Ahlstedt)
Gtk:
* ColumnView, GridView, ListView, Viewport: Add default values
on some method parameters.
(Daniel Boles) Issue #141, merge request !76
* SignalListItemFactory: Add signals taking Glib::Object.
(Daniel Boles) Merge request !78
* TreePath: Add ctor and assignment taking const_iterator.
(Daniel Boles) Issue #145, merge request !79
* Widget: Add get_children().
(Daniel Boles) Issue #143, merge request !80
* ShortcutsGroup: Add add_shortcut()
ShortcutsSection: Add add_group()
ShortcutsWindow: Add add_section()
PopoverMenu: Add set/get/property_flags().
(Daniel Boles) Merge request !81
* Window: Deprecate present(guint32 timestamp)
* Add PrintDialog and PrintSetup
(Kjell Ahlstedt)
Tests:
* Add get_children test
(Daniel Boles) Issue #143, merge request !80
Build:
* Require gtk4 >= 4.13.2
(Kjell Ahlstedt)
4.12.0 (stable):
Gtk:
* AboutDialog: Deprecate ctor with use_header_bar.
(Daniel Boles) Merge request !74
* Add SymbolicPaintable.
* Add ScrollInfo and enum ListScrollFlags.
* ColumnView, GridView, ListView, Viewport: Add scroll_to().
* ColumnViewRow, ListItem: Add set/get/property_accessible_description()
and set/get/property_accessible_label().
* DropDown: Add set/get/property_header_factory()
and set/get/property_search_match_mode().
* FileLauncher: Add set/get/property_always_ask().
* Window: Add is_suspended() and property_suspened().
(Kjell Ahlstedt)
Documentation:
* Remove README.SUN and other obsolete files
(Kjell Ahlstedt) Issue #140
* Gtk::Widget: Describe managed and non-managed widgets
(Kjell Ahlstedt) Issue #138 (Daniel Boles)
Build:
* recentinfo.hg: Fix Visual Studio build
(Chun-wei Fan) Merge request !75
* Require gtk4 >= 4.12.0
(Kjell Ahlstedt)
4.11.3 (unstable):
Gdk:
* Pixbuf: Deprecate the create() method taking a Cairo::Surface.
(Kjell Ahlstedt)
Gtk:
* Snapshot: Add some #includes.
(Kjell Ahlstedt) Issue #137 (Daniel Boles)
* Image: Deprecate the set() method taking a Pixbuf.
* Notebook: Wrap the object returned from get_pages() in a
SelectionListModelImpl (like Stack::get_pages()).
* Picture: Deprecate set_pixbuf().
* ColumnView: Add set/get/property_header_factory().
* CssProvider: Deprecate load_from_data(). Add load_from_string()
and load_from_bytes().
(Kjell Ahlstedt)
Documentation:
* Group some classes in the new ListView group and note that
all classes in the TreeView group are deprecated.
(Kjell Ahlstedt)
Build:
* Require gtk4 >= 4.11.3
(Kjell Ahlstedt)
4.11.2 (unstable):
Gdk:
* GLTexture: Deprecate create().
* Add GLTextureBuilder.
(Kjell Ahlstedt)
Gtk:
* Box, BoxLayout: Add set/get/property_baseline_child().
* Button: Add set/get/property_can_shrink().
* CenterBox, CenterLayout: Add set/get/property_shrink_center_last().
* GLArea: Deprecate set/get/property_use_es().
Add set/get/property_allowed_apis(), get/property_api().
* Add ListHeader, SectionModel.
* ListView: Add set/get/property_header_factory().
* MenuButton: Add set/get/property_can_shrink().
* SortListModel: Add set/get/property_section_sorter().
* Widget: Deprecate get_allocation(),
get_allocated_width/height/baseline(). Add get_baseline().
(Kjell Ahlstedt)
Build:
* MSVC build: Mark GTKMM_API for the Entry class
(Chun-wei Fan) Merge request !73
* Require gtk4 >= 4.11.2
(Kjell Ahlstedt)
4.11.1 (unstable):
Gdk and Gtk:
* Use callback functions with C linkage.
(Kjell Ahlstedt) Issue glibmm#1 (Murray Cumming)
Gdk:
* Add Gdk::Graphene::Point, Rect and Size.
They wrap the corresponding classes in the Graphene library.
(Kjell Ahlstedt)
* Add class DragSurfaceSize.
* DragSurface: Add signal_compute_size().
* Surface: Add get/property_scale(). Deprecate create_similar_surface().
(Kjell Ahlstedt)
Gtk:
* Snapshot: Add push_repeat(), push_clip(), append_cairo(),
append_texture(), append_color() with Gdk::Graphene::Rect.
Deprecate other push_clip(), push_clip(), append_cairo(),
append_texture(), append_color() overloads. Add translate().
* Widget: Add compute_bounds() and compute_point().
Deprecate translate_coordinates().
(Kjell Ahlstedt)
* Add classes ColumnViewCell and ColumnViewRow.
* ColumnView: Add set/get/property_tab_behavior() and
set/get/property_row_factory().
* Add enum ListTabBehavior.
* FlowBox and ListBox: Add remove_all().
* GridView and ListView: Add set/get/property_tab_behavior().
* ListItem: Add set/get/property_focusable().
(Kjell Ahlstedt)
Build:
* Require gtk4 >= 4.11.1
(Kjell Ahlstedt)
4.10.0 (stable):
Gdk:
* Add TextureDownloader
* Add enum MemoryFormat, identical to MemoryTexture::Format
* Texture: Add get_format()
(Kjell Ahlstedt)
Gtk:
* VolumeButton: Deprecated
* ProgressBar: Deprecate property_ellipsize()
(Kjell Ahlstedt)
* FileDialog: open_multiple_finish() and select_multiple_folders_finish()
return std::vector<Glib::RefPtr<Gio::File>> instead of
Glib::RefPtr<Gio::ListModel>.
FileChooser: Deprecate get_files() and get_shortcut_folders().
Add get_files2() and get_shortcut_folders2().
(Kjell Ahlstedt) Issue #132
* FileDialog: Make open[_finish](), select_folder[_finish](),
save[_finish](), open_multiple[_finish](),
select_multiple_folders[_finish]() non-const.
* FontDialog: Make choose_family[_finish]() and
choose_face[_finish]() non-const.
* Accessible: Add set_accessible_parent(), update_next_accessible_sibling()
* MenuButton: Add set/get/property_active().
* ScaleButton: Add get/property_active().
* SearchEntry: Add set/get_placeholder_text().
(Kjell Ahlstedt)
Tests:
* Add filedialog test
(Kjell Ahlstedt)
Build:
* Require gtk4 >= 4.10.0
(Kjell Ahlstedt)
4.9.3 (unstable):
Gdk:
* Display: Deprecate get_startup_notification_id().
* Monitor: Add get/property_description().
(Kjell Ahlstedt)
Gtk:
* Deprecated classes: Assistant, AssistantPage, LockButton, Statusbar
* Gesture: Deprecate set_sequence_state().
* Accessible: Add enum Accessible::PlatformState. Add get_at_context(),
get_platform_state(), get_accessible_parent(), get_bounds(),
get_first_accessible_child(), get_next_accessible_sibling().
* Add ATContext and UriLauncher.
(Kjell Ahlstedt)
Documentation:
* Gtk::Image, Picture, StringList, StringObject: Improve class descriptions
(Kjell Ahlstedt)
Build:
* Require gtk4 >= 4.9.3
(Kjell Ahlstedt)
4.9.2 (unstable):
Gdk:
* Display: Deprecate notify_startup_complete() and put_event().
(Kjell Ahlstedt)
Gtk:
* Widget: Deprecate show() and hide(). (Use set_visible().)
* Add FileLauncher.
* CenterBox: Add property_[start|center|end]_widget().
* FileDialog: Rename get/set/property_current_filter() to
get/set/property_default_filter(). Rename get/set/property_current_folder() to
get/set/property_initial_folder(). Add get/set/property_initial_name(),
get/set/property_initial_file(), get/set/property_accept_label().
Remove current_file parameter from open(), current_folder parameter from
select_folder(). Delete get/set/property_shortcut_folders().
* GestureStylus: Add get/set/property_stylus_only().
* TreeExpander: Add get/set/property_indent_for_depth()
and get/set/property_hide_expander().
* ToggleButton: Deprecate toggled().
(Kjell Ahlstedt)
Build:
* Require gtk4 >= 4.9.2
(Kjell Ahlstedt)
* Meson build: Fix the evaluation of is_git_build on Windows
(Kjell Ahlstedt) Issue #131 (William Roy)
4.9.1 (unstable):
Gtk:
* Deprecate about 50 classes:
AppChooser, AppChooserButton, AppChooserDialog,
AppChooserWidget, CellArea, CellAreaBox, CellAreaContext,
CellLayout, CellRenderer, CellRendererAccel, CellRendererCombo,
CellRendererPixbuf, CellRendererProgress, CellRendererSpin,
CellRendererSpinner, CellRendererText, CellRendererToggle, CellView,
ComboBox, ComboBoxText, EntryCompletion, IconView, ListStore,
ListViewText, StyleContext, TreeDragDest, TreeDragSource,
TreeIter and other classes in treeiter.hg,
TreeModel, TreeModelFilter, TreeModelSort, TreePath, TreeRowReference,
TreeSelection, TreeSortable, TreeStore, TreeView, TreeViewColumn,
namespace CellRenderer_Generation, namespace TreeView_Private,
ColorButton, ColorChooser, ColorChooserDialog,
FileChooser, FileChooserDialog, FileChooserNative, FileChooserWidget,
FontButton, FontChooser, FontChooserDialog, FontChooserWidget,
MessageDialog, TreeModelColumn, TreeModelColumnRecord, InfoBar
* Deprecate Window::signal_keys_changed()
* Add ColumnViewColumn::set/get/property_id(), enum Collation,
StringSorter::set/get/property_collation(), Widget::get_color,
StyleProvider::add/remove_provider_for_display()
* StringList::create(): Add default value (empty vector) to parameter
* Add classes AlertDialog, ColorDialog, ColorDialogButton,
ColumnViewSorter, FileDialog, FontDialog, FontDialogButton,
enums DialogError, FontLevel
(Kjell Ahlstedt)
Demos:
* Don't use deprecated API.
Some demo programs have been renamed.
(Kjell Ahlstedt)
Build:
* Meson build: Detect if we build from a git subtree
(William Roy) Merge request !72
* Require gtk4 >= 4.9.1
(Kjell Ahlstedt)
4.8.0 (stable):
Gtk:
* TextView::get_tabs(): Fix a memory leak
* Add enum ContentFit
* Label: Add set/get/property_tabs()
* Picture: Add set/get/property_content_fit()
(Kjell Ahlstedt)
Demos:
* Dialog demo: Add a non-modal dialog
(Kjell Ahlstedt) Issue #123 (PBS)
Documentation:
* Don't translate the preprocessor macro name GDK_MODIFIER_MASK
(Kjell Ahlstedt) Issue #124 (PBS)
Build:
* Require gtk4 >= 4.7.2
(Kjell Ahlstedt)
4.7.1 (unstable):
Gdk:
* Add enum Gdk::GLApi, deprecate enum Gdk::GLAPI
(Kjell Ahlstedt) Issue #113 (PBS)
* Add enum ScrollUnit
* Event: Add get_scroll_unit()
(Kjell Ahlstedt)
Gtk:
* Allow managed Gtk::Window's
(Kjell Ahlstedt) Issue #24 (Daniel Elstner)
* Gtk::Object::_release_c_instance(): Unref orphan managed widgets
(Kjell Ahlstedt) Issue #115 (PBS)
* Entry: Add signal_activate()
(Kjell Ahlstedt) Issue #100 (RedDocMD)
* Don't derive gtkmm__GtkXxx GTypes from final types
(Kjell Ahlstedt) Issue glib#2661
* Application: Only create window on first activate
(Andrew Potter) Merge request !70
* CheckButton: Add set/unset/get/property_child()
* EventControllerScroll: Add get_unit()
* Picture: Deprecate set/get/property_keep_aspect_ratio()
* SearchEntry: Add set/get/property_search_delay()
* DirectoryList, FilterListModel, FlattenListModel, MultiFilter,
MultiSelection, MultiSorter, NoSelection, SelectionFilterModel,
ShortcutController, SingleSelection, SliceListModel, SortListModel,
TreeListModel: Add property_item_type(), property_n_items()
(Kjell Ahlstedt)
* ApplicationWindow: Disambiguate activate_action()
(Kjell Ahlstedt) Issue #122 (PBS)
* Add class Inscription
(Kjell Ahlstedt)
* Widget: Add signal_destroy()
(Baldvin Kovacs) Merge request !71
Documentation:
* Gdk::Drag, Gdk::Drop, Gtk::Dialog, Gtk::Widget: Improve class descriptions
(Kjell Ahlstedt)
Build:
* Meson build: Avoid configuration warnings
(Kjell Ahlstedt)
* Meson build: Fix builds with Vulkan-enabled GTK
(Chun-wei Fan) Merge request !68
* Require gtk4 >= 4.7.1
(Kjell Ahlstedt)
4.6.1 (stable):
Gdk:
* Surface::signal_render(): Fix ref count of Cairo::Region
(Baldvin Kovacs) Merge request !66
* enum GLAPI: Partially fix name clash with epoxy/gl.h
A complete fix requires new API; will have to wait until gtkmm 4.8
(Kjell Ahlstedt) Issue #113 (PBS)
Gtk:
* Application::make_window_and_run(): Delay the deletion of Window
(Kjell Ahlstedt) Issue #114 (PBS)
Build with Meson:
* Don't use deprecated execute(..., gui_app: ...)
Require meson >= 0.56.0
(Kjell Ahlstedt) Issue #111
* Check if Perl is required for building documentation
(Kjell Ahlstedt)
4.6.0 (stable):
Gdk:
* Deprecate Gdk::Cairo::draw_from_gl().
* Display: Add create_gl_context().
* Texture: Add create_from_filename(), create_from_bytes(),
save_to_png_bytes(), save_to_tiff(), save_to_tiff_bytes().
* GLContext: Deprecate set_use_es() and unset_use_es().
Add set/get/property_allowed_apis() and get/property_api().
(Kjell Ahlstedt)
Gtk:
* DropDown: Add set/get/property_show_arrow().
* FlowBox: Add prepend(), append().
* Label: Add set/get/property_natural_wrap_mode().
* MenuButton: Add set/unset/get/property_child().
* Settings: Add property_gtk_hint_font_metrics().
* TextChildAnchor: Add create(replacement_character).
* TextTag: Add properties line_height(), text_transform(),
word(), sentence(), line_height_set(), text_transform_set(),
word_set(), sentence_set().
* TreeExpander: Add set/get/property_indent_for_icon().
* Window: Add property_titlebar().
(Kjell Ahlstedt)
Documentation:
* Gtk::Object: Change deprecated `pack_start` to `append`.
(LI Daobing) Merge request !65
Build:
* MSVC build: Support Visual Studio 2022.
NMake Makefiles: Fix header installation.
(Chun-wei Fan)
* Require pangomm-2.48 >= 2.50.0, gtk4 >= 4.6.0
(Kjell Ahlstedt)
4.4.0 (stable):
Gdk:
* PixbufAnimation: Add create_from_stream(), create_from_stream_async(),
create_from_stream_finish(), create_from_resource().
(Kjell Ahlstedt)
* ContentFormats: Add parse().
Display: Add prepare_gl().
GLContext: Deprecate get/property_shared_context(). Add is_shared().
(Kjell Ahlstedt)
Gtk:
* Add EventControllerLegacy.
(BogDan Vatra) Merge request !64
* DropDown::get_selected_item(), ListItem::get_item(),
SingleSelection::get_selected_item(), TreeExpander::get_item(),
TreeListRow::get_item(): Don't try to dynamic_cast the return value
to Glib::Object. It fails if the object has been constructed as
an interface.
(Kjell Ahlstedt)
* Fixed the const versions of Assistant::get_page(), NoteBook::get_page()
and Stack::get_page(). Fixed MediaControls::set_media_stream() and
Video::set_media_stream().
(Kjell Ahlstedt)
* Application, Window: Swap inclusions. Include window.h in application.h
instead of application.h in window.h.
=== Note === This will affect compilation of code that uses Application
without including gtkmm/application.h.
(Kjell Ahlstedt)
* DropTarget: Deprecate get/property_drop(). Add get/property_current_drop().
FileFilter: Add add_suffix().
MediaStream: Deprecate prepared(), unprepared() and ended().
Add stream_prepared(), stream_unprepared() and stream_ended().
MenuButton: Add set/get/property_always_show_arrow() and
set/get/property_primary().
TextView: Add set/get_rtl_context() and set/get_ltr_context().
(Kjell Ahlstedt)
Demos:
* Images, SizeGroup, ListStore and TreeStore demos: Minor fixes.
(Kjell Ahlstedt)
* Add Add ColumnView demo.
(Kjell Ahlstedt)
Build:
* Require gtk4 >= 4.4.0.
(Kjell Ahlstedt)
4.2.0 (stable):
Gdk:
* Device: Add get_timestamp().
PopupLayout: Add set/get_shadow_width().
Surface: Add property_scale_factor().
(Kjell Ahlstedt)
Gtk:
* Stack::get_pages(): Return a Gtk::SelectionListModelImpl
(Kjell Ahlstedt) Issue #92 (Wellington Wallace)
* IconTheme: Add has_gicon().
Window: Add set/get/property_handle_menubar_accel().
(Kjell Ahlstedt)
* ShortcutController: Add get_scope(), deprecate the misnamed
set_scope() overload.
(Kjell Ahlstedt)
Demos:
* Builder demo: Make the keyboard shortcuts work.
(Kjell Ahlstedt)
4.0.2 (stable):
Build:
* Meson build: Use relative paths to untracked/
(Mingli Yu) Merge request !61
* [gdk|gtk]mmconfig.h.*: Don't dllimport on MinGW
(Chun-wei Fan) Issue #90 (Lukas K.)
* Meson build: Make it possible to use gtkmm as a subproject
(Kjell Ahlstedt) Merge request !62 (BogDan Vatra)
* Meson build: No implicit_include_directories
(Kjell Ahlstedt)
* MSVC build: Gtk: Export some classes selectively
(Chun-wei Fan)
4.0.1 (stable):
The tarball for 4.0.1 has been created with 'meson dist'.
If you build with Autotools from the tarball, please read the relevant
part of the README file.
Gdk:
* TimeCoord: Don't use the deprecated g_memdup()
(Kjell Ahlstedt)
Gtk:
* ExpressionWatch: Add a missing #include
(Kjell Ahlstedt) Issue #84 (Alexander Neumann)
* TreeView: Use the GTK_TYPE_TREE_ROW_DATA GType target
(Kjell Ahlstedt)
Demos:
* Icon browser demo: Fix icon drag-and-drop
(Kjell Ahlstedt)
Build on Windows:
* Gtk::Expression, ExpressionWatch: Fix __declspec() declarations
(Chun-wei Fan) Issue #85 (Alexander Neumann)
(Chun-wei Fan) Merge request !57
* Gtk::TreePath: Export comparison operators
(Chun-wei Fan) Issue #88 (Patrick Storz)
(Chun-wei Fan) Merge request !59
* Fix NMake support
(Chun-wei Fan) Merge request !60
4.0.0 (stable):
This is the first stable release in the gtkmm-4.0 ABI series.
It is parallel-installable with the gtkmm-3.0 ABI.
The tarball for 4.0.0 has been created with 'meson dist'.
If you build with Autotools from the tarball, please read the relevant
part of the README file.
Apart from the changes listed below there are lots of small changes.
Most changes correspond to similar changes in gtk4.
Gdk:
* Event: Removed subclasses
Add PopupLayout, DragSurface, Popup, Toplevel, ToplevelLayout
(Kjell Ahlstedt)
* Add ToplevelSize, DragSurfaceImpl, PopupSurfaceImpl, ToplevelSurfaceImpl
(Kjell Ahlstedt)
* Remove Point
(Andreas Persson) Merge request !54
* Add MemoryTexture
(Kjell Ahlstedt)
Gtk:
* Add DropControllerMotion, EventControllerFocus, DragIcon,
DropTargetAsync, namespace Accelerator
Remove SelectionData, AccelGroup, namespace AccelMap
ScaleButton inherits from Widget
(Kjell Ahlstedt)
* Remove Bin and Container. Affects all classes that inherited from
those classes.
Remove Dialog::run(). Affects how modal dialogs are made.
Application: Remove application menu methods
(Kjell Ahlstedt)
* Add WindowControls, WindowHandle, EditableLabel, Bitset,
BitsetConstIter, MultiSelection
(Kjell Ahlstedt)
* Add ShortcutController, ShortcutManager, Shortcut, ShortcutAction,
ShortcutTrigger
(Kjell Ahlstedt) Issue #3 (Chong Kai Xiong)
* Add BuilderScope and BuilderCScope
(Kjell Ahlstedt) Issue #61 (Daniel Boles)
* Remove Main. Replace Gtk::Main::init_gtkmm_internals() by
Gtk::init_gtkmm_internals()
(Kjell Ahlstedt)
* Add DropDown
(Andreas Persson) Merge request !29, !33
* Add ListView
(Andreas Persson) Merge request !30
* Add ColumnView
(Andreas Persson) Merge request !34
* Add the Accessible interface, and make Widget implement it.
It's a replacement for atk/atkmm.
(Kjell Ahlstedt)
* Remove AccelLabel
(Andreas Persson) Merge request !36
* Add TreeListModel and TreeListRow
(Andreas Persson) Merge request !38
* Add SortListModel and FilterListModel
(Andreas Persson) Merge request !39
* Remove Native vfuncs as interface is now private
(Andreas Persson) Merge request !41
* Actionable::get_action_target_value(): Fix ref count
(Kjell Ahlstedt)
* Remove RadioButton and RadioButtonGroup
(Kjell Ahlstedt)
* Add GridView
(Andreas Persson) Merge request !43
* Add FlattenListModel and SliceListModel
(Andreas Persson) Merge request !45
* Add Expression
(Andreas Persson) Merge request !40
* Add BoolFilter and MultiSorter
(Andreas Persson) Merge request !48
* Add MultiFilter, AnyFilter, EveryFilter, SelectionFilterModel,
DirectoryList, NumericSorter
(Andreas Persson) Merge request !49, !50, !51, !52
* Application: Add make_window_and_run()
and remove the run() overloads that take a Window&.
(Kjell Ahlstedt) Issue #78 (Andreas Persson)
* Remove FileChooserButton
(Andreas Persson)
* Add TreeExpander
(Kjell Ahlstedt)
Documentation:
* README: Add instructions for building gtkmm
(Kjell Ahlstedt)
* ListView: Fix the class description
(Kjell Ahlstedt) Issue #75
* Explain key values
(Kjell Ahlstedt) Issue #6 (Mark Vender)
Demos:
* Add listview application launcher demo
(Andreas Persson) Merge request !42
* Add DropDown demo
(Andreas Persson) Merge request !46, !55
Tests:
* Add bitset_iterator test
(Kjell Ahlstedt)
Build:
* Use glibmm-2.68 instead of glibmm-2.64
Use pangomm-2.48 instead of pangomm-2.44
(Kjell Ahlstedt)
* Require glibmm >= 2.68.0, pangomm >= 2.48.0 and gtk4 >= 4.0.0
(Kjell Ahlstedt)
* Drop dependency on Atkmm
(Kjell Ahlstedt)
* Improve NMake support
(Chun-wei Fan)
* Use __declspec(dllexport) when building with Visual Studio
Drop gendef.exe
(Chun-wei Fan) Merge request !28
* Add support for building gtkmm with Meson
(Chun-wei Fan, Kjell Ahlstedt) Merge request !27
* docs/reference/: Update for Doxygen >= 1.8.16
(Kjell Ahlstedt)
3.97.1 (unstable):
Distro packagers should probably not package this yet.
See https://mail.gnome.org/archives/gtkmm-list/2020-January/msg00009.html
Gtkmm 3.97.1 is a C++ binding of gtk 3.98.0.
Apart from the changes listed below there are lots of small changes.
Most changes correspond to similar changes in gtk4.
Gdk:
Gtk:
* Add Text
(Kjell Ahlstedt)
* Builder: Add returning versions of get_widget[_derived]
Add get_object<Derived>(name) overloads
(Daniel Boles) Issue #43, merge request !11
* Builder: Remove old get_widget*() overloads
(Daniel Boles) Merge request !17
* MenuButton derives from Widget (was ToggleButton)
Add the Native interface
Rename GestureMultiPress to GestureClick
(Kjell Ahlstedt)
* Add Gtk::Constraint, Gtk::ConstraintGuide, Gtk::ConstraintLayout,
Gtk::ConstraintTarget
(Kjell Ahlstedt)
* Fix ownership of some GLists
(Kjell Ahlstedt)
* Add CenterLayout and NoSelection
(Kjell Ahlstedt)
* Update class hierarchy of AppChooserButton, InfoBar, SrtakcSidebar,
StackSwitcher
(Kjell Ahlstedt)
* Add Gtk::Window::unset_titlebar()
(Kjell Ahlstedt) Issue #57 (Daniel Boles)
* Gtk::Application, Window: Always remove a window from its app when hidden
(Kjell Ahlstedt) Issue #56 (Daniel Boles)
* Remove ModelButton
Builder: The gtkmm__ prefix must sometimes (but rarely) be used in
the .ui file. See the description of get_widget_derived().
(Kjell Ahlstedt)
* Remove CheckMenuItem, Menu, MenuBar, MenuItem, MenuShell,
RadioMenuItem, SeparatorMenuItem.
Add Gtk::PopoverMenuBar, replaces the removed MenuBar
(Kjell Ahlstedt)
* Remove old drag-and-drop API.
Add Gtk::DragSource, DropTarget.
(Kjell Ahlstedt)
* Remove WidgetPath
Rename IconInfo to IconPaintable
(Kjell Ahlstedt)
* Remove MenuToolButton, RadioToolButton, SeparatorToolItem,
ToggleToolButton, Toolbar, ToolButton, ToolItem, ToolShell.
Use Box instead of Toolbar, Button instead of ToolButton, etc.
Add Gtk::EmojiChooser
(Kjell Ahlstedt)
Demos, tests:
* Update many demo programs and test programs.
(Kjell Ahlstedt, Daniel Boles)
Documentation:
* Gtk::TreeView::append_column() doc: Add code example
(Pavlo Solntsev) Merge request !21
* Many improvements
(Kjell Ahlstedt, Daniel Boles)
Build:
* Merge libgdkmm-4.0 and libgtkmm-4.0 into one library.
(Kjell Ahlstedt) Issue #48
* Visual Studio Build: Build gdkmm into gtkmm
(Chun-wei Fan) Merge request !20
* Use glibmm-2.64 instead of glibmm-2.62
Require gtk4 >= 3.98.0
(Kjell Ahlstedt)
3.95.1 (unstable):
Distro packagers should probably not package this yet.
Gtkmm 3.95.1 is a C++ binding of gtk 3.96.0.
Gdk:
* Add GLTexture, Paintable, Snapshot
Texture implements the Paintable interface
(Kjell Ahlstedt)
* Gdk::Window has been renamed to Surface
(Kjell Ahlstedt)
* Remove Gdk::Cairo::create_surface_from_pixbuf().
DrawingContext: Remove get_surface(), is_valid() and
get_drawing_context_from_cairo_context().
Surface: Remove create_similar_image_surface().
(Kjell Ahlstedt)
* Add CairoContext. Remove DrawingContext.
DrawContext: Add begin_frame(), end_frame(), is_in_frame()
and get_frame_region().
GLContext: Remove get_damage().
Surface: Remove begin_draw_frame() and end_draw_frame().
They have been moved to DrawContext.
Add queue_expose() and create_cairo_context().
(Kjell Ahlstedt)
* Remove DragContext::drop_reply().
(Kjell Ahlstedt)
* DragContext: Add enum DragCancelReason.
Add drag_drop_done(), get_drag_surface(), get_display().
Add properties and signals.
Mnitor: Add signal_invalidate().
Texture: Add save_to_png().
(Kjell Ahlstedt)
* Add Drop and move some methods there from DragContext.
Replace EventDND::get_drag_context() by EventDND::get_drop().
Surface: Remove get/set_events() and get/set_device_events().
(Kjell Ahlstedt)
* Clipboard, Drop: Add read_async() and read_finish()
(Kjell Ahlstedt)
* Rename DragContext to Drag
(Kjell Ahlstedt)
* Drag: Remove get_suggested_action() and signal_action_changed().
Add property_selected_action(), property_actions(), property_surface().
Remove EventExpose.
Surface: Remove withdraw(). Add move_to_rect(), signal_move_to_rect(),
signal_size_changed(), signal_render(), property_mapped().
(Kjell Ahlstedt)
* Drag: Move set_icon_name() and set_icon() to the new Gtk::DnD namespace.
(Kjell Ahlstedt)
* RGBA: Add a constructor RGBA(double r, g, b, a)
(Daniel Boles) Issue #40
* RGBA::set_hsv(): Properly interpret hue 360° as red
(Daniel Boles) Issue #42
* Add DevicePad and DeviceWithPad
(Kjell Ahlstedt)
* Device: Remove warp(), get_position(int& x, int& y),
get_surface_at_position(int& x, int& y).
Add get_surface_at_position(double& x, double& y).
Surface: Remove set_role(),
get_device_position(..., int& x, int& y, ...),
set/get_group(), invalidate_rect(), invalidate(),
invalidate_region(), set_skip_taskbar_hint(),
set_skip_pager_hint(), set_urgency_hint().
Add property_frame_clock().
(Kjell Ahlstedt)
Gtk:
* Object::_release_c_instance(): Don't release if in a container
(Kjell Ahlstedt) Bug #773642 comments 20-22
* Entry: Remove set/get_cursor_hadjustment()
(Kjell Ahlstedt)
* Expander: Remove get/set/property_label_fill().
(Kjell Ahlstedt)
* Overlay: Add get/set_measure_overlay() and child_property_measure().
(Kjell Ahlstedt)
* Settings: Remove property_gtk_modules().
(Kjell Ahlstedt)
* Widget: Add two drag_source_set_icon() overloads
(Kjell Ahlstedt)
* Remove WidgetCustomDraw and WidgetCustomSnapshot.
Snapshot: Add clips_rect(const graphene_rect_t*).
Widget: Remove queue_draw_area(), queue_draw_region(),
get_clip(), draw() and set_realized().
(Kjell Ahlstedt)
* Snapshot: Remove push() and clips_rect(). Add create() and push_debug().
Add append_texture() and append_cairo().
Only push_debug() has a 'name' parameter.
(Kjell Ahlstedt)
* Remove Scrollbar::get_wheel_delta().
(Kjell Ahlstedt)
* Add EventControllerKey, EventControllerMotion and EventControllerScroll.
Widget: Remove signal_key_[press|release]_event().
Widget: Add add_controller() and remove_controller().
(Kjell Ahlstedt)
* Image: Add more constructors
(Kjell Ahlstedt) Issue #35 (Daniel Boles)
* Container: Add signal_set_focus_child().
FontChooser: Add set_language().
Printer: Add get_hard_margins(const PaperSize& ...).
SearchBar: Add set/unset/get_key_capture_widget().
SearchEntry: Add set/unset/get_key_capture_widget().