~ubuntu-branches/ubuntu/karmic/mhwaveedit/karmic

« back to all changes in this revision

Viewing changes to src/effectlist.h

  • Committer: Bazaar Package Importer
  • Author(s): Free Ekanayaka
  • Date: 2008-01-08 22:20:37 UTC
  • mfrom: (2.1.6 hardy)
  • Revision ID: james.westby@ubuntu.com-20080108222037-tsazhckl5vmc8yih
Tags: 1.4.14-2
Added desktop file (Closes: #457849), thanks to Marco Rodrigues

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2002 2003 2004 2005, Magnus Hjorth
3
 
 *
4
 
 * This file is part of mhWaveEdit.
5
 
 *
6
 
 * mhWaveEdit is free software; you can redistribute it and/or modify
7
 
 * it under the terms of the GNU General Public License as published by        
8
 
 * the Free Software Foundation; either version 2 of the License, or  
9
 
 * (at your option) any later version.
10
 
 *
11
 
 * mhWaveEdit is distributed in the hope that it will be useful,   
12
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of  
13
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
 * GNU General Public License for more details.
15
 
 *
16
 
 * You should have received a copy of the GNU General Public License
17
 
 * along with mhWaveEdit; if not, write to the Free Software
18
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
19
 
 */
20
 
 
21
 
 
22
 
#ifndef EFFECTLIST_H_INCLUDED
23
 
#define EFFECTLIST_H_INCLUDED
24
 
 
25
 
#define EFFECT_LIST(obj) GTK_CHECK_CAST(obj,effect_list_get_type(),EffectList)
26
 
#define EFFECT_LIST_CLASS(klass) GTK_CHECK_CLASS_CAST(klass,effect_list_get_type(),EffectListClass)
27
 
#define IS_EFFECT_LIST(obj) GTK_CHECK_TYPE(obj,effect_list_get_type())
28
 
 
29
 
typedef struct {
30
 
     GtkVBox box;
31
 
     Combo *folder_chooser;
32
 
     GtkList *effect_list;
33
 
} EffectList;
34
 
 
35
 
typedef struct {
36
 
     GtkVBoxClass parent_class;
37
 
} EffectListClass;
38
 
 
39
 
GtkWidget *effect_list_new(void);
40
 
 
41
 
 
42
 
#endif