X-Git-Url: https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=blobdiff_plain;f=src%2Fprivacybrowserpcwindow.h;fp=src%2Fprivacybrowserpcwindow.h;h=0000000000000000000000000000000000000000;hp=77fd554d03e9bc515de29acce2556ddbb7a42682;hb=597b6f74d41343f57e288694ec499e2303022f7e;hpb=6b2e1320fae530d918e617bbf2eab7b34e454498 diff --git a/src/privacybrowserpcwindow.h b/src/privacybrowserpcwindow.h deleted file mode 100644 index 77fd554..0000000 --- a/src/privacybrowserpcwindow.h +++ /dev/null @@ -1,58 +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 PRIVACYBROWSERPCWINDOW_H -#define PRIVACYBROWSERPCWINDOW_H - -#include - -#include "ui_settings.h" -#include "PrivacyBrowserPCSettings.h" - -class PrivacyBrowserPCView; - -/** - * 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 PrivacyBrowserPCWindow : public KXmlGuiWindow -{ - Q_OBJECT -public: - /** - * Default Constructor - */ - PrivacyBrowserPCWindow(); - - /** - * Default Destructor - */ - ~PrivacyBrowserPCWindow() override; - -private Q_SLOTS: - /** - * Create a new window - */ - void fileNew(); - - /** - * Open the settings dialog - */ - void settingsConfigure(); - -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::Settings m_settings; - QAction *m_switchAction; - PrivacyBrowserPCView *m_privacybrowserpcView; -}; - -#endif // PRIVACYBROWSERPCWINDOW_H