Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
82d59e50
Commit
82d59e50
authored
Mar 01, 2006
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* more systray related ifndefs for the Darwin platform
parent
de649c2a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
0 deletions
+21
-0
modules/gui/wxwidgets/input_manager.cpp
modules/gui/wxwidgets/input_manager.cpp
+6
-0
modules/gui/wxwidgets/interface.cpp
modules/gui/wxwidgets/interface.cpp
+6
-0
modules/gui/wxwidgets/interface.hpp
modules/gui/wxwidgets/interface.hpp
+6
-0
modules/gui/wxwidgets/wxwidgets.cpp
modules/gui/wxwidgets/wxwidgets.cpp
+3
-0
No files found.
modules/gui/wxwidgets/input_manager.cpp
View file @
82d59e50
...
...
@@ -171,12 +171,15 @@ void InputManager::UpdateButtons( vlc_bool_t b_play )
p_main_intf
->
statusbar
->
SetStatusText
(
wxT
(
""
),
0
);
p_main_intf
->
statusbar
->
SetStatusText
(
wxT
(
""
),
2
);
/* wxCocoa pretends to support this, but at least 2.6.x doesn't */
#ifndef __APPLE__
#ifdef wxHAS_TASK_BAR_ICON
if
(
p_main_intf
->
p_systray
)
{
p_main_intf
->
p_systray
->
UpdateTooltip
(
wxString
(
wxT
(
"VLC media player - "
))
+
wxU
(
_
(
"Stopped"
))
);
}
#endif
#endif
return
;
...
...
@@ -192,6 +195,8 @@ void InputManager::UpdateButtons( vlc_bool_t b_play )
p_main_intf
->
TogglePlayButton
(
val
.
i_int
==
STATUS_PAUSE
?
PAUSE_S
:
PLAYING_S
);
/* wxCocoa pretends to support this, but at least 2.6.x doesn't */
#ifndef __APPLE__
#ifdef wxHAS_TASK_BAR_ICON
if
(
p_main_intf
->
p_systray
)
{
...
...
@@ -199,6 +204,7 @@ void InputManager::UpdateButtons( vlc_bool_t b_play )
wxU
(
p_input
->
input
.
p_item
->
psz_name
)
+
wxString
(
wxT
(
" - "
))
+
(
val
.
i_int
==
PAUSE_S
?
wxU
(
_
(
"Paused"
))
:
wxU
(
_
(
"Playing"
))));
}
#endif
#endif
}
}
...
...
modules/gui/wxwidgets/interface.cpp
View file @
82d59e50
...
...
@@ -396,6 +396,8 @@ Interface::Interface( intf_thread_t *_p_intf, long style ):
/* Put this in the splitter */
splitter
->
Initialize
(
main_panel
);
/* wxCocoa pretends to support this, but at least 2.6.x doesn't */
#ifndef __APPLE__
#ifdef wxHAS_TASK_BAR_ICON
/* Systray integration */
p_systray
=
NULL
;
...
...
@@ -403,6 +405,7 @@ Interface::Interface( intf_thread_t *_p_intf, long style ):
{
p_systray
=
new
Systray
(
this
,
p_intf
);
}
#endif
#endif
/* Creation of the menu bar */
...
...
@@ -493,8 +496,11 @@ Interface::~Interface()
if
(
video_window
)
delete
video_window
;
/* wxCocoa pretends to support this, but at least 2.6.x doesn't */
#ifndef __APPLE__
#ifdef wxHAS_TASK_BAR_ICON
if
(
p_systray
)
delete
p_systray
;
#endif
#endif
p_intf
->
b_interaction
=
VLC_FALSE
;
...
...
modules/gui/wxwidgets/interface.hpp
View file @
82d59e50
...
...
@@ -54,6 +54,8 @@ namespace wxvlc
#endif
/* Systray integration */
/* wxCocoa pretends to support this, but at least 2.6.x doesn't */
#ifndef __APPLE__
#ifdef wxHAS_TASK_BAR_ICON
class
Systray
:
public
wxTaskBarIcon
{
...
...
@@ -75,6 +77,7 @@ namespace wxvlc
intf_thread_t
*
p_intf
;
DECLARE_EVENT_TABLE
()
};
#endif
#endif
/* Main Interface */
...
...
@@ -104,8 +107,11 @@ namespace wxvlc
wxControl
*
volctrl
;
/* wxCocoa pretends to support this, but at least 2.6.x doesn't */
#ifndef __APPLE__
#ifdef wxHAS_TASK_BAR_ICON
Systray
*
p_systray
;
#endif
#endif
wxWindow
*
video_window
;
...
...
modules/gui/wxwidgets/wxwidgets.cpp
View file @
82d59e50
...
...
@@ -135,10 +135,13 @@ vlc_module_begin();
add_bool
(
"wx-autosize"
,
1
,
NULL
,
SIZE_TO_VIDEO_TEXT
,
SIZE_TO_VIDEO_LONGTEXT
,
VLC_TRUE
);
add_deprecated
(
"wxwin-autosize"
,
VLC_FALSE
);
/*Deprecated since 0.8.4*/
/* wxCocoa pretends to support this, but at least 2.6.x doesn't */
#ifndef __APPLE__
#ifdef wxHAS_TASK_BAR_ICON
add_bool
(
"wx-systray"
,
0
,
NULL
,
SYSTRAY_TEXT
,
SYSTRAY_LONGTEXT
,
VLC_FALSE
);
add_deprecated
(
"wxwin-systray"
,
VLC_FALSE
);
/*Deprecated since 0.8.4*/
#endif
#endif
add_string
(
"wx-config-last"
,
NULL
,
NULL
,
"last config"
,
"last config"
,
VLC_TRUE
);
...
...
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