Integration of new icons
@@ -1034,7 +1034,7 @@ void MainWindow::createActions()
|
||||
// Play.
|
||||
playAction = new QAction(tr("Play"), this);
|
||||
playAction->setShortcut(tr("CTRL+P"));
|
||||
playAction->setIcon(QIcon(":/images/draw-ellipse-2.png"));
|
||||
playAction->setIcon(QIcon(":/play"));
|
||||
playAction->setStatusTip(tr("Play"));
|
||||
connect(playAction, SIGNAL(triggered()), this, SLOT(play()));
|
||||
playAction->setEnabled(!_isPlaying);
|
||||
@@ -1042,7 +1042,7 @@ void MainWindow::createActions()
|
||||
// Pause.
|
||||
pauseAction = new QAction(tr("Pause"), this);
|
||||
pauseAction->setShortcut(tr("CTRL+P"));
|
||||
pauseAction->setIcon(QIcon(":/images/draw-ellipse-2.png"));
|
||||
pauseAction->setIcon(QIcon(":/pause"));
|
||||
pauseAction->setStatusTip(tr("Pause"));
|
||||
connect(pauseAction, SIGNAL(triggered()), this, SLOT(pause()));
|
||||
pauseAction->setEnabled(_isPlaying);
|
||||
@@ -1050,14 +1050,14 @@ void MainWindow::createActions()
|
||||
// Pause.
|
||||
rewindAction = new QAction(tr("Rewind"), this);
|
||||
rewindAction->setShortcut(tr("CTRL+R"));
|
||||
rewindAction->setIcon(QIcon(":/images/draw-ellipse-2.png"));
|
||||
rewindAction->setIcon(QIcon(":/rewind"));
|
||||
rewindAction->setStatusTip(tr("Rewind"));
|
||||
connect(rewindAction, SIGNAL(triggered()), this, SLOT(rewind()));
|
||||
|
||||
// Toggle display of output window.
|
||||
displayOutputWindow = new QAction(tr("&Display output window"), this);
|
||||
displayOutputWindow->setShortcut(tr("Ctrl+D"));
|
||||
displayOutputWindow->setIcon(QIcon(":/images/draw-ellipse-2.png"));
|
||||
displayOutputWindow->setIcon(QIcon(":/output-window"));
|
||||
displayOutputWindow->setStatusTip(tr("Display output window"));
|
||||
displayOutputWindow->setCheckable(true);
|
||||
displayOutputWindow->setChecked(true);
|
||||
@@ -1070,7 +1070,6 @@ void MainWindow::createActions()
|
||||
outputWindowFullScreen = new QAction(tr("&Full screen"), this);
|
||||
outputWindowFullScreen->setIcon(QIcon(":/fullscreen"));
|
||||
outputWindowFullScreen->setShortcut(tr("Ctrl+F"));
|
||||
outputWindowFullScreen->setIcon(QIcon(":/images/draw-ellipse-2.png"));
|
||||
outputWindowFullScreen->setStatusTip(tr("Full screen"));
|
||||
outputWindowFullScreen->setCheckable(true);
|
||||
outputWindowFullScreen->setChecked(false);
|
||||
@@ -1081,11 +1080,10 @@ void MainWindow::createActions()
|
||||
// Output window should be displayed for full screen option to be available.
|
||||
connect(displayOutputWindow, SIGNAL(toggled(bool)), outputWindowFullScreen, SLOT(setEnabled(bool)));
|
||||
|
||||
|
||||
// Toggle display of canvas controls.
|
||||
displayCanvasControls = new QAction(tr("&Display canvas controls"), this);
|
||||
// displayCanvasControls->setShortcut(tr("Ctrl+E"));
|
||||
displayCanvasControls->setIcon(QIcon(":/images/draw-ellipse-2.png"));
|
||||
displayCanvasControls->setIcon(QIcon(":/control-points"));
|
||||
displayCanvasControls->setStatusTip(tr("Display canvas controls"));
|
||||
displayCanvasControls->setCheckable(true);
|
||||
displayCanvasControls->setChecked(true);
|
||||
|
||||
@@ -1,18 +1,30 @@
|
||||
<RCC>
|
||||
<qresource>
|
||||
<file alias="new">resources/images/menu/save.png</file>
|
||||
<file alias="open">resources/images/menu/save.png</file>
|
||||
<file alias="save">resources/images/menu/save.png</file>
|
||||
<file alias="save-as">resources/images/menu/save.png</file>
|
||||
<file alias="new">resources/images/icons/newdoc_w.png</file>
|
||||
<file alias="open">resources/images/icons/open_w.png</file>
|
||||
<file alias="save">resources/images/icons/save_w.png</file>
|
||||
<file alias="save-as">resources/images/icons/save_w.png</file>
|
||||
|
||||
<file alias="fullscreen">resources/images/menu/fullscreen.png</file>
|
||||
<file alias="fullscreen">resources/images/icons/fullscreen_w.png</file>
|
||||
<file alias="output-window">resources/images/icons/nofullscreen_w.png</file>
|
||||
<file alias="control-points">resources/images/icons/ctrl_w.png</file>
|
||||
|
||||
<file alias="add-media">resources/images/media/video.png</file>
|
||||
<file alias="add-color">resources/images/menu/add_color.png</file>
|
||||
<file alias="add-media">resources/images/icons/add_movie_w.png</file>
|
||||
<file alias="add-color">resources/images/icons/color_w.png</file>
|
||||
|
||||
<file alias="add-mesh">resources/images/icons/ad_quad_w.png</file>
|
||||
<file alias="add-triangle">resources/images/icons/ad_tri_w.png</file>
|
||||
<file alias="add-ellipse">resources/images/icons/ad_cerl_w.png</file>
|
||||
|
||||
<!--
|
||||
<file alias="add-mesh">resources/images/shapes/add_quad.png</file>
|
||||
<file alias="add-triangle">resources/images/shapes/add_triangle.png</file>
|
||||
<file alias="add-ellipse">resources/images/shapes/add_circle.png</file>
|
||||
-->
|
||||
|
||||
<file alias="play">resources/images/icons/play_w.png</file>
|
||||
<file alias="pause">resources/images/icons/pause_w.png</file>
|
||||
<file alias="rewind">resources/images/icons/rewind_w.png</file>
|
||||
|
||||
<file alias="shape-mesh">resources/images/shapes/add_quad.png</file>
|
||||
<file alias="shape-triangle">resources/images/shapes/add_triangle.png</file>
|
||||
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 915 B |
|
After Width: | Height: | Size: 937 B |
|
After Width: | Height: | Size: 912 B |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 4.6 KiB |
|
After Width: | Height: | Size: 4.3 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 2.9 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 2.2 KiB |
|
After Width: | Height: | Size: 962 B |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 2.3 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 26 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 969 B |
|
After Width: | Height: | Size: 936 B |
|
After Width: | Height: | Size: 907 B |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.7 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 1.8 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |