make GUI more compact

This commit is contained in:
Tomasz Moń
2009-03-15 20:06:18 +01:00
parent 03c3c48ecf
commit 74583e9a7c
3 changed files with 66 additions and 44 deletions

View File

@@ -42,14 +42,15 @@ typedef struct {
} EffectGroup;
typedef struct {
gchar *label; /**< Base effect name */
guint id; /**< ID (to set effect on/off) */
gchar *label; /**< Group label */
guint id; /**< ID to set effect on/off, or if it isn't on/off group then -1 */
guint position; /**< position */
EffectGroup *group; /**< possible effect types */
gint group_amt; /**< possible effect types length */
} Effect;
typedef struct {
gchar *label; /**< base effect name */
Effect *effect; /**< list of supported effects */
gint amt; /**< list of supported effects length */
} EffectList;