Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
a75bbdb2
Commit
a75bbdb2
authored
Nov 29, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Comments
parent
da28b275
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
10 deletions
+13
-10
include/vlc_vout_window.h
include/vlc_vout_window.h
+13
-10
No files found.
include/vlc_vout_window.h
View file @
a75bbdb2
...
...
@@ -113,30 +113,34 @@ struct vout_window_t {
};
/**
* It creates a new window.
*
* Creates a new window.
*
* @param module plugin name (usually "$window")
* @note If you are inside a "vout display", you must use
* vout_display_New/DeleteWindow when possible to allow window recycling.
/ vout_display_NewWindow() and vout_display_DeleteWindow() instead.
* This enables recycling windows.
*/
VLC_EXPORT
(
vout_window_t
*
,
vout_window_New
,
(
vlc_object_t
*
,
const
char
*
module
,
const
vout_window_cfg_t
*
)
);
/**
*
It d
eletes a window created by vout_window_New().
*
D
eletes a window created by vout_window_New().
*
* @note See vout_window_New() about window recycling.
*/
VLC_EXPORT
(
void
,
vout_window_Delete
,
(
vout_window_t
*
)
);
/**
* It allows configuring a window.
* Reconfigures a window.
*
* @note The vout_window_* wrappers should be used instead of this function.
*
* @warning The caller must own the window, as vout_window_t is not thread safe.
* You should use it the vout_window_* wrappers instead of this function.
*/
VLC_EXPORT
(
int
,
vout_window_Control
,
(
vout_window_t
*
,
int
query
,
...)
);
/**
* Configure
the window management state of a windows
.
* Configure
s the window manager state for this window
.
*/
static
inline
int
vout_window_SetState
(
vout_window_t
*
window
,
unsigned
state
)
{
...
...
@@ -144,7 +148,7 @@ static inline int vout_window_SetState(vout_window_t *window, unsigned state)
}
/**
* Configure
the windows display
size.
* Configure
s the window display (i.e. inner/useful)
size.
*/
static
inline
int
vout_window_SetSize
(
vout_window_t
*
window
,
unsigned
width
,
unsigned
height
)
...
...
@@ -153,7 +157,7 @@ static inline int vout_window_SetSize(vout_window_t *window,
}
/**
*
Configure the window
s fullscreen mode.
*
Set
s fullscreen mode.
*/
static
inline
int
vout_window_SetFullScreen
(
vout_window_t
*
window
,
bool
full
)
{
...
...
@@ -161,4 +165,3 @@ static inline int vout_window_SetFullScreen(vout_window_t *window, bool full)
}
#endif
/* VLC_VOUT_WINDOW_H */
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