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
00fdbca4
Commit
00fdbca4
authored
Sep 15, 2002
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Hide progressbar widget on startup.
parent
35180156
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
modules/gui/familiar/familiar.c
modules/gui/familiar/familiar.c
+5
-1
modules/gui/familiar/familiar.h
modules/gui/familiar/familiar.h
+2
-1
No files found.
modules/gui/familiar/familiar.c
View file @
00fdbca4
...
...
@@ -2,7 +2,7 @@
* familiar.c : familiar plugin for vlc
*****************************************************************************
* Copyright (C) 2002 VideoLAN
* $Id: familiar.c,v 1.
8 2002/08/25 20:44:40
jpsaman Exp $
* $Id: familiar.c,v 1.
9 2002/09/15 19:32:02
jpsaman Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
*
...
...
@@ -133,6 +133,10 @@ static void Run( intf_thread_t *p_intf )
GTK_OBJECT
(
p_intf
->
p_sys
->
p_window
),
"notebook"
)
);
// gtk_widget_hide( GTK_WIDGET(p_intf->p_sys->p_notebook) );
p_intf
->
p_sys
->
p_progess
=
GTK_PROGRESS_BAR
(
gtk_object_get_data
(
GTK_OBJECT
(
p_intf
->
p_sys
->
p_window
),
"progress"
)
);
gtk_widget_hide
(
GTK_WIDGET
(
p_intf
->
p_sys
->
p_progess
)
);
p_intf
->
p_sys
->
p_clist
=
GTK_CLIST
(
gtk_object_get_data
(
GTK_OBJECT
(
p_intf
->
p_sys
->
p_window
),
"clistmedia"
)
);
gtk_clist_set_column_visibility
(
GTK_CLIST
(
p_intf
->
p_sys
->
p_clist
),
2
,
FALSE
);
...
...
modules/gui/familiar/familiar.h
View file @
00fdbca4
...
...
@@ -2,7 +2,7 @@
* familiar.h: private Gtk+ interface description
*****************************************************************************
* Copyright (C) 1999, 2000 VideoLAN
* $Id: familiar.h,v 1.
5 2002/08/20 18:08:51 sam
Exp $
* $Id: familiar.h,v 1.
6 2002/09/15 19:32:03 jpsaman
Exp $
*
* Authors: Jean-Paul Saman <jpsaman@wxs.nl>
*
...
...
@@ -34,6 +34,7 @@ struct intf_sys_t
/* windows and widgets */
GtkWidget
*
p_window
;
/* main window */
GtkNotebook
*
p_notebook
;
GtkProgressBar
*
p_progess
;
// GtkWidget * p_notebook_about;
// GtkWidget * p_notebook_open;
// GtkWidget * p_notebook_preferences;
...
...
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