Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds ViewportSettings.Transparent #3886

Open
wants to merge 48 commits into
base: v2_develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
319d2a6
Added ViewportSettigs Editor
tig Dec 14, 2024
ae85fa2
Tweaked Arrangment scenario temporarily
tig Dec 14, 2024
c547d78
tweaked editor
tig Dec 14, 2024
d4fbba6
fixed transparent bug
tig Dec 15, 2024
557e637
tweaked Arragnemetns Scenario to test nested transparent views
tig Dec 17, 2024
f24c7bd
tweaks
tig Dec 17, 2024
e783a22
tweaks
tig Dec 18, 2024
fa31a29
Tweaked viewportsettings scenario
tig Dec 29, 2024
7d1fbc2
Made transparent work; need to implement full Region merge algo
tig Feb 17, 2025
6d2cc92
More updates to Region
tig Feb 18, 2025
2e95053
More updates to Region 2
tig Feb 18, 2025
ba9386d
Refactors Region to be more like Skia
tig Feb 18, 2025
6bf4695
refactor Region again
tig Feb 18, 2025
dea28ba
Merge branch 'v2_develop' of github.com:gui-cs/Terminal.Gui into v2_d…
tig Feb 19, 2025
bac94a6
Merge branch 'v2_develop' into v2-ViewportSettings_Transparent
tig Feb 19, 2025
9bf7b0b
refactored Region again. Fixed more transparent view issues.
tig Feb 20, 2025
5753e86
Region class updates. Transparent now works. All unit tests pass.
tig Feb 24, 2025
c960722
Scenario tweak
tig Feb 24, 2025
600a7b8
DrawOuterBoundary - WIP
tig Feb 25, 2025
35b7053
DrawOuterBoundary - WIP2
tig Feb 25, 2025
3dc2304
Merge branch 'v2_develop' into v2-ViewportSettings_Transparent
tig Feb 25, 2025
8ad1d56
Merge branch 'v2_develop' of tig:tig/Terminal.Gui into v2_develop
tig Feb 25, 2025
f7d9650
Merge branch 'v2_develop' of github.com:gui-cs/Terminal.Gui into v2_d…
tig Feb 25, 2025
9aaaf1e
Merge branch 'gui-cs:v2_develop' into v2_develop
tig Feb 26, 2025
41e6b3e
Tweaked scenarios
tig Feb 26, 2025
879bd0b
Transparent mouse?
tig Feb 26, 2025
c24630f
TransparentMouse
tig Feb 27, 2025
f4da995
Region: Reduced memory allocations and made thread safe.
tig Feb 27, 2025
0281490
Scenario tweaks
tig Feb 27, 2025
cc314cc
Updated Region scenario
tig Feb 27, 2025
84b3d2a
Merge branch 'v2_develop' of github.com:gui-cs/Terminal.Gui into v2_d…
tig Feb 27, 2025
ebbcaff
Merge branch 'v2_develop' of github.com:gui-cs/Terminal.Gui into v2_d…
tig Feb 27, 2025
91b98ef
Merge branch 'v2_develop' into v2-ViewportSettings_Transparent
tig Feb 27, 2025
7d645b9
API docs fixes
tig Feb 27, 2025
9c3be44
Merge branch 'v2_develop' of github.com:gui-cs/Terminal.Gui into v2_d…
tig Feb 27, 2025
293e64a
Merge branch 'v2_develop' into v2-ViewportSettings_Transparent
tig Feb 27, 2025
6802a2b
Charmap comment fix
tig Feb 27, 2025
1b1ed61
Merge branch 'v2-ViewportSettings_Transparent' of tig:tig/Terminal.Gu…
tig Feb 27, 2025
8733d9c
Merge branch 'v2_develop' of github.com:gui-cs/Terminal.Gui into v2_d…
tig Feb 27, 2025
8003218
Tons of API doc updates
tig Feb 27, 2025
cd0b68d
merge
tig Feb 28, 2025
2a1fe41
Merge branch 'v2_develop' into v2-ViewportSettings_Transparent
tig Feb 28, 2025
0ed3129
merged and cleanup
tig Feb 28, 2025
b762f95
Merge branch 'v2_develop' into v2-ViewportSettings_Transparent
tig Feb 28, 2025
61462ff
local_packages
tig Feb 28, 2025
4e9c033
local_packages
tig Feb 28, 2025
a2866e0
Reorganized draw unit tests.
tig Feb 28, 2025
a70897d
Cleanup
tig Feb 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Set the default behavior for all files.
# Set default behavior to automatically normalize line endings.
* text=auto

# Normalized and converts to
# native line endings on checkout.
*.cs text

# Convert to LF line endings on checkout.
# Explicitly declare text files you want to always be normalized and converted to native line endings on checkout.
*.cs text eol=lf
*.txt text eol=lf
*.md text eol=lf
*.sh text eol=lf
*.ps1 text eol=lf

# Binary files.
# Denote all files that are truly binary and should not be modified.
*.png binary
*.jpg binary
*.jpg binary
*.gif binary
Loading
Loading