This file is indexed.

/usr/include/BALL/VIEW/DIALOGS/pubchemDialog.h is in libballview1.4-dev 1.4.3~beta1-4.

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
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//

#ifndef BALL_VIEW_DIALOGSPUBCHEMDIALOG_H
#define BALL_VIEW_DIALOGSPUBCHEMDIALOG_H

#ifndef BALL_COMMON_GLOBAL_H
# include <BALL/COMMON/global.h>
#endif

#ifndef BALL_VIEW_KERNEL_MODULARWIDGET_H
# include <BALL/VIEW/KERNEL/modularWidget.h>
#endif

#ifndef BALL_STRUCTURE_SMILESPARSER_H
# include <BALL/STRUCTURE/smilesParser.h>
#endif

#include <QtGui/QDialog>

#include <map>
#include <boost/unordered_map.hpp>

class QNetworkAccessManager;
class QNetworkReply;

class QTreeWidgetItem;

namespace Ui
{
	class PubChemDialogData;
}

namespace BALL
{
	namespace VIEW
	{
		/** Dialog for querying PubChem and generating structures from a SMILES string
		 */
		class BALL_VIEW_EXPORT PubChemDialog
			: public QDialog,
			  public ModularWidget
		{
			Q_OBJECT

			public:

				BALL_EMBEDDABLE ( PubChemDialog,ModularWidget )

				/// Default Constructor.
				PubChemDialog ( QWidget* parent = NULL, const char* name = "PubChemDialog" );

				/// Destructor.
				virtual ~PubChemDialog();

				///
				virtual void initializeWidget ( MainControl& main_control );

				///
				virtual void checkMenu ( MainControl& main_control );

				///
				void generateFromSMILES ( const String& SMILES );
			public slots:

				/// Show and raise dialog
				void show();

				/// Generate a structure from SMILES
				void generateButtonClicked();

				/// Query PubChem
				void queryPubChem();

				///
				void switchView ( QTreeWidgetItem* item, int column );

				///
				void clearEntries();

				///
				void finished();

				///
				void updateDownloadProgress ( qint64 done, qint64 total );

				///
				void downloadFinished ( QNetworkReply* reply );

			protected:
				Ui::PubChemDialogData* ui_;

				SmilesParser smiles_parser_;

				struct ParsedResult_
				{
					QString name;
					QString description;
					String smiles;
				};

				enum InfoDisplayStyle{
					LONG, SHORT
				};

				void insert_ ( ParsedResult_ d, QTreeWidgetItem* parent, bool plot );
				bool handleDownloadError_ ( QNetworkReply* reply);
				void buildInformationTemplates_();
				QString buildHeaderTemplate_(InfoDisplayStyle style, const char* str) const;

				std::map<QTreeWidgetItem*, System*> sd_systems_;
				std::map<QTreeWidgetItem*, System*> original_systems_;
				std::map<QTreeWidgetItem*, ParsedResult_> descriptions_;

				QAction* action1_, *action2_;

				HashMap<int, QTreeWidgetItem*> esummary_request_ids_;
				boost::unordered_map<String, QString> information_templates_;

				QPushButton* add_button_;
				QNetworkAccessManager* network_manager_;
		};

	}
}
#endif