Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
91cefef2
Commit
91cefef2
authored
Apr 24, 2009
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mozilla: use the new text property
parent
f51eb5cf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
projects/mozilla/test.html
projects/mozilla/test.html
+1
-0
projects/mozilla/vlcplugin.cpp
projects/mozilla/vlcplugin.cpp
+1
-0
projects/mozilla/vlcshell.cpp
projects/mozilla/vlcshell.cpp
+3
-5
No files found.
projects/mozilla/test.html
View file @
91cefef2
...
...
@@ -115,6 +115,7 @@ Insert VideoLAN.VLCPlugin.2
width=
"640"
height=
"480"
toolbar=
"true"
text=
"Waiting for video"
name=
"vlc"
>
</EMBED>
</OBJECT>
...
...
projects/mozilla/vlcplugin.cpp
View file @
91cefef2
...
...
@@ -273,6 +273,7 @@ VlcPlugin::~VlcPlugin()
{
free
(
psz_baseURL
);
free
(
psz_target
);
free
(
psz_text
);
if
(
libvlc_log
)
libvlc_log_close
(
libvlc_log
,
NULL
);
if
(
libvlc_media_player
)
...
...
projects/mozilla/vlcshell.cpp
View file @
91cefef2
...
...
@@ -47,8 +47,6 @@
/* Enable/disable debugging printf's for X11 resizing */
#undef X11_RESIZE_DEBUG
#define WINDOW_TEXT "Waiting for video"
/*****************************************************************************
* Unix-only declarations
******************************************************************************/
...
...
@@ -241,7 +239,7 @@ int16 NPP_HandleEvent( NPP instance, void * event )
ForeColor
(
whiteColor
);
MoveTo
(
(
npwindow
.
width
-
80
)
/
2
,
npwindow
.
height
/
2
);
if
(
p_plugin
->
psz_text
)
DrawText
(
WINDOW_TEXT
,
0
,
strlen
(
WINDOW_TEXT
)
);
DrawText
(
p_plugin
->
psz_text
,
0
,
strlen
(
p_plugin
->
psz_text
)
);
}
}
return
true
;
...
...
@@ -749,7 +747,7 @@ static LRESULT CALLBACK Manage( HWND p_hwnd, UINT i_msg, WPARAM wpar, LPARAM lpa
SetTextColor
(
hdc
,
RGB
(
255
,
255
,
255
));
SetBkColor
(
hdc
,
RGB
(
0
,
0
,
0
));
if
(
p_plugin
->
psz_text
)
DrawText
(
hdc
,
WINDOW_TEXT
,
strlen
(
WINDOW_TEXT
),
&
rect
,
DrawText
(
hdc
,
p_plugin
->
psz_text
,
strlen
(
p_plugin
->
psz_text
),
&
rect
,
DT_CENTER
|
DT_VCENTER
|
DT_SINGLELINE
);
EndPaint
(
p_hwnd
,
&
paintstruct
);
...
...
@@ -796,7 +794,7 @@ static void Redraw( Widget w, XtPointer closure, XEvent *event )
if
(
p_plugin
->
psz_text
)
XDrawString
(
p_display
,
video
,
gc
,
window
.
width
/
2
-
40
,
(
window
.
height
-
i_control_height
)
/
2
,
WINDOW_TEXT
,
strlen
(
WINDOW_TEXT
)
);
p_plugin
->
psz_text
,
strlen
(
p_plugin
->
psz_text
)
);
XFreeGC
(
p_display
,
gc
);
p_plugin
->
redrawToolbar
();
...
...
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