2015-08-02 17:27:18 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file tapepathpage.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 02 08, 2015
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
|
|
|
**
|
|
|
|
** Valentina 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.
|
|
|
|
**
|
|
|
|
** Valentina 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 Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef PATHPAGE_H
|
|
|
|
#define PATHPAGE_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
class QGroupBox;
|
|
|
|
class QPushButton;
|
|
|
|
class QTableWidget;
|
|
|
|
|
|
|
|
class TapePathPage : public QWidget
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-10-12 13:52:48 +02:00
|
|
|
explicit TapePathPage(QWidget *parent = nullptr);
|
2015-08-02 17:27:18 +02:00
|
|
|
void Apply();
|
|
|
|
public slots:
|
|
|
|
void TableActivated();
|
|
|
|
void DefaultPath();
|
|
|
|
void EditPath();
|
2015-08-08 16:33:37 +02:00
|
|
|
protected:
|
|
|
|
virtual void changeEvent(QEvent* event) Q_DECL_OVERRIDE;
|
2015-08-02 17:27:18 +02:00
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(TapePathPage)
|
|
|
|
QPushButton *defaultButton;
|
|
|
|
QPushButton *editButton;
|
|
|
|
QTableWidget *pathTable;
|
2015-08-08 16:33:37 +02:00
|
|
|
QGroupBox *pathGroup;
|
|
|
|
|
2015-08-02 17:27:18 +02:00
|
|
|
QGroupBox *PathGroup();
|
|
|
|
void InitTable();
|
2015-08-08 16:33:37 +02:00
|
|
|
void RetranslateUi();
|
2015-08-02 17:27:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PATHPAGE_H
|