File indexing completed on 2024-05-12 05:04:30

0001 /*
0002     SPDX-FileCopyrightText: 2019 Ralf Habacker ralf.habacker @freenet.de
0003 
0004     This file is part of libalkimia.
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #ifndef APPLICATIONSETTINGS_H
0010 #define APPLICATIONSETTINGS_H
0011 
0012 class QMainWindow;
0013 
0014 class ApplicationSettings
0015 {
0016 protected:
0017     explicit ApplicationSettings(QMainWindow *parent, bool loadSettings = true);
0018     void writePositionSettings();
0019     void readPositionSettings();
0020     QMainWindow *m_parent;
0021 };
0022 
0023 #endif // APPLICATIONSETTINGS_H