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 * Header file for the Configuration dialog classes. 0015 */ 0016 0017 0018 #ifndef ConfigurationDialogs_H 0019 #define ConfigurationDialogs_H 0020 0021 0022 #include "ui_EditorConfigPage.h" 0023 0024 0025 /** 0026 * @brief Implement configuration of the editor. 0027 */ 0028 class EditorConfigPage : public QWidget, public Ui::EditorConfigPage 0029 { 0030 Q_OBJECT 0031 0032 public: 0033 explicit EditorConfigPage(QWidget *parent = 0, const char *name = 0); 0034 }; 0035 0036 0037 #endif