[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Git][gambas/gambas][master] 9 commits: Enhance new border system implementation. Contiguous borders are merged on specific conditions.



Benoît Minisini pushed to branch master at Gambas / gambas


Commits:
6a2bc480 by Benoît Minisini at 2025-05-06T21:58:30+02:00
Enhance new border system implementation. Contiguous borders are merged on specific conditions.

[GB.GUI.BASE]
* NEW: Rework message dialog layout in both normal and flat styles.
* NEW: Panel: Use 'Border.Styled' for new border system.
* BUG: ScrollArea: Fix scrolling management when the language direction is right to left.
* NEW: Automatically merge borders of contiguous controls arranged in the same direction (horizontally or vertically).
* NEW: Style: Add a list of shape options constants for squaring specific rounded borders, or hiding specific borders.
* NEW: Style: 'PaintBackground()' and 'ClipBackground()' now use only one 'Shape' argument for both shape types and shape options.

- - - - -
527adf95 by Benoît Minisini at 2025-05-06T22:00:19+02:00
Continue using new styled background in controls.

[GB.FORM]
* NEW: FileChooser & DirChooser: Use new styled borders when the Border property is TRUE.
* NEW: FileView: Use new styled borders when the Border property is TRUE.
* NEW: ListEditor: Use new styled borders when the Border property is TRUE.

- - - - -
1d7fea83 by Benoît Minisini at 2025-05-06T22:00:56+02:00
Use new styled borders when the 'Border' property is TRUE.

[GB.FORM.TERMINAL]
* NEW: Use new styled borders when the 'Border' property is TRUE.

- - - - -
33aa0b29 by Benoît Minisini at 2025-05-07T01:28:28+02:00
ScrollArea: Fix styled border and clipping.

[GB.GUI.BASE]
* BUG: ScrollArea: Fix styled border and clipping.

- - - - -
b307b0e3 by Benoît Minisini at 2025-05-07T01:28:59+02:00
TextEditor: Use new styled border.

[GB.FORM.EDITOR]
* NEW: TextEditor: Use new styled border.

- - - - -
614ae897 by Benoît Minisini at 2025-05-07T01:31:45+02:00
Fix horizontal centered arrangement with right-to-left direction. Add 'Border.Styled' constant. Center newly opened windows by default on X11.

[GB.GTK]
* BUG: Fix horizontal centered arrangement with right-to-left direction.
* NEW: Add 'Border.Styled' constant.

[GB.GTK3]
* BUG: Fix horizontal centered arrangement with right-to-left direction.
* NEW: Add 'Border.Styled' constant.

[GB.QT4]
* BUG: Fix horizontal centered arrangement with right-to-left direction.
* NEW: Add 'Border.Styled' constant.
* NEW: Center newly opened windows by default on X11.

[GB.QT5]
* BUG: Fix horizontal centered arrangement with right-to-left direction.
* NEW: Add 'Border.Styled' constant.
* NEW: Center newly opened windows by default on X11.

[GB.QT6]
* BUG: Fix horizontal centered arrangement with right-to-left direction.
* NEW: Add 'Border.Styled' constant.
* NEW: Center newly opened windows by default on X11.

- - - - -
2ea519ab by Benoît Minisini at 2025-05-07T01:34:55+02:00
Rectangle intersection with NULL now returns itself instead of raising an error.

[GB.DRAW]
* OPT: A little optimization in Paint.Rectangle() when some borders have no radius.

[GB.GEOM]
* NEW: Rectangle intersection with NULL now returns itself instead of raising an error.

- - - - -
9478f313 by Benoît Minisini at 2025-05-07T01:39:07+02:00
Use the new styled borders on many places. Some bug fixes.

[DEVELOPMENT ENVIRONMENT]
* NEW: Use the new styled borders on many places.
* BUG: Form editor: Draw the background color of containers.
* BUG: Correctly upgrade to version 8 of 'gitignore' file.
* BUG: Fix a possible crash when displaying a search result having no line position.

- - - - -
8ab127c9 by Benoît Minisini at 2025-05-07T01:40:14+02:00
Support for the new password system of the bugtracker.

[WIKI]
* BUG: Some dark mode fixes.
* BUG: Support for the new password system of the bugtracker.

- - - - -


53 changed files:

- app/src/gambas-wiki/.project
- app/src/gambas-wiki/.public/style-dark.css
- app/src/gambas-wiki/.public/style.css
- app/src/gambas-wiki/.src/Main.module
- app/src/gambas-wiki/.src/Wiki.class
- app/src/gambas-wiki/.src/Wiki.webpage
- app/src/gambas3/.project
- app/src/gambas3/.src/Exported/EnvChooser/EnvChooser.class
- app/src/gambas3/.src/Family/CFamily.class
- app/src/gambas3/.src/Family/Form/CFamilyForm.class
- app/src/gambas3/.src/Help/HelpBrowser.class
- app/src/gambas3/.src/Help/HelpView.class
- app/src/gambas3/.src/Project.module
- app/src/gambas3/.src/Project/Component/FComponentChooser.form
- app/src/gambas3/.src/Project/FOpenProject.form
- app/src/gambas3/.src/Project/FProjectProperty.form
- app/src/gambas3/.src/Search/CSearchResult.class
- app/src/gambas3/.src/Welcome/FSystemInfo.class
- app/src/gambas3/.src/Welcome/FSystemInfo.form
- comp/src/gb.form.editor/.src/TextEditor.class
- comp/src/gb.form.editor/.src/test/FTestEditor.form
- comp/src/gb.form.terminal/.component
- comp/src/gb.form.terminal/.src/TerminalView/TerminalView.class
- comp/src/gb.form.terminal/.src/TerminalView/test/FTestTerminalView.class
- comp/src/gb.form.terminal/.src/TerminalView/test/FTestTerminalView.form
- comp/src/gb.form.terminal/.version
- comp/src/gb.form/.project
- comp/src/gb.form/.src/File/Chooser/FDirChooser.class
- comp/src/gb.form/.src/File/Chooser/FDirChooser.form
- comp/src/gb.form/.src/File/FileView.class
- comp/src/gb.form/.src/IconPanel/IconPanel.class
- comp/src/gb.form/.src/ListEditor/FListEditor.form
- comp/src/gb.form/.src/Test/FTestFileChooser.form
- comp/src/gb.gui.base/.project
- comp/src/gb.gui.base/.src/Message/FMessage.class
- comp/src/gb.gui.base/.src/Panel.class
- comp/src/gb.gui.base/.src/ScrollArea.class
- comp/src/gb.gui.base/.src/ScrollView.class
- comp/src/gb.gui.base/.src/Split/Splitter.class
- comp/src/gb.gui.base/.src/Style.class
- comp/src/gb.gui.base/.src/Test/FTestBackground.form
- comp/src/gb.gui.base/.src/Test/FTestGridView.class
- comp/src/gb.gui.base/.src/Test/FTestGridView.form
- comp/src/gb.gui.base/.src/Test/FTestPanel.form
- comp/src/gb.gui.base/.src/Test/TestMessage.module
- comp/src/gb.gui.base/.src/_Gui.class
- gb.gtk/src/CConst.cpp
- gb.qt4/share/gb.form.arrangement.h
- gb.qt4/share/gb.form.const.h
- gb.qt4/src/CConst.cpp
- gb.qt4/src/CWindow.cpp
- main/lib/draw/cpaint.c
- main/lib/geom/crect_temp.h


View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f016c376cced5b7b6828a180dc0a31ab48813eac...8ab127c9d02c77f85964a588164bb36479fb72ba

-- 
View it on GitLab: https://gitlab.com/gambas/gambas/-/compare/f016c376cced5b7b6828a180dc0a31ab48813eac...8ab127c9d02c77f85964a588164bb36479fb72ba
You're receiving this email because of your account on gitlab.com.