- Add a verbose flag and put debugging output being it ("-v" || " --verbose")

- In verbose mode draw a thumbnail of the source image in the bottom left of the window
- Add support for long options in the command line parsing
- Add a "stretch" argument that will stretch the aspect axis to fit the window when set. For example, in landscape mode the drawn picture will be as wide as the window, cropping the top and bottom
This commit is contained in:
Alfred Reynolds
2021-07-29 13:13:38 +12:00
parent bee9a78986
commit a0089db75b
7 changed files with 116 additions and 13 deletions

View File

@@ -50,7 +50,10 @@ void Overlay::parseInput() {
QString Overlay::getTemplate(QStringList components){
if (components.size()>3) {
std::cout << "template: " << components[3].toStdString() << std::endl;
if(_debugMode)
{
std::cout << "template: " << components[3].toStdString() << std::endl;
}
return components[3];
}
return "";
@@ -58,7 +61,10 @@ QString Overlay::getTemplate(QStringList components){
int Overlay::getMargin(QStringList components){
if (components.size()>1) {
std::cout << "margin: " << components[1].toStdString() << std::endl;
if(_debugMode)
{
std::cout << "margin: " << components[1].toStdString() << std::endl;
}
int num = components[1].toInt();
if (num > 0) {
return num;
@@ -70,7 +76,10 @@ int Overlay::getMargin(QStringList components){
int Overlay::getFontsize(QStringList components){
if (components.size()>2) {
std::cout << "fontsize: " << components[2].toStdString() << std::endl;
if(_debugMode)
{
std::cout << "fontsize: " << components[2].toStdString() << std::endl;
}
int num = components[2].toInt();
if (num > 0) {
return num;