~ubuntu-branches/ubuntu/saucy/apvlv/saucy

« back to all changes in this revision

Viewing changes to src/ApvlvMenu.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2011-06-01 22:18:49 UTC
  • mfrom: (10.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20110601221849-niibd5p5i7avemy4
Tags: 0.1.1-1.1
* Non-maintainer upload.
* Add support for poppler >= 0.15. Patch by Pino Toscano. (Closes: #627609)

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#include <gtk/gtk.h>
36
36
 
37
37
namespace apvlv
38
 
{
 
38
  {
39
39
  class ApvlvView;
40
40
  class ApvlvMenu
41
 
  {
42
 
  public:
43
 
    ApvlvMenu ();
44
 
    ~ApvlvMenu ();
45
 
 
46
 
    GtkWidget *widget ();
47
 
 
48
 
    void setsize (gint, gint);
49
 
 
50
 
  private:
 
41
    {
 
42
    public:
 
43
      ApvlvMenu ();
 
44
      ~ApvlvMenu ();
 
45
 
 
46
      GtkWidget *widget ();
 
47
 
 
48
      void setsize (gint, gint);
 
49
 
 
50
    private:
51
51
      GtkWidget * mMenu;
52
 
  };
 
52
    };
53
53
};
54
54
 
55
55
#endif