Compare commits
	
		
			3 commits
		
	
	
		
			f665ccfd7d
			...
			9c559e8a8f
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | 9c559e8a8f | ||
|  | e68b46f3b7 | ||
|  | 6da193c50d | 
					 6 changed files with 18 additions and 5 deletions
				
			
		|  | @ -34,7 +34,6 @@ v  0.3.0 | |||
| - Rose noise and sine generator. | ||||
| - Logs, verbosity, timestamp. | ||||
| - New play mode without pitch control, it saves resources. MA_SOUND_FLAG_NO_PITCH | ||||
| - SettingsDialog. | ||||
| - Load/save conf file. | ||||
| - ¿Exit Point? is it needed? | ||||
| - Hardening: check return errors, try/catch exceptions, i'm too happy.... | ||||
|  | @ -46,4 +45,5 @@ v  0.3.0 | |||
| 
 | ||||
| v 0.2.1 showplayer | ||||
| 
 | ||||
| - SettingsDialog, configuración gráfica. | ||||
| 
 | ||||
|  |  | |||
|  | @ -11,6 +11,6 @@ | |||
|         <file>resources/icon.png</file> | ||||
|         <file>resources/panic_button.jpg</file> | ||||
|         <file>resources/go_button.jpeg</file>   | ||||
|         <file>resources/restore_button.jpg</file>       | ||||
|         <file>resources/restore_button.jpg</file> | ||||
|     </qresource> | ||||
| </RCC> | ||||
|  |  | |||
|  | @ -36,6 +36,7 @@ libreMediaServerAudioUi::libreMediaServerAudioUi(QWidget *parent) | |||
|     addDockWidget(Qt::TopDockWidgetArea, topWidget); | ||||
|     connect(ui.actionLaunch_OLA_Setup, SIGNAL(triggered()), this, SLOT(olasetup())); | ||||
|     connect(ui.actionLaunchShowPlayer, SIGNAL(triggered()), this, SLOT(launchShowPlayerWindow())); | ||||
|     connect(ui.actionAudioSetup, SIGNAL(triggered()), this, SLOT(audioSetupWindow)); | ||||
|     this->setContentsMargins(0, 0, 0, 0); | ||||
|     this->setStyleSheet( | ||||
|                 "margin: 0px;" | ||||
|  | @ -98,3 +99,8 @@ void libreMediaServerAudioUi::launchShowPlayerWindow() | |||
| { | ||||
|     m_showPlayer->show(); | ||||
| } | ||||
| 
 | ||||
| void libreMediaServerAudioUi::audioSetupWindow() | ||||
| { | ||||
| 
 | ||||
| } | ||||
|  |  | |||
|  | @ -46,6 +46,7 @@ private: | |||
| private slots: | ||||
|     void olasetup(); | ||||
|     void launchShowPlayerWindow(); | ||||
|     void audioSetupWindow(); | ||||
| }; | ||||
| 
 | ||||
| #endif // LIBREMEDIASERVERAUDIOUI_H
 | ||||
|  |  | |||
|  | @ -15,7 +15,6 @@ | |||
|    <font> | ||||
|     <family>Unifont</family> | ||||
|     <pointsize>12</pointsize> | ||||
|     <weight>75</weight> | ||||
|     <bold>true</bold> | ||||
|    </font> | ||||
|   </property> | ||||
|  | @ -38,10 +37,11 @@ | |||
|    </property> | ||||
|    <widget class="QMenu" name="menuFile"> | ||||
|     <property name="title"> | ||||
|      <string>File</string> | ||||
|      <string>Setup</string> | ||||
|     </property> | ||||
|     <addaction name="actionLaunch_OLA_Setup"/> | ||||
|     <addaction name="actionLaunchShowPlayer"/> | ||||
|     <addaction name="actionAudioSetup"/> | ||||
|    </widget> | ||||
|    <addaction name="menuFile"/> | ||||
|   </widget> | ||||
|  | @ -55,6 +55,11 @@ | |||
|     <string>Show Player</string> | ||||
|    </property> | ||||
|   </action> | ||||
|   <action name="actionAudioSetup"> | ||||
|    <property name="text"> | ||||
|     <string>Audio</string> | ||||
|    </property> | ||||
|   </action> | ||||
|  </widget> | ||||
|  <resources> | ||||
|   <include location="../lms-resources.qrc"/> | ||||
|  |  | |||
|  | @ -2,7 +2,7 @@ | |||
| 
 | ||||
| 
 | ||||
| ShowPlayer::ShowPlayer(QWidget *parent) : | ||||
|     QDialog(parent) | ||||
|     QDialog(parent, Qt::Window) | ||||
|   , ui(new Ui::ShowPlayer) | ||||
| { | ||||
|     ui->setupUi(this); | ||||
|  | @ -31,6 +31,7 @@ ShowPlayer::ShowPlayer(QWidget *parent) : | |||
|     ui->splitter_controls->restoreState(Settings::getInstance()->value("controlsSplitter").toByteArray()); | ||||
|     ui->splitter_cues->restoreState(Settings::getInstance()->value("cueSplitter").toByteArray()); | ||||
|     Settings::getInstance()->endGroup(); | ||||
|     ui->activeCueList->setSelectionMode(QAbstractItemView::NoSelection); | ||||
| } | ||||
| 
 | ||||
| ShowPlayer::~ShowPlayer() | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue