This file is indexed.

/usr/include/qupzilla/mainmenu.h is in libqupzilla-dev 1.8.9~dfsg1-3.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2014  David Rosca <nowrep@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
* ============================================================ */
#ifndef MAINMENU_H
#define MAINMENU_H

#include <QMenu>
#include <QHash>
#include <QPointer>

#include "qzcommon.h"

class QMenuBar;

class Preferences;
class HistoryMenu;
class BookmarksMenu;
class BrowserWindow;

class QUPZILLA_EXPORT MainMenu : public QMenu
{
    Q_OBJECT

public:
    explicit MainMenu(BrowserWindow* window, QWidget* parent = 0);

    void setWindow(BrowserWindow* window);

    void initMenuBar(QMenuBar* menuBar) const;
    void initSuperMenu(QMenu* superMenu) const;

    QAction* action(const QString &name) const;

private slots:
    // Standard actions
    void showAboutDialog();
    void showPreferences();
    void quitApplication();

    // File menu
    void newTab();
    void newWindow();
    void newPrivateWindow();
    void openLocation();
    void openFile();
    void closeWindow();
    void toggleOfflineMode();
    void savePageAs();
    void savePageScreen();
    void sendLink();
    void printPage();

    // Edit menu
    void editUndo();
    void editRedo();
    void editCut();
    void editCopy();
    void editPaste();
    void editSelectAll();
    void editFind();

    // View menu
    void showStatusBar();
    void stop();
    void reload();
    void zoomIn();
    void zoomOut();
    void zoomReset();
    void toggleCaretBrowsing();
    void showPageSource();
    void showFullScreen();

    // Tools menu
    void webSearch();
    void showSiteInfo();
    void showDownloadManager();
    void showCookieManager();
    void showAdBlockDialog();
    void showRssManager();
    void toggleWebInspector();
    void showClearRecentHistoryDialog();

    // Help menu
    void aboutQt();
    void showInfoAboutApp();
    void showConfigInfo();
    void reportIssue();

    // Other actions
    void restoreClosedTab();

    void aboutToShowFileMenu();
    void aboutToHideFileMenu();
    void aboutToShowViewMenu();
    void aboutToHideViewMenu();
    void aboutToShowEditMenu();
    void aboutToHideEditMenu();
    void aboutToShowToolsMenu();
    void aboutToHideToolsMenu();
    void aboutToShowSuperMenu();
    void aboutToHideSuperMenu();

    void aboutToShowToolbarsMenu();
    void aboutToShowSidebarsMenu();
    void aboutToShowEncodingMenu();

private:
    void init();
    void addActionsToWindow();
    void callSlot(const char* slot);

    QHash<QString, QAction*> m_actions;
    QPointer<BrowserWindow> m_window;
    QPointer<Preferences> m_preferences;

    QMenu* m_menuFile;
    QMenu* m_menuEdit;
    QMenu* m_menuView;
    QMenu* m_menuTools;
    QMenu* m_menuHelp;
    QMenu* m_submenuExtensions;
    HistoryMenu* m_menuHistory;
    BookmarksMenu* m_menuBookmarks;
};

#endif // MAINMENU_H