88 lines
2.4 KiB
C++
88 lines
2.4 KiB
C++
/****************************************************************************
|
|
**
|
|
** This file is part of the LibreCAD project, a 2D CAD program
|
|
**
|
|
** Copyright (C) 2010 R. van Twisk (librecad@rvt.dds.nl)
|
|
** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
|
|
** Copyright (C) 2015, 2016 ravas (github.com/r-a-v-a-s)
|
|
**
|
|
** This file may be distributed and/or modified under the terms of the
|
|
** GNU General Public License version 2 as published by the Free Software
|
|
** Foundation and appearing in the file gpl-2.0.txt included in the
|
|
** packaging of this file.
|
|
**
|
|
** 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, write to the Free Software
|
|
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
**
|
|
** This copyright notice MUST APPEAR in all copies of the script!
|
|
**
|
|
**********************************************************************/
|
|
#ifndef QG_DLGOPTIONSGENERAL_H
|
|
#define QG_DLGOPTIONSGENERAL_H
|
|
|
|
#include "ui_qg_dlgoptionsgeneral.h"
|
|
|
|
class QG_DlgOptionsGeneral : public QDialog, public Ui::QG_DlgOptionsGeneral
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QG_DlgOptionsGeneral(QWidget* parent = 0, bool modal = false, Qt::WindowFlags fl = 0);
|
|
~QG_DlgOptionsGeneral();
|
|
static int current_tab;
|
|
void set_color(QComboBox* combo, QColor custom);
|
|
|
|
public slots:
|
|
virtual void setRestartNeeded();
|
|
virtual void ok();
|
|
|
|
protected slots:
|
|
virtual void languageChange();
|
|
virtual void setTemplateFile();
|
|
|
|
private slots:
|
|
void on_tabWidget_currentChanged(int index);
|
|
|
|
void on_pb_background_clicked();
|
|
|
|
void on_pb_grid_clicked();
|
|
|
|
void on_pb_meta_clicked();
|
|
|
|
void on_pb_selected_clicked();
|
|
|
|
void on_pb_highlighted_clicked();
|
|
|
|
void on_pb_start_clicked();
|
|
|
|
void on_pb_handle_clicked();
|
|
|
|
void on_pb_end_clicked();
|
|
|
|
void on_pb_clear_all_clicked();
|
|
|
|
void on_pb_clear_geometry_clicked();
|
|
|
|
void on_pb_snap_color_clicked();
|
|
|
|
void setVariableFile();
|
|
|
|
void setFontsFolder();
|
|
|
|
private:
|
|
bool restartNeeded;
|
|
|
|
void init();
|
|
void initComboBox(QComboBox* cb, QString text);
|
|
void destroy();
|
|
|
|
};
|
|
|
|
#endif // QG_DLGOPTIONSGENERAL_H
|