mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-16 05:10:32 +02:00
Update InputBoxes
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
#include "IntelliInputDialog.h"
|
#include "IntelliInputDialog.h"
|
||||||
|
#include <QFile>
|
||||||
IntelliInputDialog::IntelliInputDialog(Speichereinheit &Speicher, QEventLoop* Loop, IntelliInputDialog* Dialog, QString Title, QString Label, int value, int minValue, int maxValue, int step)
|
IntelliInputDialog::IntelliInputDialog(QEventLoop* Loop, IntelliInputDialog* Dialog, QString Title, QString Label, int value, int minValue, int maxValue, int step)
|
||||||
{
|
{
|
||||||
this->Dialog = Dialog;
|
this->Dialog = Dialog;
|
||||||
createInputBox(Title, Label, value, minValue, maxValue, step);
|
createInputBox(Title, Label, value, minValue, maxValue, step);
|
||||||
createConnections(Loop);
|
createConnections(Loop);
|
||||||
setValuesOfPalette();
|
setValuesOfPalette();
|
||||||
@@ -54,7 +54,7 @@ void IntelliInputDialog::createInputBox(QString Title, QString Label, int value,
|
|||||||
}
|
}
|
||||||
|
|
||||||
void IntelliInputDialog::createConnections(QEventLoop* Loop){
|
void IntelliInputDialog::createConnections(QEventLoop* Loop){
|
||||||
connect(okButton, SIGNAL(clicked()), this, SLOT(slotEingabe(Speicher)));
|
connect(okButton, SIGNAL(clicked()), this, SLOT(slotEingabe()));
|
||||||
connect(okButton, SIGNAL(clicked()), Loop, SLOT(quit()));
|
connect(okButton, SIGNAL(clicked()), Loop, SLOT(quit()));
|
||||||
connect(cancelButton, SIGNAL(clicked()), this, SLOT(slotCloseEvent()));
|
connect(cancelButton, SIGNAL(clicked()), this, SLOT(slotCloseEvent()));
|
||||||
connect(cancelButton, SIGNAL(clicked()), Loop, SLOT(quit()));
|
connect(cancelButton, SIGNAL(clicked()), Loop, SLOT(quit()));
|
||||||
@@ -84,16 +84,21 @@ void IntelliInputDialog::slotCloseEvent(){
|
|||||||
Dialog->close();
|
Dialog->close();
|
||||||
}
|
}
|
||||||
|
|
||||||
void IntelliInputDialog::slotEingabe(Speichereinheit &Speicher){
|
void IntelliInputDialog::slotEingabe(){
|
||||||
qDebug() << Input->value();
|
QFile File("test.txt");
|
||||||
SetValueToGUI();
|
|
||||||
|
if(!File.open(QIODevice::WriteOnly | QIODevice::Text)){
|
||||||
|
qDebug() << "Error Write to File";
|
||||||
|
}
|
||||||
|
std::string test = QString("%1").arg(Input->value()).toStdString();
|
||||||
|
const char* p = test.c_str();
|
||||||
|
File.write(p);
|
||||||
|
File.close();
|
||||||
|
|
||||||
Dialog->close();
|
Dialog->close();
|
||||||
}
|
}
|
||||||
|
|
||||||
void IntelliInputDialog::SetValueToGUI(){
|
void IntelliInputDialog::getIntInput(QEventLoop* Loop, IntelliInputDialog* Dialog, QString Title, QString Label, int value, int minValue, int maxValue, int step){
|
||||||
Input->value();
|
this->Dialog = new IntelliInputDialog(Loop, Dialog, Title, Label, value, minValue, maxValue, step);
|
||||||
}
|
Loop->exec();
|
||||||
|
|
||||||
void IntelliInputDialog::getIntInput(Speichereinheit &Speicher, QEventLoop* Loop, IntelliInputDialog* Dialog, QString Title, QString Label, int value, int minValue, int maxValue, int step){
|
|
||||||
this->Dialog = new IntelliInputDialog(Speicher, Loop, Dialog, Title, Label, value, minValue, maxValue, step);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,23 +3,18 @@
|
|||||||
|
|
||||||
#include <QtWidgets>
|
#include <QtWidgets>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
#include "IntelliPhotoGui.h"
|
|
||||||
|
|
||||||
class Speichereinheit {
|
|
||||||
int value;
|
|
||||||
};
|
|
||||||
|
|
||||||
class IntelliInputDialog : public QDialog
|
class IntelliInputDialog : public QDialog
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
IntelliInputDialog(Speichereinheit &Speicher, QEventLoop* Loop = nullptr, IntelliInputDialog* Dialog = nullptr, QString Title = nullptr, QString Label = nullptr, int value = 5, int minValue = -2147483647, int maxValue = 2147483647, int step = 1);
|
IntelliInputDialog(QEventLoop* Loop = nullptr, IntelliInputDialog* Dialog = nullptr, QString Title = nullptr, QString Label = nullptr, int value = 5, int minValue = -2147483647, int maxValue = 2147483647, int step = 1);
|
||||||
|
|
||||||
void getIntInput(Speichereinheit &Speicher, QEventLoop* Loop = nullptr, IntelliInputDialog* Dialog = nullptr, QString Title = "InputBox", QString Label = "Weight:", int value = 0, int minValue = -2147483647, int maxValue = 2147483647, int step = 1);
|
void getIntInput(QEventLoop* Loop = nullptr, IntelliInputDialog* Dialog = nullptr, QString Title = "InputBox", QString Label = "Weight:", int value = 0, int minValue = -2147483647, int maxValue = 2147483647, int step = 1);
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void slotCloseEvent();
|
void slotCloseEvent();
|
||||||
void slotEingabe(Speichereinheit &Speicher);
|
void slotEingabe();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void createInputBox(QString Title = nullptr, QString Label = nullptr, int value = 5, int minValue = -2147483647, int maxValue = 2147483647, int step = 1);
|
void createInputBox(QString Title = nullptr, QString Label = nullptr, int value = 5, int minValue = -2147483647, int maxValue = 2147483647, int step = 1);
|
||||||
@@ -27,8 +22,6 @@ void createConnections(QEventLoop* Loop = nullptr);
|
|||||||
void setValuesOfPalette();
|
void setValuesOfPalette();
|
||||||
void setInputBoxStyle();
|
void setInputBoxStyle();
|
||||||
|
|
||||||
void SetValueToGUI();
|
|
||||||
|
|
||||||
QDialog* Dialog;
|
QDialog* Dialog;
|
||||||
|
|
||||||
QGridLayout* Layout;
|
QGridLayout* Layout;
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
// IntelliPhotoGui constructor
|
// IntelliPhotoGui constructor
|
||||||
IntelliPhotoGui::IntelliPhotoGui(IntelliInputDialog* InputDialog){
|
IntelliPhotoGui::IntelliPhotoGui(IntelliInputDialog* InputDialog){
|
||||||
//this->InputDialog = InputDialog;
|
this->InputDialog = InputDialog;
|
||||||
// create Gui elements and lay them out
|
// create Gui elements and lay them out
|
||||||
createGui();
|
createGui();
|
||||||
// Create actions
|
// Create actions
|
||||||
@@ -68,19 +68,16 @@ void IntelliPhotoGui::slotSave(){
|
|||||||
|
|
||||||
// Opens a dialog that allows the user to create a New Layer
|
// Opens a dialog that allows the user to create a New Layer
|
||||||
void IntelliPhotoGui::slotCreateNewLayer(){
|
void IntelliPhotoGui::slotCreateNewLayer(){
|
||||||
// Stores button value
|
|
||||||
|
|
||||||
// "New Layer" is the title of the window
|
// "New Layer" is the title of the window
|
||||||
// the next tr is the text to display
|
// the next tr is the text to display
|
||||||
// Define the standard Value, min, max, step and ok button
|
// Define the standard Value, min, max, step and ok button
|
||||||
Speichereinheit Speicher;
|
this->InputDialog->getIntInput(&Loop, this->InputDialog, "New Layer", "Width:", 200, 0, 5000, 1);
|
||||||
this->InputDialog->getIntInput(Speicher, &Loop, this->InputDialog, "New Layer", "Width:", 5, 0, 5000, 1);
|
|
||||||
|
|
||||||
int width = returnValueOfInputDialog;
|
int width = getReturnValueOfDialog();
|
||||||
|
|
||||||
qDebug() << width;
|
this->InputDialog->getIntInput(&Loop, this->InputDialog, "New Layer", "Height:", 200, 0, 5000, 1);
|
||||||
|
|
||||||
int height = 25;//QInputDialog::getInt(this, tr("New Layer"),tr("Height:"),200,1, 500, 1, &ok2);
|
int height = getReturnValueOfDialog();
|
||||||
|
|
||||||
// Create New Layer
|
// Create New Layer
|
||||||
paintingArea->addLayer(width,height,0,0);
|
paintingArea->addLayer(width,height,0,0);
|
||||||
@@ -89,41 +86,29 @@ void IntelliPhotoGui::slotCreateNewLayer(){
|
|||||||
|
|
||||||
// Opens a dialog that allows the user to delete a Layer
|
// Opens a dialog that allows the user to delete a Layer
|
||||||
void IntelliPhotoGui::slotDeleteLayer(){
|
void IntelliPhotoGui::slotDeleteLayer(){
|
||||||
// Stores button value
|
|
||||||
bool ok;
|
|
||||||
|
|
||||||
// "delete Layer" is the title of the window
|
// "delete Layer" is the title of the window
|
||||||
// the next tr is the text to display
|
// the next tr is the text to display
|
||||||
// Define the standard Value, min, max, step and ok button
|
// Define the standard Value, min, max, step and ok button
|
||||||
int layerNumber = QInputDialog::getInt(this, tr("delete Layer"),
|
this->InputDialog->getIntInput(&Loop, this->InputDialog, "Delete Layer", "Number:", paintingArea->getNumberOfActiveLayer()+1, 1, 501, 1);
|
||||||
tr("Number:"),
|
int layerNumber = getReturnValueOfDialog();
|
||||||
paintingArea->getNumberOfActiveLayer()+1,1, 501, 1, &ok);
|
|
||||||
// Create New Layer
|
// Create New Layer
|
||||||
if (ok) {
|
paintingArea->deleteLayer(layerNumber-1);
|
||||||
paintingArea->deleteLayer(layerNumber-1);
|
UpdateGui();
|
||||||
UpdateGui();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void IntelliPhotoGui::slotSetActiveAlpha(){
|
void IntelliPhotoGui::slotSetActiveAlpha(){
|
||||||
// Stores button value
|
|
||||||
bool ok1, ok2;
|
|
||||||
|
|
||||||
// "Layer to set on" is the title of the window
|
// "Layer to set on" is the title of the window
|
||||||
// the next tr is the text to display
|
// the next tr is the text to display
|
||||||
// Define the standard Value, min, max, step and ok button
|
// Define the standard Value, min, max, step and ok button
|
||||||
int layer = QInputDialog::getInt(this, tr("Layer to set on"),
|
this->InputDialog->getIntInput(&Loop, this->InputDialog, "Layer to set on", "Layer:", paintingArea->getNumberOfActiveLayer()+1, 1, 501, 1);
|
||||||
tr("Layer:"),
|
int layer = getReturnValueOfDialog();
|
||||||
1,1,500,1, &ok1);
|
|
||||||
// "New Alpha" is the title of the window
|
// "New Alpha" is the title of the window
|
||||||
int alpha = QInputDialog::getInt(this, tr("New Alpha"),
|
this->InputDialog->getIntInput(&Loop, this->InputDialog, "New Alpha", "Alpha:", 255, 0, 255, 1);
|
||||||
tr("Alpha:"),
|
int alpha = getReturnValueOfDialog();
|
||||||
255,0, 255, 1, &ok2);
|
paintingArea->setLayerAlpha(layer-1,alpha);
|
||||||
if (ok1&&ok2)
|
UpdateGui();
|
||||||
{
|
|
||||||
paintingArea->setLayerAlpha(layer-1,alpha);
|
|
||||||
UpdateGui();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void IntelliPhotoGui::slotPositionMoveUp(){
|
void IntelliPhotoGui::slotPositionMoveUp(){
|
||||||
@@ -157,49 +142,36 @@ void IntelliPhotoGui::slotMoveLayerDown(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
void IntelliPhotoGui::slotClearActiveLayer(){
|
void IntelliPhotoGui::slotClearActiveLayer(){
|
||||||
// Stores button value
|
|
||||||
bool ok1, ok2, ok3, ok4;
|
|
||||||
|
|
||||||
// "Red Input" is the title of the window
|
// "Red Input" is the title of the window
|
||||||
// the next tr is the text to display
|
// the next tr is the text to display
|
||||||
// Define the standard Value, min, max, step and ok button
|
// Define the standard Value, min, max, step and ok button
|
||||||
int red = QInputDialog::getInt(this, tr("Red Input"),
|
this->InputDialog->getIntInput(&Loop, this->InputDialog, "Red Input", "Red:", 255, 0, 255, 1);
|
||||||
tr("Red:"),
|
int red = getReturnValueOfDialog();
|
||||||
255,0, 255,1, &ok1);
|
|
||||||
// "Green Input" is the title of the window
|
// "Green Input" is the title of the window
|
||||||
int green = QInputDialog::getInt(this, tr("Green Input"),
|
this->InputDialog->getIntInput(&Loop, this->InputDialog, "Green Input", "Green:", 255, 0, 255, 1);
|
||||||
tr("Green:"),
|
int green = getReturnValueOfDialog();
|
||||||
255,0, 255, 1, &ok2);
|
|
||||||
// "Blue Input" is the title of the window
|
// "Blue Input" is the title of the window
|
||||||
int blue = QInputDialog::getInt(this, tr("Blue Input"),
|
this->InputDialog->getIntInput(&Loop, this->InputDialog, "Blue Input", "Blue:", 255, 0, 255, 1);
|
||||||
tr("Blue:"),
|
int blue = getReturnValueOfDialog();
|
||||||
255,0, 255, 1, &ok3);
|
|
||||||
// "Alpha Input" is the title of the window
|
// "Alpha Input" is the title of the window
|
||||||
int alpha = QInputDialog::getInt(this, tr("Alpha Input"),
|
this->InputDialog->getIntInput(&Loop, this->InputDialog, "Alpha Input", "Alpha:", 255, 0, 255, 1);
|
||||||
tr("Alpha:"),
|
int alpha = getReturnValueOfDialog();
|
||||||
255,0, 255, 1, &ok4);
|
|
||||||
if (ok1&&ok2&&ok3&&ok4)
|
paintingArea->floodFill(red, green, blue, alpha);
|
||||||
{
|
UpdateGui();
|
||||||
paintingArea->floodFill(red, green, blue, alpha);
|
|
||||||
UpdateGui();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void IntelliPhotoGui::slotSetActiveLayer(){
|
void IntelliPhotoGui::slotSetActiveLayer(){
|
||||||
// Stores button value
|
|
||||||
bool ok1;
|
|
||||||
|
|
||||||
// "Layer to set on" is the title of the window
|
// "Layer to set on" is the title of the window
|
||||||
// the next tr is the text to display
|
// the next tr is the text to display
|
||||||
// Define the standard Value, min, max, step and ok button
|
// Define the standard Value, min, max, step and ok button
|
||||||
int layer = QInputDialog::getInt(this, tr("Layer to set on"),
|
this->InputDialog->getIntInput(&Loop, this->InputDialog, "Layer to set on", "Layer:", 1, 1, 501, 1);
|
||||||
tr("Layer:"),
|
int layer = getReturnValueOfDialog();
|
||||||
1,1,500,1, &ok1);
|
paintingArea->setLayerActive(layer-1);
|
||||||
if (ok1)
|
UpdateGui();
|
||||||
{
|
|
||||||
paintingArea->setLayerActive(layer-1);
|
|
||||||
UpdateGui();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void IntelliPhotoGui::slotUpdateRenderSettingsOn(){
|
void IntelliPhotoGui::slotUpdateRenderSettingsOn(){
|
||||||
@@ -293,12 +265,14 @@ void IntelliPhotoGui::slotResetTools(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
void IntelliPhotoGui::slotSetWidth(){
|
void IntelliPhotoGui::slotSetWidth(){
|
||||||
paintingArea->Toolsettings.setLineWidth();
|
this->InputDialog->getIntInput(&Loop, this->InputDialog, "Toolsettings", "Width:", 5, 1, 50, 1);
|
||||||
|
paintingArea->Toolsettings.setLineWidth(getReturnValueOfDialog());
|
||||||
EditLineWidth->setText(QString("%1").arg(paintingArea->Toolsettings.getLineWidth()));
|
EditLineWidth->setText(QString("%1").arg(paintingArea->Toolsettings.getLineWidth()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void IntelliPhotoGui::slotSetInnerAlpha(){
|
void IntelliPhotoGui::slotSetInnerAlpha(){
|
||||||
paintingArea->Toolsettings.setInnerAlpha();
|
this->InputDialog->getIntInput(&Loop, this->InputDialog, "Toolsettings", "Inner Alpha:", 255, 0, 255, 1);
|
||||||
|
paintingArea->Toolsettings.setInnerAlpha(getReturnValueOfDialog());
|
||||||
EditLineInnerAlpha->setText(QString("%1").arg(paintingArea->Toolsettings.getInnerAlpha()));
|
EditLineInnerAlpha->setText(QString("%1").arg(paintingArea->Toolsettings.getInnerAlpha()));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -667,7 +641,7 @@ void IntelliPhotoGui::createGui(){
|
|||||||
SwitchColorButton->setIconSize(QSize(Buttonsize.width()*2,Buttonsize.height()));
|
SwitchColorButton->setIconSize(QSize(Buttonsize.width()*2,Buttonsize.height()));
|
||||||
|
|
||||||
ActiveLayerLine = new QLabel();
|
ActiveLayerLine = new QLabel();
|
||||||
QString string = QString("Active Layer: %1").arg(paintingArea->getNumberOfActiveLayer() + 1);
|
QString string = QString("Active Layer: %1").arg(paintingArea->getNumberOfActiveLayer() + 1);
|
||||||
ActiveLayerLine->setText(string);
|
ActiveLayerLine->setText(string);
|
||||||
ActiveLayerLine->setFixedSize(Buttonsize.width()*2+10,(Buttonsize.height()*2)/3);
|
ActiveLayerLine->setFixedSize(Buttonsize.width()*2+10,(Buttonsize.height()*2)/3);
|
||||||
|
|
||||||
@@ -823,3 +797,15 @@ void IntelliPhotoGui::UpdateGui(){
|
|||||||
string = QString("background-color: %1").arg(paintingArea->colorPicker.getSecondColor().name());
|
string = QString("background-color: %1").arg(paintingArea->colorPicker.getSecondColor().name());
|
||||||
SecondColorButton->setStyleSheet(string);
|
SecondColorButton->setStyleSheet(string);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int IntelliPhotoGui::getReturnValueOfDialog(){
|
||||||
|
QFile File("test.txt");
|
||||||
|
if(!File.open(QIODevice::ReadOnly | QIODevice::Text)){
|
||||||
|
qDebug() << "Error Read from File";
|
||||||
|
}
|
||||||
|
|
||||||
|
QByteArray line = File.readLine();
|
||||||
|
File.close();
|
||||||
|
|
||||||
|
return line.toInt();
|
||||||
|
}
|
||||||
|
|||||||
@@ -38,7 +38,6 @@ IntelliPhotoGui(IntelliInputDialog* InputDialog);
|
|||||||
void UpdateGui();
|
void UpdateGui();
|
||||||
|
|
||||||
void setToolWidth(int value);
|
void setToolWidth(int value);
|
||||||
int returnValueOfInputDialog = 5;
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// Function used to close an event
|
// Function used to close an event
|
||||||
@@ -106,6 +105,8 @@ bool saveFile(const QByteArray &fileFormat);
|
|||||||
|
|
||||||
void setDefaultToolValue();
|
void setDefaultToolValue();
|
||||||
|
|
||||||
|
int getReturnValueOfDialog();
|
||||||
|
|
||||||
// What we'll draw on
|
// What we'll draw on
|
||||||
PaintingArea* paintingArea;
|
PaintingArea* paintingArea;
|
||||||
IntelliInputDialog* InputDialog;
|
IntelliInputDialog* InputDialog;
|
||||||
|
|||||||
@@ -16,36 +16,16 @@ int IntelliToolsettings::getLineWidth(){
|
|||||||
return lineWidth;
|
return lineWidth;
|
||||||
}
|
}
|
||||||
|
|
||||||
void IntelliToolsettings::setLineWidth(){
|
|
||||||
lineWidth = QInputDialog::getInt(nullptr,"Line Width Input", "Width",1,1,50,1);
|
|
||||||
}
|
|
||||||
|
|
||||||
void IntelliToolsettings::setLineWidth(int LineWidth){
|
void IntelliToolsettings::setLineWidth(int LineWidth){
|
||||||
if(LineWidth < 1) {
|
lineWidth = LineWidth;
|
||||||
LineWidth = 1;
|
|
||||||
}
|
|
||||||
else if(LineWidth > 50) {
|
|
||||||
LineWidth = 50;
|
|
||||||
}
|
|
||||||
lineWidth = LineWidth;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int IntelliToolsettings::getInnerAlpha(){
|
int IntelliToolsettings::getInnerAlpha(){
|
||||||
return this->innerAlpha;
|
return this->innerAlpha;
|
||||||
}
|
}
|
||||||
|
|
||||||
void IntelliToolsettings::setInnerAlpha(){
|
|
||||||
this->innerAlpha = QInputDialog::getInt(nullptr,"Inner Aplha Input", "Value",0,0,255,1);
|
|
||||||
}
|
|
||||||
|
|
||||||
void IntelliToolsettings::setInnerAlpha(int innerAlpha){
|
void IntelliToolsettings::setInnerAlpha(int innerAlpha){
|
||||||
if(innerAlpha < 0) {
|
this->innerAlpha = innerAlpha;
|
||||||
innerAlpha = 0;
|
|
||||||
}
|
|
||||||
else if(innerAlpha > 255) {
|
|
||||||
innerAlpha = 255;
|
|
||||||
}
|
|
||||||
this->innerAlpha = innerAlpha;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
IntelliToolsettings::LineStyle IntelliToolsettings::getLinestyle(){
|
IntelliToolsettings::LineStyle IntelliToolsettings::getLinestyle(){
|
||||||
|
|||||||
@@ -13,10 +13,8 @@ enum class LineStyle {
|
|||||||
IntelliToolsettings();
|
IntelliToolsettings();
|
||||||
virtual ~IntelliToolsettings();
|
virtual ~IntelliToolsettings();
|
||||||
int getLineWidth();
|
int getLineWidth();
|
||||||
void setLineWidth();
|
|
||||||
void setLineWidth(int LineWidth);
|
void setLineWidth(int LineWidth);
|
||||||
int getInnerAlpha();
|
int getInnerAlpha();
|
||||||
void setInnerAlpha();
|
|
||||||
void setInnerAlpha(int innerAlpha);
|
void setInnerAlpha(int innerAlpha);
|
||||||
LineStyle getLinestyle();
|
LineStyle getLinestyle();
|
||||||
|
|
||||||
|
|||||||
@@ -72,3 +72,5 @@ else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|||||||
|
|
||||||
RESOURCES += \
|
RESOURCES += \
|
||||||
Bilder.qrc
|
Bilder.qrc
|
||||||
|
|
||||||
|
DISTFILES +=
|
||||||
|
|||||||
Reference in New Issue
Block a user