2018-01-05 15:52:11 +01:00
|
|
|
/*
|
2019-09-30 21:58:11 +02:00
|
|
|
* Copyright (c) 2018-2019 Albert S. <mail at quitesimple dot org>
|
2018-01-05 15:52:11 +01:00
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
2018-01-03 09:52:05 +01:00
|
|
|
#include "entrypushbutton.h"
|
|
|
|
|
|
|
|
EntryPushButton::EntryPushButton(const EntryConfig &config) : QPushButton()
|
|
|
|
{
|
|
|
|
this->setText(config.name);
|
|
|
|
this->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
|
|
|
this->setIcon(config.icon);
|
2019-06-03 07:44:48 +02:00
|
|
|
if(!config.icon.availableSizes().isEmpty())
|
|
|
|
{
|
2019-08-23 23:40:08 +02:00
|
|
|
auto sizes = config.icon.availableSizes();
|
|
|
|
QSize maxSize = sizes.first();
|
|
|
|
for(QSize ¤t : sizes)
|
|
|
|
{
|
|
|
|
if(current.width() > maxSize.width())
|
|
|
|
{
|
|
|
|
maxSize = current;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this->setIconSize(maxSize);
|
2019-06-03 07:44:48 +02:00
|
|
|
}
|
2018-01-03 09:52:05 +01:00
|
|
|
this->config = config;
|
|
|
|
connect(this, SIGNAL(clicked()), this, SLOT(emitOwnClicked()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void EntryPushButton::emitOwnClicked()
|
|
|
|
{
|
|
|
|
emit clicked(this->config);
|
|
|
|
}
|
|
|
|
|
|
|
|
const EntryConfig &EntryPushButton::getEntryConfig()
|
|
|
|
{
|
|
|
|
return this->config;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EntryPushButton::setEntryConfig(const EntryConfig &config)
|
|
|
|
{
|
|
|
|
this->config = config;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EntryPushButton::showShortcut()
|
|
|
|
{
|
|
|
|
this->setText(this->config.key);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EntryPushButton::showName()
|
|
|
|
{
|
|
|
|
this->setText(this->config.name);
|
|
|
|
}
|
|
|
|
|
|
|
|
int EntryPushButton::getRow() const { return config.row; }
|
|
|
|
int EntryPushButton::getCol() const { return config.col; }
|
|
|
|
QString EntryPushButton::getName() const { return config.name; }
|
|
|
|
QString EntryPushButton::getShortcutKey() const { return config.key; }
|
2019-06-01 13:38:58 +02:00
|
|
|
void EntryPushButton::setShortcutKey(QString key) { this->config.key = key; }
|
2018-01-03 09:52:05 +01:00
|
|
|
void EntryPushButton::setRow(int row) { this->config.row = row; }
|
|
|
|
void EntryPushButton::setCol(int col) { this->config.col = col; }
|
|
|
|
QStringList EntryPushButton::getArguments() const { return this->config.arguments; }
|
|
|
|
QString EntryPushButton::getCommand() const { return this->config.command; }
|