serenity/Ladybird/Settings.h
Andreas Kling 60312f2c83 Ladybird: Remove the "home" icon from the toolbar (and the concept)
This feature isn't really that useful in practice, so let's remove it.
(Other browsers haven't had this action for years either.)
2023-05-05 16:58:08 +02:00

26 lines
399 B
C++

/*
* Copyright (c) 2022, Filiph Sandström <filiph.sandstrom@filfatstudios.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/DeprecatedString.h>
#include <QSettings>
namespace Browser {
class Settings : public QObject {
public:
Settings();
QString new_tab_page();
void set_new_tab_page(QString const& page);
private:
QSettings* m_qsettings;
};
}