blob: a3e3e3d6ecaac5bf1d17aa3d73527cf5d4555bb7 [file] [log] [blame]
Bram Moolenaarec2dad62005-01-02 11:36:03 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9/*
10 *
11 * (C) 2002,2005 by Marcin Dalecki <martin@dalecki.de>
12 *
13 * MARCIN DALECKI ASSUMES NO RESPONSIBILITY FOR THE USE OR INABILITY TO USE ANY
14 * OF THIS SOFTWARE . THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
15 * KIND, AND MARCIN DALECKI EXPRESSLY DISCLAIMS ALL IMPLIED WARRANTIES,
16 * INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
17 * FITNESS FOR A PARTICULAR PURPOSE.
18 */
19
20#ifndef EnhancedBP_H
21#define EnhancedBP_H
22
23#include <Xm/PushBP.h>
24
25#include "gui_xmebw.h"
26
27
28/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020029 * EnhancedButton class structure.
Bram Moolenaarec2dad62005-01-02 11:36:03 +000030 */
31typedef struct _XmEnhancedButtonClassPart
32{
33 Pixmap stipple_bitmap;
34} XmEnhancedButtonClassPart;
35
36/*
37 * Full class record declaration for EnhancedButton class.
38 */
39typedef struct
40{
41 CoreClassPart core_class;
42 XmPrimitiveClassPart primitive_class;
43 XmLabelClassPart label_class;
44 XmPushButtonClassPart pushbutton_class;
45 XmEnhancedButtonClassPart enhancedbutton_class;
46} XmEnhancedButtonClassRec;
47
48
49extern XmEnhancedButtonClassRec xmEnhancedButtonClassRec;
50
51/*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +020052 * EnhancedButton instance record.
Bram Moolenaarec2dad62005-01-02 11:36:03 +000053 */
54typedef struct _XmEnhancedButtonPart
55{
56 /* public resources */
57 String pixmap_data;
58 String pixmap_file;
59 Dimension spacing;
60 int label_location;
61
62 /* private resources */
63 int pixmap_depth;
64 Dimension pixmap_width;
65 Dimension pixmap_height;
66 Pixmap normal_pixmap;
67 Pixmap armed_pixmap;
68 Pixmap insensitive_pixmap;
69 Pixmap highlight_pixmap;
70
71 int doing_setvalues;
72 int doing_destroy;
73} XmEnhancedButtonPart;
74
75
76/*
77 * Full instance record declaration.
78 */
79typedef struct _XmEnhancedButtonRec
80{
81 CorePart core;
82 XmPrimitivePart primitive;
83 XmLabelPart label;
84 XmPushButtonPart pushbutton;
85 XmEnhancedButtonPart enhancedbutton;
86} XmEnhancedButtonRec;
87
88#endif