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
8ad11518
Commit
8ad11518
authored
Dec 05, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: state machine fixes part 1
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
2a455044
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
134 additions
and
92 deletions
+134
-92
modules/gui/qt4/main_interface.cpp
modules/gui/qt4/main_interface.cpp
+129
-90
modules/gui/qt4/main_interface.hpp
modules/gui/qt4/main_interface.hpp
+5
-2
No files found.
modules/gui/qt4/main_interface.cpp
View file @
8ad11518
This diff is collapsed.
Click to expand it.
modules/gui/qt4/main_interface.hpp
View file @
8ad11518
...
@@ -118,8 +118,10 @@ private:
...
@@ -118,8 +118,10 @@ private:
bool
isDocked
()
{
return
(
i_pl_dock
!=
PL_UNDOCKED
);
}
bool
isDocked
()
{
return
(
i_pl_dock
!=
PL_UNDOCKED
);
}
void
showTab
(
int
i_tab
);
void
showTab
(
int
i_tab
);
void
restoreStackOldWidget
();
void
showVideo
()
{
showTab
(
VIDEO_TAB
);
}
void
showVideo
()
{
showTab
(
VIDEO_TAB
);
}
void
showBg
()
{
showTab
(
BACKG_TAB
);
}
void
showBg
()
{
showTab
(
BACKG_TAB
);
}
void
hideStackWidget
()
{
showTab
(
HIDDEN_TAB
);
}
QSettings
*
settings
;
QSettings
*
settings
;
#ifndef HAVE_MAEMO
#ifndef HAVE_MAEMO
...
@@ -147,8 +149,8 @@ private:
...
@@ -147,8 +149,8 @@ private:
enum
{
enum
{
HIDDEN_TAB
=
-
1
,
HIDDEN_TAB
=
-
1
,
BACKG_TAB
=
0
,
BACKG_TAB
=
0
,
VIDEO_TAB
,
VIDEO_TAB
=
1
,
PLAYL_TAB
,
PLAYL_TAB
=
2
,
};
};
int
stackCentralOldState
;
int
stackCentralOldState
;
...
@@ -171,6 +173,7 @@ private:
...
@@ -171,6 +173,7 @@ private:
LPTASKBARLIST3
p_taskbl
;
LPTASKBARLIST3
p_taskbl
;
void
createTaskBarButtons
();
void
createTaskBarButtons
();
#endif
#endif
void
createPlaylist
(
bool
);
public
slots
:
public
slots
:
void
undockPlaylist
();
void
undockPlaylist
();
...
...
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