dthelp: Change to ANSI function definitions
[oweals/cde.git] / cde / programs / dtmail / dtmail / Icon.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these libraries and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /*
24  *+SNOTICE
25  *
26  *      $TOG: Icon.h /main/6 1998/01/16 11:21:49 mgreess $
27  *
28  *      RESTRICTED CONFIDENTIAL INFORMATION:
29  *      
30  *      The information in this document is subject to special
31  *      restrictions in a confidential disclosure agreement between
32  *      HP, IBM, Sun, USL, SCO and Univel.  Do not distribute this
33  *      document outside HP, IBM, Sun, USL, SCO, or Univel without
34  *      Sun's specific written approval.  This document and all copies
35  *      and derivative works thereof must be returned or destroyed at
36  *      Sun's request.
37  *
38  *      Copyright 1993 Sun Microsystems, Inc.  All rights reserved.
39  *
40  *+ENOTICE
41  */
42
43 #ifndef ICON_H
44 #define ICON_H
45
46 #include "UIComponent.h"
47 #include "Attachment.h"
48
49 #include <DtMail/DtMail.hh>
50
51 #include <Xm/Xm.h>
52
53 #include <Dt/Dts.h>
54 #include <Dt/IconFile.h>
55 extern "C" {
56 #include <Dt/Icon.h>
57 }
58
59 class Icon : public UIComponent {
60     private:
61         Boolean  _is_selected;
62         Boolean  _is_armed;
63         Pixel   _cur_fg, _cur_bg;
64         void  invert(void);
65         void  arm(void);
66         void  disarm(void);
67         int     _indx;  /* user data */
68         static void     dragMotionHandler(Widget, XtPointer, XEvent*);
69         static void     iconCallback(Widget, XtPointer, XtPointer);
70     protected:
71         Attachment     *_parent;        // associated attachemnt
72
73     public:
74         // Constructor and destructor
75         Icon (Attachment*, char*, XmString label, unsigned short, Widget, int);
76         virtual         ~Icon();
77
78         // AV callback methods
79         void select(void);
80         void primitiveSelect(void);
81         void defaultAction(void);
82         void unselect();
83
84         // associated attachment
85         Attachment*     parent()                { return ( _parent ); }
86         virtual const char *const className()   { return ( "Icon" ); }
87
88         // static functions
89         static int      maxIconWidth() { return 38; }
90         static int      maxIconHeight() { return 38; }
91 };
92 #endif