]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blobdiff - src/privacybrowserpcview.h
Make Privacy Browser installable.
[PrivacyBrowserPC.git] / src / privacybrowserpcview.h
diff --git a/src/privacybrowserpcview.h b/src/privacybrowserpcview.h
deleted file mode 100644 (file)
index f6dd7ba..0000000
+++ /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