mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-20 11:36:10 +00:00
58 lines
1.2 KiB
C++
58 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2022, Filiph Sandström <filiph.sandstrom@filfatstudios.com>
|
|
* Copyright (c) 2023, Cameron Youell <cameronyouell@gmail.com>
|
|
* Copyright (c) 2024, Jamie Mansfield <jmansfield@cadixdev.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteString.h>
|
|
#include <AK/OwnPtr.h>
|
|
|
|
#include <QPoint>
|
|
#include <QSettings>
|
|
#include <QSize>
|
|
|
|
namespace Ladybird {
|
|
|
|
class Settings : public QObject {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Settings(Settings const&) = delete;
|
|
Settings& operator=(Settings const&) = delete;
|
|
|
|
static Settings* the()
|
|
{
|
|
static Settings instance;
|
|
return &instance;
|
|
}
|
|
|
|
ByteString directory();
|
|
|
|
Optional<QPoint> last_position();
|
|
void set_last_position(QPoint const& last_position);
|
|
|
|
QSize last_size();
|
|
void set_last_size(QSize const& last_size);
|
|
|
|
bool is_maximized();
|
|
void set_is_maximized(bool is_maximized);
|
|
|
|
bool show_menubar();
|
|
void set_show_menubar(bool show_menubar);
|
|
|
|
signals:
|
|
void show_menubar_changed(bool show_menubar);
|
|
void enable_do_not_track_changed(bool enable);
|
|
|
|
protected:
|
|
Settings();
|
|
|
|
private:
|
|
OwnPtr<QSettings> m_qsettings;
|
|
};
|
|
|
|
}
|