2012-10-20 20:14:52 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2022-02-05 11:45:17 +01:00
|
|
|
* Copyright (C) 2007-2022 Cppcheck team.
|
2012-10-20 20:14:52 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "scratchpad.h"
|
2022-02-02 16:17:28 +01:00
|
|
|
|
2022-04-13 12:24:00 +02:00
|
|
|
#include "codeeditor.h"
|
2012-10-20 20:14:52 +02:00
|
|
|
#include "mainwindow.h"
|
|
|
|
|
2022-03-19 19:54:20 +01:00
|
|
|
#include "ui_scratchpad.h"
|
|
|
|
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QPushButton>
|
|
|
|
|
2012-10-20 20:14:52 +02:00
|
|
|
ScratchPad::ScratchPad(MainWindow& mainWindow)
|
|
|
|
: QDialog(&mainWindow)
|
2022-03-19 19:54:20 +01:00
|
|
|
, mUI(new Ui::ScratchPad)
|
2012-10-20 20:14:52 +02:00
|
|
|
, mMainWindow(mainWindow)
|
|
|
|
{
|
2022-03-19 19:54:20 +01:00
|
|
|
mUI->setupUi(this);
|
|
|
|
|
|
|
|
connect(mUI->mCheckButton, &QPushButton::clicked, this, &ScratchPad::checkButtonClicked);
|
|
|
|
}
|
2012-10-20 20:14:52 +02:00
|
|
|
|
2022-03-19 19:54:20 +01:00
|
|
|
ScratchPad::~ScratchPad()
|
|
|
|
{
|
|
|
|
delete mUI;
|
2012-10-20 20:14:52 +02:00
|
|
|
}
|
|
|
|
|
2021-01-23 17:56:16 +01:00
|
|
|
void ScratchPad::translate()
|
|
|
|
{
|
2022-03-19 19:54:20 +01:00
|
|
|
mUI->retranslateUi(this);
|
2021-01-23 17:56:16 +01:00
|
|
|
}
|
|
|
|
|
2017-07-28 13:43:49 +02:00
|
|
|
void ScratchPad::checkButtonClicked()
|
2012-10-20 20:14:52 +02:00
|
|
|
{
|
2022-03-19 19:54:20 +01:00
|
|
|
QString filename = mUI->lineEdit->text();
|
2013-01-16 15:37:07 +01:00
|
|
|
if (filename.isEmpty())
|
2012-10-20 20:14:52 +02:00
|
|
|
filename = "test.cpp";
|
2022-03-19 19:54:20 +01:00
|
|
|
mMainWindow.analyzeCode(mUI->plainTextEdit->toPlainText(), filename);
|
2012-10-20 20:14:52 +02:00
|
|
|
}
|