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
f15c486b
Commit
f15c486b
authored
Jul 18, 2006
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fix a number of encoding bugs
* add "make nice" in modules to call ./compile
parent
f6ef9859
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
28 deletions
+38
-28
bootstrap
bootstrap
+3
-0
modules/gui/qt4/Modules.am
modules/gui/qt4/Modules.am
+1
-1
modules/gui/qt4/menus.cpp
modules/gui/qt4/menus.cpp
+32
-27
modules/gui/qt4/qt4.hpp
modules/gui/qt4/qt4.hpp
+2
-0
No files found.
bootstrap
View file @
f15c486b
...
...
@@ -222,6 +222,9 @@ endif
all: all-modules
nice:
\$
(top_builddir)/compile
# Find out which modules were enabled and tell make to build them
all-modules:
if USE_LIBTOOL
...
...
modules/gui/qt4/Modules.am
View file @
f15c486b
...
...
@@ -67,7 +67,7 @@ $(UIH): %.h: %.ui
$(install_sh)
-d
ui
@
echo
"
$(UIC)
$<
->
$@
"
rm
-f
$@
echo
"#define Q_(a,b)
_(a
)"
>
$@
echo
"#define Q_(a,b)
QString::fromUtf8(_(a)
)"
>
$@
$(UIC)
-tr
"Q_"
$<
>>
$@
...
...
modules/gui/qt4/menus.cpp
View file @
f15c486b
...
...
@@ -117,24 +117,24 @@ void QVLCMenu::createMenuBar( QMenuBar *bar, intf_thread_t *p_intf )
THEDP->menusUpdateMapper, SLOT(map()) ); \
THEDP->menusUpdateMapper->setMapping( menu, f ); }
BAR_ADD
(
FileMenu
(),
_
(
"File"
)
);
BAR_ADD
(
ToolsMenu
(
p_intf
),
_
(
"Tools"
)
);
BAR_DADD
(
VideoMenu
(
p_intf
,
NULL
),
_
(
"Video"
),
1
);
BAR_DADD
(
AudioMenu
(
p_intf
,
NULL
),
_
(
"Audio"
),
2
);
BAR_DADD
(
NavigMenu
(
p_intf
,
NULL
),
_
(
"Navigation"
),
3
);
BAR_ADD
(
FileMenu
(),
qtr
(
"File"
)
);
BAR_ADD
(
ToolsMenu
(
p_intf
),
qtr
(
"Tools"
)
);
BAR_DADD
(
VideoMenu
(
p_intf
,
NULL
),
qtr
(
"Video"
),
1
);
BAR_DADD
(
AudioMenu
(
p_intf
,
NULL
),
qtr
(
"Audio"
),
2
);
BAR_DADD
(
NavigMenu
(
p_intf
,
NULL
),
qtr
(
"Navigation"
),
3
);
// BAR_ADD( HelpMenu(),
_
("Help" ) );
// BAR_ADD( HelpMenu(),
qtr
("Help" ) );
}
QMenu
*
QVLCMenu
::
FileMenu
()
{
QMenu
*
menu
=
new
QMenu
();
DP_SADD
(
_
(
"Quick &Open File..."
)
,
""
,
""
,
simpleOpenDialog
()
);
DP_SADD
(
_
(
"&Advanced Open..."
),
""
,
""
,
openDialog
()
);
DP_SADD
(
qtr
(
"Quick &Open File..."
)
,
""
,
""
,
simpleOpenDialog
()
);
DP_SADD
(
qtr
(
"&Advanced Open..."
),
""
,
""
,
openDialog
()
);
menu
->
addSeparator
();
DP_SADD
(
_
(
"Streaming..."
),
""
,
""
,
streamingDialog
()
);
DP_SADD
(
qtr
(
"Streaming..."
),
""
,
""
,
streamingDialog
()
);
menu
->
addSeparator
();
DP_SADD
(
_
(
"&Quit"
)
,
""
,
""
,
quit
()
);
DP_SADD
(
qtr
(
"&Quit"
)
,
""
,
""
,
quit
()
);
return
menu
;
}
...
...
@@ -144,16 +144,16 @@ QMenu *QVLCMenu::ToolsMenu( intf_thread_t *p_intf, bool with_intf )
if
(
with_intf
)
{
QMenu
*
intfmenu
=
InterfacesMenu
(
p_intf
,
NULL
);
intfmenu
->
setTitle
(
_
(
"Interfaces"
)
);
intfmenu
->
setTitle
(
qtr
(
"Interfaces"
)
);
menu
->
addMenu
(
intfmenu
);
/** \todo ADD EXT GUI HERE */
menu
->
addSeparator
();
}
DP_SADD
(
_
(
"Messages"
),
""
,
""
,
messagesDialog
()
);
DP_SADD
(
_
(
"Information"
)
,
""
,
""
,
streaminfoDialog
()
);
DP_SADD
(
_
(
"Bookmarks"
),
""
,
""
,
bookmarksDialog
()
);
DP_SADD
(
qtr
(
"Messages"
),
""
,
""
,
messagesDialog
()
);
DP_SADD
(
qtr
(
"Information"
)
,
""
,
""
,
streaminfoDialog
()
);
DP_SADD
(
qtr
(
"Bookmarks"
),
""
,
""
,
bookmarksDialog
()
);
menu
->
addSeparator
();
DP_SADD
(
_
(
"Preferences"
),
""
,
""
,
prefsDialog
()
);
DP_SADD
(
qtr
(
"Preferences"
),
""
,
""
,
prefsDialog
()
);
return
menu
;
}
...
...
@@ -261,26 +261,26 @@ QMenu *QVLCMenu::NavigMenu( intf_thread_t *p_intf, QMenu *current )
#define POPUP_STATIC_ENTRIES \
vlc_value_t val; \
MIM_SADD(
_
("Stop"), "", "", stop() ); \
MIM_SADD(
_
("Previous"), "", "", prev() ); \
MIM_SADD(
_
("Next"), "", "", next() ); \
MIM_SADD(
qtr
("Stop"), "", "", stop() ); \
MIM_SADD(
qtr
("Previous"), "", "", prev() ); \
MIM_SADD(
qtr
("Next"), "", "", next() ); \
if( p_input ) \
{ \
var_Get( p_input, "state", &val ); \
if( val.i_int == PAUSE_S ) \
MIM_SADD(
_
("Play"), "", "", togglePlayPause() ) \
MIM_SADD(
qtr
("Play"), "", "", togglePlayPause() ) \
else \
MIM_SADD(
_
("Pause"), "", "", togglePlayPause() ) \
MIM_SADD(
qtr
("Pause"), "", "", togglePlayPause() ) \
} \
else if( THEPL->i_size && THEPL->i_enabled ) \
MIM_SADD(
_
("Play"), "", "", togglePlayPause() ) \
MIM_SADD(
qtr
("Play"), "", "", togglePlayPause() ) \
\
QMenu *intfmenu = InterfacesMenu( p_intf, NULL ); \
intfmenu->setTitle(
_
("Interfaces" ) ); \
intfmenu->setTitle(
qtr
("Interfaces" ) ); \
menu->addMenu( intfmenu ); \
\
QMenu *toolsmenu = ToolsMenu( p_intf, false ); \
toolsmenu->setTitle(
_
("Tools" ) ); \
toolsmenu->setTitle(
qtr
("Tools" ) ); \
menu->addMenu( toolsmenu ); \
void
QVLCMenu
::
VideoPopupMenu
(
intf_thread_t
*
p_intf
)
...
...
@@ -413,7 +413,7 @@ QMenu * QVLCMenu::Populate( intf_thread_t *p_intf, QMenu *current,
vlc_bool_t
b_section_empty
=
VLC_FALSE
;
int
i
;
#define APPEND_EMPTY { QAction *action = menu->addAction(
_
("Empty" ) ); \
#define APPEND_EMPTY { QAction *action = menu->addAction(
qtr
("Empty" ) ); \
action->setEnabled( false ); }
for
(
i
=
0
;
i
<
(
int
)
objects
.
size
()
;
i
++
)
...
...
@@ -541,7 +541,8 @@ void QVLCMenu::CreateItem( QMenu *menu, const char *psz_var,
if
(
b_submenu
)
{
QMenu
*
submenu
=
new
QMenu
();
submenu
->
setTitle
(
text
.
psz_string
?
text
.
psz_string
:
psz_var
);
submenu
->
setTitle
(
QString
::
fromUtf8
(
text
.
psz_string
?
text
.
psz_string
:
psz_var
)
);
if
(
CreateChoicesMenu
(
submenu
,
psz_var
,
p_object
,
true
)
==
0
)
menu
->
addMenu
(
submenu
);
}
...
...
@@ -551,7 +552,8 @@ void QVLCMenu::CreateItem( QMenu *menu, const char *psz_var,
return
;
}
#define TEXT_OR_VAR text.psz_string ? text.psz_string : psz_var
#define TEXT_OR_VAR QString::fromUtf8 ( text.psz_string ? text.psz_string : \
psz_var )
switch
(
i_type
&
VLC_VAR_TYPE
)
{
...
...
@@ -618,7 +620,8 @@ int QVLCMenu::CreateChoicesMenu( QMenu *submenu, const char *psz_var,
{
case
VLC_VAR_VARIABLE
:
CreateChoicesMenu
(
subsubmenu
,
CURVAL
.
psz_string
,
p_object
,
false
);
subsubmenu
->
setTitle
(
CURTEXT
?
CURTEXT
:
CURVAL
.
psz_string
);
subsubmenu
->
setTitle
(
QString
::
fromUtf8
(
CURTEXT
?
CURTEXT
:
CURVAL
.
psz_string
)
);
submenu
->
addMenu
(
subsubmenu
);
break
;
...
...
@@ -710,6 +713,8 @@ void QVLCMenu::DoAction( intf_thread_t *p_intf, QObject *data )
itemData
->
i_object_id
);
if
(
p_object
==
NULL
)
return
;
fprintf
(
stderr
,
"Setting %s on %i
\n
"
,
itemData
->
psz_var
,
p_object
->
i_object_id
);
var_Set
(
p_object
,
itemData
->
psz_var
,
itemData
->
val
);
vlc_object_release
(
p_object
);
}
modules/gui/qt4/qt4.hpp
View file @
f15c486b
...
...
@@ -50,6 +50,8 @@ struct intf_sys_t
#define THEDP DialogsProvider::getInstance()
#define THEMIM MainInputManager::getInstance( NULL )
#define qtr( i ) QString::fromUtf8( _(i) )
static
int
DialogEvent_Type
=
QEvent
::
User
+
1
;
class
DialogEvent
:
public
QEvent
...
...
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