mirror of
https://github.com/creyD/intelliphoto.git
synced 2026-04-17 05:40:31 +02:00
Some cleanup of Includes
This commit is contained in:
@@ -1,6 +1,4 @@
|
|||||||
#include "IntelliInputDialog.h"
|
#include "IntelliInputDialog.h"
|
||||||
#include <QFile>
|
|
||||||
|
|
||||||
|
|
||||||
IntelliInputDialog::IntelliInputDialog(QString Title, QString Label, int value, int minValue, int maxValue, int step, bool* ok)
|
IntelliInputDialog::IntelliInputDialog(QString Title, QString Label, int value, int minValue, int maxValue, int step, bool* ok)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,7 +1,13 @@
|
|||||||
#ifndef INTELLIINPUTDIALOG_H
|
#ifndef INTELLIINPUTDIALOG_H
|
||||||
#define INTELLIINPUTDIALOG_H
|
#define INTELLIINPUTDIALOG_H
|
||||||
|
|
||||||
#include <QtWidgets>
|
#include <QSize>
|
||||||
|
#include <QDialog>
|
||||||
|
#include <QLabel>
|
||||||
|
#include <QGridLayout>
|
||||||
|
#include <QDialogButtonBox>
|
||||||
|
#include <QPushButton>
|
||||||
|
#include <QSpinBox>
|
||||||
|
|
||||||
class IntelliInputDialog : public QDialog
|
class IntelliInputDialog : public QDialog
|
||||||
{
|
{
|
||||||
@@ -25,7 +31,6 @@ int valueInt;
|
|||||||
|
|
||||||
QGridLayout* Layout;
|
QGridLayout* Layout;
|
||||||
QDialogButtonBox* ButtonBox;
|
QDialogButtonBox* ButtonBox;
|
||||||
QEventLoop loop;
|
|
||||||
bool* notClosed;
|
bool* notClosed;
|
||||||
|
|
||||||
const QSize Linesize = QSize(150,20);
|
const QSize Linesize = QSize(150,20);
|
||||||
|
|||||||
@@ -1,8 +1,12 @@
|
|||||||
#ifndef IntelliPhotoGui_H
|
#ifndef IntelliPhotoGui_H
|
||||||
#define IntelliPhotoGui_H
|
#define IntelliPhotoGui_H
|
||||||
|
|
||||||
#include <QtWidgets>
|
#include <QAction>
|
||||||
#include <QPixmap>
|
#include <QFileDialog>
|
||||||
|
#include <QMessageBox>
|
||||||
|
#include <QImageWriter>
|
||||||
|
#include <QMenu>
|
||||||
|
#include <QMenuBar>
|
||||||
#include <QList>
|
#include <QList>
|
||||||
#include <QMainWindow>
|
#include <QMainWindow>
|
||||||
#include <QGridLayout>
|
#include <QGridLayout>
|
||||||
|
|||||||
Reference in New Issue
Block a user