File indexing completed on 2025-03-16 13:13:02
0001 /******************************************************************************** 0002 * Copyright (C) 2011-2015 by Stephen Allewell * 0003 * steve.allewell@gmail.com * 0004 * * 0005 * This program is free software; you can redistribute it and/or modify * 0006 * it under the terms of the GNU General Public License as published by * 0007 * the Free Software Foundation; either version 2 of the License, or * 0008 * (at your option) any later version. * 0009 ********************************************************************************/ 0010 0011 0012 /** 0013 * @file 0014 * Implement the configuration dialog pages. 0015 */ 0016 0017 0018 /** 0019 * @page configuration Configuration Dialogs 0020 * Configuration of the SymbolEditor application is done through the configuration dialog. 0021 */ 0022 0023 0024 #include "ConfigurationDialogs.h" 0025 0026 0027 /** 0028 * Constructor 0029 * 0030 * @param parent a pointer to the parent QWidget 0031 * @param name the name of this widget 0032 */ 0033 EditorConfigPage::EditorConfigPage(QWidget *parent, const char *name) 0034 : QWidget(parent) 0035 { 0036 setObjectName(name); 0037 setupUi(this); 0038 }