Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
8e5a7d79
Commit
8e5a7d79
authored
Apr 21, 2003
by
Anil Daoud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*All: fixed unwanted fileinfo window refresh under windows.
parent
e2af7970
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
5 deletions
+15
-5
modules/gui/skins/src/wxdialogs.h
modules/gui/skins/src/wxdialogs.h
+2
-1
modules/gui/wxwindows/fileinfo.cpp
modules/gui/wxwindows/fileinfo.cpp
+11
-3
modules/gui/wxwindows/wxwindows.h
modules/gui/wxwindows/wxwindows.h
+2
-1
No files found.
modules/gui/skins/src/wxdialogs.h
View file @
8e5a7d79
...
...
@@ -2,7 +2,7 @@
* wxwindows.h: private wxWindows interface description
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: wxdialogs.h,v 1.
1 2003/04/20 20:28:39 ipkiss
Exp $
* $Id: wxdialogs.h,v 1.
2 2003/04/21 16:55:53 anil
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -360,6 +360,7 @@ private:
intf_thread_t
*
p_intf
;
wxTreeCtrl
*
fileinfo_tree
;
wxTreeItemId
fileinfo_root
;
wxString
fileinfo_root_label
;
};
...
...
modules/gui/wxwindows/fileinfo.cpp
View file @
8e5a7d79
...
...
@@ -2,7 +2,7 @@
* fileinfo.cpp : wxWindows plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: fileinfo.cpp,v 1.
9 2003/04/21 00:54:26 ipkiss
Exp $
* $Id: fileinfo.cpp,v 1.
10 2003/04/21 16:55:53 anil
Exp $
*
* Authors: Sigmund Augdal <sigmunau@idi.ntnu.no>
*
...
...
@@ -92,6 +92,8 @@ FileInfo::FileInfo( intf_thread_t *_p_intf, Interface *_p_main_interface ):
new
wxTreeCtrl
(
panel
,
-
1
,
wxDefaultPosition
,
wxSize
(
350
,
350
),
wxTR_HAS_BUTTONS
|
wxTR_HIDE_ROOT
|
wxSUNKEN_BORDER
);
fileinfo_root_label
=
""
;
/* Create the OK button */
wxButton
*
ok_button
=
new
wxButton
(
panel
,
wxID_OK
,
_
(
"OK"
)
);
ok_button
->
SetDefault
();
...
...
@@ -121,17 +123,21 @@ void FileInfo::UpdateFileInfo()
{
if
(
fileinfo_root
)
{
fileinfo_tree
->
SetItemText
(
fileinfo_root
,
""
);
fileinfo_tree
->
SetItemText
(
fileinfo_root
,
""
);
fileinfo_root_label
=
""
;
fileinfo_tree
->
DeleteChildren
(
fileinfo_root
);
}
return
;
}
wxString
inputinfo
=
p_input
->
psz_name
;
if
(
!
fileinfo_root
)
{
fileinfo_root
=
fileinfo_tree
->
AddRoot
(
p_input
->
psz_name
);
fileinfo_root_label
=
p_input
->
psz_name
;
}
else
if
(
fileinfo_
tree
->
GetItemText
(
fileinfo_root
)
==
p_input
->
psz_name
)
else
if
(
fileinfo_
root_label
==
inputinfo
)
{
return
;
}
...
...
@@ -141,6 +147,8 @@ void FileInfo::UpdateFileInfo()
vlc_mutex_lock
(
&
p_input
->
stream
.
stream_lock
);
fileinfo_tree
->
SetItemText
(
fileinfo_root
,
p_input
->
psz_name
);
fileinfo_root_label
=
p_input
->
psz_name
;
input_info_category_t
*
p_cat
=
p_input
->
stream
.
p_info
;
while
(
p_cat
)
...
...
modules/gui/wxwindows/wxwindows.h
View file @
8e5a7d79
...
...
@@ -2,7 +2,7 @@
* wxwindows.h: private wxWindows interface description
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: wxwindows.h,v 1.1
7 2003/04/17 14:00:44
anil Exp $
* $Id: wxwindows.h,v 1.1
8 2003/04/21 16:55:53
anil Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -413,6 +413,7 @@ private:
intf_thread_t
*
p_intf
;
wxTreeCtrl
*
fileinfo_tree
;
wxTreeItemId
fileinfo_root
;
wxString
fileinfo_root_label
;
};
...
...
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