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
3e89395f
Commit
3e89395f
authored
Apr 05, 2005
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wx: bunch more event function parameter changes
parent
eaa82016
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
19 deletions
+19
-19
modules/gui/wxwindows/playlist.cpp
modules/gui/wxwindows/playlist.cpp
+6
-6
modules/gui/wxwindows/preferences.cpp
modules/gui/wxwindows/preferences.cpp
+1
-1
modules/gui/wxwindows/preferences_widgets.cpp
modules/gui/wxwindows/preferences_widgets.cpp
+2
-2
modules/gui/wxwindows/preferences_widgets.h
modules/gui/wxwindows/preferences_widgets.h
+2
-2
modules/gui/wxwindows/wxwindows.h
modules/gui/wxwindows/wxwindows.h
+8
-8
No files found.
modules/gui/wxwindows/playlist.cpp
View file @
3e89395f
...
...
@@ -957,7 +957,7 @@ void Playlist::DeleteNode( playlist_item_t *p_item )
}
void
Playlist
::
OnClose
(
wxC
ommand
Event
&
WXUNUSED
(
event
)
)
void
Playlist
::
OnClose
(
wxC
lose
Event
&
WXUNUSED
(
event
)
)
{
Hide
();
}
...
...
@@ -1452,7 +1452,7 @@ void Playlist::OnPopup( wxContextMenuEvent& event )
}
}
void
Playlist
::
OnPopupPlay
(
wx
Menu
Event
&
event
)
void
Playlist
::
OnPopupPlay
(
wx
Command
Event
&
event
)
{
playlist_t
*
p_playlist
=
(
playlist_t
*
)
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
...
...
@@ -1491,7 +1491,7 @@ void Playlist::OnPopupPlay( wxMenuEvent& event )
vlc_object_release
(
p_playlist
);
}
void
Playlist
::
OnPopupPreparse
(
wx
Menu
Event
&
event
)
void
Playlist
::
OnPopupPreparse
(
wx
Command
Event
&
event
)
{
playlist_t
*
p_playlist
=
(
playlist_t
*
)
vlc_object_find
(
p_intf
,
VLC_OBJECT_PLAYLIST
,
...
...
@@ -1528,7 +1528,7 @@ void Playlist::Preparse( playlist_t *p_playlist )
}
}
void
Playlist
::
OnPopupDel
(
wx
Menu
Event
&
event
)
void
Playlist
::
OnPopupDel
(
wx
Command
Event
&
event
)
{
PlaylistItem
*
p_wxitem
;
...
...
@@ -1544,7 +1544,7 @@ void Playlist::OnPopupDel( wxMenuEvent& event )
}
}
void
Playlist
::
OnPopupSort
(
wx
Menu
Event
&
event
)
void
Playlist
::
OnPopupSort
(
wx
Command
Event
&
event
)
{
PlaylistItem
*
p_wxitem
;
...
...
@@ -1570,7 +1570,7 @@ void Playlist::OnPopupSort( wxMenuEvent& event )
}
}
void
Playlist
::
OnPopupInfo
(
wx
Menu
Event
&
event
)
void
Playlist
::
OnPopupInfo
(
wx
Command
Event
&
event
)
{
if
(
p_popup_item
)
{
...
...
modules/gui/wxwindows/preferences.cpp
View file @
3e89395f
...
...
@@ -269,7 +269,7 @@ void PrefsDialog::OnOk( wxCommandEvent& WXUNUSED(event) )
prefs_tree
->
CleanChanges
();
}
void
PrefsDialog
::
OnCancel
(
wx
Command
Event
&
WXUNUSED
(
event
)
)
void
PrefsDialog
::
OnCancel
(
wxEvent
&
WXUNUSED
(
event
)
)
{
this
->
Hide
();
prefs_tree
->
CleanChanges
();
...
...
modules/gui/wxwindows/preferences_widgets.cpp
View file @
3e89395f
...
...
@@ -159,7 +159,7 @@ void ConfigControl::SetUpdateCallback( void (*p_callback)( void * ),
p_update_data
=
p_data
;
}
void
ConfigControl
::
OnUpdate
(
wx
Command
Event
&
WXUNUSED
(
event
)
)
void
ConfigControl
::
OnUpdate
(
wxEvent
&
WXUNUSED
(
event
)
)
{
if
(
pf_update_callback
)
{
...
...
@@ -743,7 +743,7 @@ int IntegerConfigControl::GetIntValue()
return
i_value
;
//spin->GetValue();
}
void
IntegerConfigControl
::
OnUpdate
(
wx
Command
Event
&
event
)
void
IntegerConfigControl
::
OnUpdate
(
wx
Scroll
Event
&
event
)
{
i_value
=
event
.
GetInt
();
ConfigControl
::
OnUpdate
(
event
);
...
...
modules/gui/wxwindows/preferences_widgets.h
View file @
3e89395f
...
...
@@ -48,7 +48,7 @@ protected:
void
(
*
pf_update_callback
)(
void
*
);
void
*
p_update_data
;
void
OnUpdate
(
wx
Command
Event
&
);
void
OnUpdate
(
wxEvent
&
);
private:
wxString
name
;
...
...
@@ -170,7 +170,7 @@ private:
wxSpinCtrl
*
spin
;
int
i_value
;
void
OnUpdate
(
wx
Command
Event
&
);
void
OnUpdate
(
wx
Scroll
Event
&
);
DECLARE_EVENT_TABLE
()
};
...
...
modules/gui/wxwindows/wxwindows.h
View file @
3e89395f
...
...
@@ -774,7 +774,7 @@ private:
/* Event handlers (these functions should _not_ be virtual) */
void
OnOk
(
wxCommandEvent
&
event
);
void
OnCancel
(
wx
Command
Event
&
event
);
void
OnCancel
(
wxEvent
&
event
);
void
OnSave
(
wxCommandEvent
&
event
);
void
OnResetAll
(
wxCommandEvent
&
event
);
void
OnAdvanced
(
wxCommandEvent
&
event
);
...
...
@@ -842,7 +842,7 @@ private:
void
OnAddFile
(
wxCommandEvent
&
event
);
void
OnAddDir
(
wxCommandEvent
&
event
);
void
OnAddMRL
(
wxCommandEvent
&
event
);
void
OnClose
(
wxC
ommand
Event
&
event
);
void
OnClose
(
wxC
lose
Event
&
event
);
void
OnEnableSelection
(
wxCommandEvent
&
event
);
void
OnDisableSelection
(
wxCommandEvent
&
event
);
...
...
@@ -895,12 +895,12 @@ private:
playlist_item_t
*
p_popup_item
;
playlist_item_t
*
p_popup_parent
;
void
OnPopup
(
wxContextMenuEvent
&
event
);
void
OnPopupPlay
(
wx
Menu
Event
&
event
);
void
OnPopupPreparse
(
wx
Menu
Event
&
event
);
void
OnPopupSort
(
wx
Menu
Event
&
event
);
void
OnPopupDel
(
wx
Menu
Event
&
event
);
void
OnPopupEna
(
wx
Menu
Event
&
event
);
void
OnPopupInfo
(
wx
Menu
Event
&
event
);
void
OnPopupPlay
(
wx
Command
Event
&
event
);
void
OnPopupPreparse
(
wx
Command
Event
&
event
);
void
OnPopupSort
(
wx
Command
Event
&
event
);
void
OnPopupDel
(
wx
Command
Event
&
event
);
void
OnPopupEna
(
wx
Command
Event
&
event
);
void
OnPopupInfo
(
wx
Command
Event
&
event
);
void
Rebuild
(
vlc_bool_t
);
void
Preparse
(
playlist_t
*
p_playlist
);
...
...
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