This file is indexed.

/usr/include/Unity-6.0/UnityCore/ScopeProxyInterface.h is in libunity-core-6.0-dev 7.2.0+14.04.20140416-0ubuntu1.

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
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
/*
 * Copyright (C) 2013 Canonical Ltd
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3 as
 * published by the Free Software Foundation.
 *
 * 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/>.
 *
 * Authored by: Nick Dedekind <nick.dedekind@canonical.com>
 */

#ifndef UNITY_SCOPE_PROXY_INTERFACE_H
#define UNITY_SCOPE_PROXY_INTERFACE_H

#include "GLibWrapper.h"
#include <NuxCore/Property.h>
#include <dee.h>

#include "Results.h"
#include "Filters.h"
#include "Categories.h"
#include "GLibWrapper.h"
#include "ScopeData.h"

namespace unity
{
namespace dash
{

enum ScopeHandledType
{
  NOT_HANDLED=0,
  SHOW_DASH,
  HIDE_DASH,
  GOTO_DASH_URI,
  SHOW_PREVIEW,
  PERFORM_SEARCH
};

enum ScopeViewType
{
  HIDDEN=0,
  HOME_VIEW,
  SCOPE_VIEW
};

typedef std::function<void(std::string const&, glib::HintsMap const&, glib::Error const&)> SearchCallback;
typedef std::function<void(LocalResult const&, ScopeHandledType, glib::Error const&)> ActivateCallback;

class ScopeProxyInterface : public sigc::trackable, boost::noncopyable
{
public:
  typedef std::shared_ptr<ScopeProxyInterface> Ptr;

  virtual ~ScopeProxyInterface() {}

  nux::ROProperty<std::string> dbus_name;
  nux::ROProperty<std::string> dbus_path;
  nux::ROProperty<bool> connected;
  nux::ROProperty<std::string> channel;

  nux::ROProperty<bool> visible;
  nux::ROProperty<bool> is_master;
  nux::ROProperty<bool> results_dirty;
  nux::ROProperty<std::string> search_hint;
  nux::RWProperty<ScopeViewType> view_type;
  nux::Property<std::string> form_factor;

  nux::ROProperty<Results::Ptr> results;
  nux::ROProperty<Filters::Ptr> filters;
  nux::ROProperty<Categories::Ptr> categories;
  nux::ROProperty<std::vector<unsigned int>> category_order;

  nux::ROProperty<std::string> name;
  nux::ROProperty<std::string> description;
  nux::ROProperty<std::string> icon_hint;
  nux::ROProperty<std::string> category_icon_hint;
  nux::ROProperty<std::vector<std::string>> keywords;
  nux::ROProperty<std::string> type;
  nux::ROProperty<std::string> query_pattern;
  nux::ROProperty<std::string> shortcut;

  virtual void ConnectProxy() = 0;
  virtual void DisconnectProxy() = 0;

  typedef std::function<void(std::string const& search_string, glib::HintsMap const&, glib::Error const&)> SearchCallback;
  virtual void Search(std::string const& search_hint, glib::HintsMap const&, SearchCallback const& callback, GCancellable* cancellable) = 0;

  typedef std::function<void(LocalResult const&, ScopeHandledType, glib::HintsMap const&, glib::Error const&)> ActivateCallback;
  virtual void Activate(LocalResult const& result, uint activate_type, glib::HintsMap const& hints, ActivateCallback const& callback, GCancellable* cancellable) = 0;

  virtual Results::Ptr GetResultsForCategory(unsigned category) const = 0;
};

} // namespace dash
} // namespace unity

#endif // UNITY_SCOPE_PROXY_INTERFACE_H