~ubuntu-branches/ubuntu/precise/apvlv/precise

« back to all changes in this revision

Viewing changes to src/ApvlvMenu.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ritter
  • Date: 2010-02-04 15:11:57 UTC
  • mfrom: (1.3.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20100204151157-nae2guz0p05ir7bc
Tags: 0.0.9.3-1
* New upstream release
* Bumped Standards-Version to 3.8.4, no changes needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
* This file is part of the apvlv package
 
3
* Copyright (C) <2008>  <Alf>
 
4
*
 
5
* Contact: Alf <naihe2010@gmail.com>
 
6
*
 
7
* This program is free software; you can redistribute it and/or modify
 
8
* it under the terms of the GNU General Public License as published by
 
9
* the Free Software Foundation; either version 2 of the License, or
 
10
* (at your option) any later version.
 
11
*
 
12
* This program is distributed in the hope that it will be useful,
 
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
* GNU General Public License for more details.
 
16
*
 
17
* You should have received a copy of the GNU General Public License along
 
18
* with this program; if not, write to the Free Software Foundation, Inc.,
 
19
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
20
*
 
21
*/
 
22
/* @CFILE ApvlvMenu.hpp
 
23
*
 
24
*  Author: Alf <naihe2010@gmail.com>
 
25
*/
 
26
/* @date Created: 2010/01/21 15:09:25 Alf*/
 
27
 
 
28
#ifndef _APVLV_MENU_H_
 
29
#define _APVLV_MENU_H_
 
30
 
 
31
#ifdef HAVE_CONFIG_H
 
32
#include "config.hpp"
 
33
#endif
 
34
 
 
35
#include <gtk/gtk.h>
 
36
 
 
37
namespace apvlv
 
38
{
 
39
  class ApvlvView;
 
40
  class ApvlvMenu
 
41
  {
 
42
  public:
 
43
    ApvlvMenu ();
 
44
    ~ApvlvMenu ();
 
45
 
 
46
    GtkWidget *widget ();
 
47
 
 
48
    void setsize (gint, gint);
 
49
 
 
50
  private:
 
51
      GtkWidget * mMenu;
 
52
  };
 
53
};
 
54
 
 
55
#endif