aboutsummaryrefslogtreecommitdiff
path: root/plugins/ProfileEditor/profileeditorplugin.cpp
blob: 1f4f16e43d26d2a39e9e3b296b23907a3e14f0b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * This file is part of smolbote. It's copyrighted by the contributors recorded
 * in the version control history of the file, available from its original
 * location: git://neueland.iserlohn-fortress.net/smolbote.git
 *
 * SPDX-License-Identifier: GPL-3.0
 */

#include "profileeditorplugin.h"
#include <QLabel>
#include <QVBoxLayout>

QWidget *ProfileEditorPlugin::createWidget(QWebEngineProfile *profile, QWidget *parent)
{
    QWidget *widget = new QWidget(parent);
    widget->setWindowFlags(Qt::ToolTip);
    widget->setVisible(false);
    auto *layout = new QVBoxLayout(widget);
    widget->setLayout(layout);

    QLabel *storageName_label = new QLabel(profile->storageName(), widget);
    if(storageName_label->text().isEmpty())
        storageName_label->setText(tr("Off-the-record"));
    layout->addWidget(storageName_label);

    return widget;
}