File indexing completed on 2024-05-12 04:57:54

0001 /* ============================================================
0002 * Falkon - Qt web browser
0003 * Copyright (C) 2010-2014  David Rosca <nowrep@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 3 of the License, or
0008 * (at your option) any later version.
0009 *
0010 * This program is distributed in the hope that it will be useful,
0011 * but WITHOUT ANY WARRANTY; without even the implied warranty of
0012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0013 * GNU General Public License for more details.
0014 *
0015 * You should have received a copy of the GNU General Public License
0016 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
0017 * ============================================================ */
0018 #ifndef PROFILEMANAGER_H
0019 #define PROFILEMANAGER_H
0020 
0021 #include <QString>
0022 
0023 #include "qzcommon.h"
0024 
0025 class ProfileManager
0026 {
0027 public:
0028     explicit ProfileManager();
0029 
0030     // Make sure the config dir exists and have correct structure
0031     void initConfigDir();
0032     // Set current profile name (from profiles.ini) and ensure dir exists with correct structure
0033     void initCurrentProfile(const QString &profileName);
0034 
0035     // Return 0 on success, -1 profile already exists, -2 cannot create directory
0036     static int createProfile(const QString &profileName);
0037     // Return false on error (profile does not exists)
0038     static bool removeProfile(const QString &profileName);
0039 
0040     // Name of current profile
0041     static QString currentProfile();
0042 
0043     // Name of starting profile
0044     static QString startingProfile();
0045     static void setStartingProfile(const QString &profileName);
0046 
0047     // Names of available profiles
0048     static QStringList availableProfiles();
0049 
0050 private:
0051     void updateCurrentProfile();
0052     void updateProfile(const QString &current, const QString &profile);
0053     void copyDataToProfile();
0054     void migrateFromQupZilla();
0055 
0056     void connectDatabase();
0057 };
0058 
0059 #endif // PROFILEMANAGER_H