File: menu.h

package info (click to toggle)
fbpanel 7.0-3
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 5,000 kB
  • ctags: 2,013
  • sloc: ansic: 11,684; sh: 404; python: 382; makefile: 315
file content (26 lines) | stat: -rw-r--r-- 396 bytes parent folder | download | duplicates (3)
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
#ifndef MENU_H
#define MENU_H


#include "plugin.h"
#include "panel.h"

#define MENU_DEFAULT_ICON_SIZE 22

typedef struct {
    plugin_instance plugin;
    GtkWidget *menu, *bg;
    int iconsize, paneliconsize;
    xconf *xc;
    guint tout, rtout;
    gboolean has_system_menu;
    time_t btime;
    gint icon_size;
} menu_priv;

typedef struct {
    plugin_class plugin;
} menu_class;


#endif