added MediaPlayer to the build
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17212 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
+1
-1
@@ -12,7 +12,7 @@ SubInclude HAIKU_TOP src apps expander ;
|
|||||||
SubInclude HAIKU_TOP src apps glteapot ;
|
SubInclude HAIKU_TOP src apps glteapot ;
|
||||||
SubInclude HAIKU_TOP src apps installer ;
|
SubInclude HAIKU_TOP src apps installer ;
|
||||||
SubInclude HAIKU_TOP src apps magnify ;
|
SubInclude HAIKU_TOP src apps magnify ;
|
||||||
#SubInclude HAIKU_TOP src apps mediaplayer ;
|
SubInclude HAIKU_TOP src apps mediaplayer ;
|
||||||
SubInclude HAIKU_TOP src apps midiplayer ;
|
SubInclude HAIKU_TOP src apps midiplayer ;
|
||||||
SubInclude HAIKU_TOP src apps people ;
|
SubInclude HAIKU_TOP src apps people ;
|
||||||
SubInclude HAIKU_TOP src apps poorman ;
|
SubInclude HAIKU_TOP src apps poorman ;
|
||||||
|
|||||||
@@ -0,0 +1,15 @@
|
|||||||
|
SubDir HAIKU_TOP src apps mediaplayer ;
|
||||||
|
|
||||||
|
SetSubDirSupportedPlatformsBeOSCompatible ;
|
||||||
|
|
||||||
|
Application MediaPlayer :
|
||||||
|
Controller.cpp
|
||||||
|
ControllerView.cpp
|
||||||
|
MainApp.cpp
|
||||||
|
MainWin.cpp
|
||||||
|
VideoNode.cpp
|
||||||
|
VideoView.cpp
|
||||||
|
: be media tracker
|
||||||
|
: MediaPlayer.rdef
|
||||||
|
;
|
||||||
|
|
||||||
@@ -28,7 +28,7 @@
|
|||||||
MainApp *gMainApp;
|
MainApp *gMainApp;
|
||||||
|
|
||||||
MainApp::MainApp()
|
MainApp::MainApp()
|
||||||
: BApplication("application/x-vnd.Haiku-MediaPlayer")
|
: BApplication("application/x-vnd.Haiku.MediaPlayer")
|
||||||
, fFirstWindow(NewWindow())
|
, fFirstWindow(NewWindow())
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
|
||||||
|
resource app_signature "application/x-vnd.Haiku.MediaPlayer";
|
||||||
|
|
||||||
|
resource app_flags B_SINGLE_LAUNCH;
|
||||||
|
|
||||||
|
resource file_types message {
|
||||||
|
"types" = "application/ogg",
|
||||||
|
"types" = "audio",
|
||||||
|
"types" = "audio/32kadpcm",
|
||||||
|
"types" = "audio/basic",
|
||||||
|
"types" = "audio/mpeg",
|
||||||
|
"types" = "audio/x-aiff",
|
||||||
|
"types" = "audio/x-riff",
|
||||||
|
"types" = "audio/x-wav",
|
||||||
|
"types" = "video",
|
||||||
|
"types" = "video/mpeg",
|
||||||
|
"types" = "video/quicktime",
|
||||||
|
"types" = "video/x-msvideo"
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user