Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
66e53854
Kaydet (Commit)
66e53854
authored
Eki 30, 1999
tarafından
Just van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
- windowbounds() now works with multiple screens (window position prefs!)
- Minor tab behavior tweak -- jvr
üst
7171df3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
5 deletions
+12
-5
Wwindows.py
Mac/Tools/IDE/Wwindows.py
+12
-5
No files found.
Mac/Tools/IDE/Wwindows.py
Dosyayı görüntüle @
66e53854
...
...
@@ -109,11 +109,13 @@ class Window(FrameWork.Window, Wbase.SelectableWidget):
for
w
in
self
.
_widgets
:
w
.
forall_frombottom
(
"open"
)
self
.
_maketabchain
()
if
self
.
_tabchain
:
self
.
_tabchain
[
0
]
.
select
(
1
)
if
self
.
_tabbable
:
self
.
bind
(
'tab'
,
self
.
nextwidget
)
self
.
bind
(
'shifttab'
,
self
.
previouswidget
)
else
:
self
.
_hasselframes
=
0
if
self
.
_tabchain
:
self
.
_tabchain
[
0
]
.
select
(
1
)
self
.
do_postopen
()
def
close
(
self
):
...
...
@@ -581,14 +583,19 @@ def getnextwindowpos():
_windowcounter
=
_windowcounter
+
1
return
l
,
t
def
windowbounds
(
preferredsize
,
minsize
=
None
):
def
windowbounds
(
preferredsize
,
minsize
=
None
):
"Return sensible window bounds"
global
_windowcounter
if
len
(
preferredsize
)
==
4
:
bounds
=
l
,
t
,
r
,
b
=
preferredsize
union
=
Qd
.
UnionRect
(
bounds
,
Qd
.
qd
.
screenBits
.
bounds
)
if
union
==
Qd
.
qd
.
screenBits
.
bounds
:
desktopRgn
=
Win
.
GetGrayRgn
()
tempRgn
=
Qd
.
NewRgn
()
Qd
.
RectRgn
(
tempRgn
,
bounds
)
union
=
Qd
.
UnionRgn
(
tempRgn
,
desktopRgn
,
tempRgn
)
equal
=
Qd
.
EqualRgn
(
tempRgn
,
desktopRgn
)
Qd
.
DisposeRgn
(
tempRgn
)
if
equal
:
return
bounds
else
:
preferredsize
=
r
-
l
,
b
-
t
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment