|
@@ -21,7 +21,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
21
|
21
|
// Closes window with cmd + w
|
22
|
22
|
// Cierra la ventana con cmd + w
|
23
|
23
|
new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_W), this, SLOT(close()));
|
24
|
|
- // Opens a image with cmd + o
|
|
24
|
+ // Opens an image with cmd + o
|
25
|
25
|
// Abre una imagen con cmd + o
|
26
|
26
|
new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_O), this, SLOT(on_btnSelectImage_clicked()));
|
27
|
27
|
// Opens background image with cmd + n
|
|
@@ -31,7 +31,7 @@ MainWindow::MainWindow(QWidget *parent) :
|
31
|
31
|
// Guarda una imagen con cmd + s
|
32
|
32
|
new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_S), this, SLOT(on_btnSaveImage_clicked()));
|
33
|
33
|
// Merges two images with cmd + m
|
34
|
|
- // Fuciona dos imagenes con cmd + m
|
|
34
|
+ // Fusiona dos imagenes con cmd + m
|
35
|
35
|
new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_M), this, SLOT(on_btnMergeImages_clicked()));
|
36
|
36
|
// Makes the label clickable.
|
37
|
37
|
// Hace el labelWidget cliqueable.
|
|
@@ -91,7 +91,7 @@ void MainWindow::on_btnSelectBackground_clicked(){
|
91
|
91
|
/// \brief Invokes the function that merges the green screen image with the background image,
|
92
|
92
|
/// then displays the merged image.
|
93
|
93
|
/// \~Spanish
|
94
|
|
-/// \brief Invoca la funcion que fusional la imagen con transfondo verde con la imagen de transfondo,
|
|
94
|
+/// \brief Invoca la funcion que fusiona la imagen con transfondo verde con la imagen de transfondo,
|
95
|
95
|
/// entonces displiega la imagen fusionada.
|
96
|
96
|
void MainWindow::on_btnMergeImages_clicked(){
|
97
|
97
|
if (originalImage.width() > backgroundImage.width() || originalImage.height() > backgroundImage.height()){
|
|
@@ -108,8 +108,8 @@ void MainWindow::on_btnMergeImages_clicked(){
|
108
|
108
|
/// \brief Displays the file browse window to choose the path to save
|
109
|
109
|
/// the merged image in the file system.
|
110
|
110
|
/// \~Spanish
|
111
|
|
-/// \brief Despliega la ventana de busqueda de archivos para escoger un camino
|
112
|
|
-/// guardar la imagen fusionada en el sistema de archivos.
|
|
111
|
+/// \brief Despliega la ventana de búsqueda de archivos para escoger un camino
|
|
112
|
+/// para guardar la imagen fusionada en el sistema de archivos.
|
113
|
113
|
void MainWindow::on_btnSaveImage_clicked(){
|
114
|
114
|
if(!mergedImage.isNull()){
|
115
|
115
|
QPixmap out = QPixmap::grabWidget(this,361,10,481,481);
|
|
@@ -141,7 +141,7 @@ void MainWindow::Mouse_Pressed(){
|
141
|
141
|
/// \~English
|
142
|
142
|
/// \brief Function that gets the coordinaates of the image with the final background.
|
143
|
143
|
/// \~Spanish
|
144
|
|
-/// \brief Funcion que obtiene las coordenada de la imagen con el trasfondo final.
|
|
144
|
+/// \brief Funcion que obtiene las coordenadas de la imagen con el trasfondo final.
|
145
|
145
|
void MainWindow::Mouse_PressedBackground(){
|
146
|
146
|
if (!backgroundImage.isNull()){
|
147
|
147
|
if (backgroundImage.height() < ui->lblBackgroundImage->height())
|