X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fprivacybrowserpcview.h;fp=src%2Fprivacybrowserpcview.h;h=0000000000000000000000000000000000000000;hp=f6dd7ba1764aee6792464c0a9024e4de97cd3bb8;hb=153c5c0d60eaf3185cb4419032fb0fdaeb78907c;hpb=ad39882c17bfd7d96cbcfd3873d4dd332722e84f diff --git a/src/privacybrowserpcview.h b/src/privacybrowserpcview.h deleted file mode 100644 index f6dd7ba..0000000 --- a/src/privacybrowserpcview.h +++ /dev/null @@ -1,45 +0,0 @@ -/* - SPDX-FileCopyrightText: %{CURRENT_YEAR} %{AUTHOR} <%{EMAIL}> - - SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL -*/ - -#ifndef PRIVACYBROWSERPCVIEW_H -#define PRIVACYBROWSERPCVIEW_H - -#include "ui_privacybrowserpcview.h" - - -/** - * This class serves as the main window for privacybrowserpc. It handles the - * menus, toolbars and status bars. - * - * @short Main window class - * @author %{AUTHOR} <%{EMAIL}> - * @version %{VERSION} - */ -class PrivacyBrowserPCView : public QWidget -{ - Q_OBJECT -public: - /** - * Default Constructor - */ - explicit PrivacyBrowserPCView(QWidget *parent); - - /** - * Default Destructor - */ - ~PrivacyBrowserPCView() override; - -public Q_SLOTS: - void switchColors(); - void handleSettingsChanged(); - -private: - // this is the name of the root widget inside our Ui file - // you can rename it in designer and then change it here - Ui::PrivacyBrowserPCView m_ui; -}; - -#endif // PRIVACYBROWSERPCVIEW_H