Compiling smplayer 编译smplayer

Compiling smplayer  编译smplayer 


open the Qt console: select the option "Qt 4.3.x

Command Prompt" that you'll find under the Qt menu.


That'll open a DOS-like window. Type the following commands:


cd c:\smplayer

compile_windows.cmd


Compiling will start. That'll take a few minutes.


After that you'll get the new compiled smplayer.exe under

c:\smplayer\src\release subdirectory.


来着trunk文件夹里的instal.txt


---------------------------basegui.cpp--------------------------

// MENUS

menuBar()->hide();


menuBar()->show();  替换为空   ----> 删除


setWindowCaption( core->mdat.displayName(pref->show_tag_in_window_title) + " - SMPlayer" );

+ " - SMPlayer"  替换为空   ----> 删除

删除

favorites->menuAction()->setIcon( Images::icon("open_favorites") ); 


---------------------------widgetactions.cpp--------------------------


    // ColorUtils::setBackgroundColor( time_label, QColor(0,0,0) );

    // ColorUtils::setForegroundColor( time_label, QColor(255,255,255) );

time_label->setText( " 00:00:00 / 00:00:00" );//有一个空格在字符串前面


time_label->setFrameShape( QFrame::Panel );

替换为

time_label->setFrameShape( QFrame::NoFrame );//这行才是要用的


emit newText(s);

替换成

emit newText(" "+s);


tick_position = QSlider::TicksBelow; 

替换成

tick_position = QSlider::NoTicks;

---------------------------minigui.cpp--------------------------

controlwidget->setMovable(true);

controlwidget->setMovable(false);



评论

© ID4333709 | Powered by LOFTER