File: widgets.h

package info (click to toggle)
gimp 2.6.10-1%2Bsqueeze4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 128,948 kB
  • ctags: 55,327
  • sloc: ansic: 635,142; lisp: 10,678; sh: 10,420; makefile: 9,729; python: 3,366; perl: 2,713; xml: 1,152; yacc: 554; lex: 339
file content (25 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (9)
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
#ifndef __WIDGETS_H__
#define __WIDGETS_H__


typedef enum
{
  SMALL,
  MEDIUM,
  LARGE,
  ASIS
} WidgetSize;

typedef struct WidgetInfo
{
  GtkWidget  *window;
  gchar      *name;
  gboolean    no_focus;
  gboolean    include_decorations;
  WidgetSize  size;
} WidgetInfo;

GList * get_all_widgets (void);


#endif /* __WIDGETS_H__ */