This file is indexed.

/usr/include/kadu/plugins/mediaplayer/player-commands.h is in kadu-dev 4.1-1.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
#ifndef MEDIA_PLAYER_CMDS_H
#define MEDIA_PLAYER_CMDS_H

#include <QtCore/QObject>

#include "mediaplayer-exports.h"

class MEDIAPLAYERAPI PlayerCommands
{

public:
	virtual ~PlayerCommands() {}

	/**
		Orders media player to play the next one track.
	*/
	virtual void nextTrack() = 0;

	/**
		Orders media player to play the previous one track.
	*/
	virtual void prevTrack() = 0;

	/**
		Orders media player to start playing.
	*/
	virtual void play() = 0;

	/**
		Orders media player to stop playing.
	*/
	virtual void stop() = 0;

	/**
		Orders media player to pause playing.
	*/
	virtual void pause() = 0;

	/**
		Orders media player to sset volume to 'vol' (in percents).
	*/
	virtual void setVolume(int vol) = 0;

	/**
		Orders media player to increment volume.
	*/
	virtual void incrVolume() = 0;

	/**
		Orders media player to decrement volume.
	*/
	virtual void decrVolume() = 0;

};

#endif