This file is indexed.

/usr/include/CLAM/qtmonitors/ProgressControlWidget.hxx is in libclam-qtmonitors-dev 1.4.0-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
#ifndef __ProgressControlWidget_hxx__
#define __ProgressControlWidget_hxx__

#include <CLAM/Processing.hxx>
#include <QtGui/QWidget>
#include <QtGui/QSlider>
#include <QtDesigner/QDesignerExportWidget>

class QDESIGNER_WIDGET_EXPORT ProgressControlWidget : public QSlider
{
	Q_OBJECT
public:
	ProgressControlWidget(CLAM::Processing *processing = 0, QWidget *parent = 0);
	~ProgressControlWidget();

	CLAM::Processing* GetProcessing();
	void SetProcessing(CLAM::Processing *processing);
	
protected:
	void timerEvent(QTimerEvent *event);

private slots:
	void sliderValueChanged(int value);
	void sliderPressed();
	void sliderReleased();

private:
	CLAM::Processing *_processing;
	bool             _updating;
	bool             _jumping;
};

#endif //__ProgressControlWidget_hxx__