File: PanelP.h

package info (click to toggle)
ppxp 0.99120923-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 2,812 kB
  • ctags: 3,704
  • sloc: ansic: 24,532; tcl: 3,992; makefile: 517; sh: 80
file content (34 lines) | stat: -rw-r--r-- 748 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
27
28
29
30
31
32
33
34
#ifndef _PanelP_h
#define _PanelP_h

#include <X11/CompositeP.h>
#include <X11/xpm.h>
#include "Panel.h"

typedef struct {int foo;} PanelClassPart;

typedef struct _PanelClassRec {
        CoreClassPart      core_class;
        CompositeClassPart composite_class;
        PanelClassPart     panel_class;
} PanelClassRec;

extern PanelClassRec panelClassRec;

typedef struct {
        /* resource */
        XtPointer     pixmap_data;
        Pixmap        label_pixmap;
        Pixmap        mask;
        /* private */
        Pixmap        pixmap;
        XpmAttributes attr;
} PanelPart;

typedef struct _PanelRec {
        CorePart       core;
        CompositePart  composite;
        PanelPart      panel;
} PanelRec;

#endif /* _PanelP_h */