~ted/unity/menu-ref

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
/*
 * Copyright 2011 Canonical Ltd.
 *
 * This program is free software: you can redistribute it and/or modify it
 * under the terms of the GNU Lesser 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 warranties of
 * MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
 * PURPOSE.  See the applicable version of the GNU Lesser General Public
 * License for more details.
 *
 * You should have received a copy of both the GNU Lesser General Public
 * License version 3 along with this program.  If not, see
 * <http://www.gnu.org/licenses/>
 **
 * Authored by: Nick Dedekind <nick.dedekind@canonical.com>
 *
 */

#ifndef UNITYSHARED_THUMBNAILGENERATOR_H
#define UNITYSHARED_THUMBNAILGENERATOR_H

#include <Nux/Nux.h>
#include "UnityCore/GLibWrapper.h"

namespace unity
{

class Thumbnailer
{
public:
  typedef std::shared_ptr<Thumbnailer> Ptr;

  virtual std::string GetName() const = 0;

  virtual bool Run(int size, std::string const& input_file, std::string& output_file, std::string& error_hint) = 0;
};

class ThumbnailNotifier : public nux::Object
{
public:
  typedef  nux::ObjectPtr<ThumbnailNotifier> Ptr;
  NUX_DECLARE_OBJECT_TYPE(ThumbnailNotifier, Object);

  ThumbnailNotifier();

  void Cancel();
  bool IsCancelled() const;

  sigc::signal<void, std::string> ready;
  sigc::signal<void, std::string> error;

private:
  glib::Object<GCancellable> cancel_;
};


class ThumbnailGeneratorImpl;

class ThumbnailGenerator
{
public:
  ThumbnailGenerator();
  virtual ~ThumbnailGenerator();

  static ThumbnailGenerator& Instance();

  static void RegisterThumbnailer(std::list<std::string> mime_types, Thumbnailer::Ptr thumbnailer);

  ThumbnailNotifier::Ptr GetThumbnail(std::string const& uri, int size);

  void DoCleanup();

protected:
  std::unique_ptr<ThumbnailGeneratorImpl> pimpl;

  friend class Thumbnail;
};

} // namespace unity

#endif // UNITYSHARED_THUMBNAILGENERATOR_H