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
a154262e
Kaydet (Commit)
a154262e
authored
Mar 26, 2003
tarafından
Jack Jansen
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Modified to accept a command line argument too.
üst
97951de7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
4 deletions
+8
-4
MovieInWindow.py
Mac/Demo/quicktime/MovieInWindow.py
+8
-4
No files found.
Mac/Demo/quicktime/MovieInWindow.py
Dosyayı görüntüle @
a154262e
...
...
@@ -14,6 +14,7 @@ from Carbon import Windows
from
Carbon
import
File
import
EasyDialogs
import
sys
import
os
def
main
():
...
...
@@ -22,17 +23,20 @@ def main():
Qt
.
EnterMovies
()
# Get the movie file
fss
=
EasyDialogs
.
AskFileForOpen
(
wanted
=
File
.
FSSpec
)
# Was: QuickTime.MovieFileType
if
not
fss
:
if
len
(
sys
.
argv
)
>
1
:
filename
=
sys
.
argv
[
1
]
else
:
filename
=
EasyDialogs
.
AskFileForOpen
()
# Was: QuickTime.MovieFileType
if
not
filename
:
sys
.
exit
(
0
)
# Open the window
bounds
=
(
175
,
75
,
175
+
160
,
75
+
120
)
theWindow
=
Win
.
NewCWindow
(
bounds
,
fss
.
as_tuple
()[
2
],
1
,
0
,
-
1
,
0
,
0
)
theWindow
=
Win
.
NewCWindow
(
bounds
,
os
.
path
.
split
(
filename
)[
1
],
1
,
0
,
-
1
,
0
,
0
)
Qd
.
SetPort
(
theWindow
)
# XXXX Needed? SetGWorld((CGrafPtr)theWindow, nil)
playMovieInWindow
(
theWindow
,
f
ss
,
theWindow
.
GetWindowPort
()
.
GetPortBounds
())
playMovieInWindow
(
theWindow
,
f
ilename
,
theWindow
.
GetWindowPort
()
.
GetPortBounds
())
def
playMovieInWindow
(
theWindow
,
theFile
,
movieBox
):
"""Play a movie in a window"""
...
...
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