File: widgets.h

package info (click to toggle)
gimp 2.8.14-1%2Bdeb8u2
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 153,252 kB
  • sloc: ansic: 703,816; sh: 11,580; makefile: 10,943; lisp: 10,844; python: 3,708; perl: 3,411; xml: 1,307; yacc: 588; lex: 342
file content (25 lines) | stat: -rw-r--r-- 336 bytes parent folder | download | duplicates (10)
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__ */