]> icculus.org git repositories - taylor/freespace2.git/blob - src/ui/icon.cpp
Screenshot function filled, will output into ~/.freespace(2)/Data
[taylor/freespace2.git] / src / ui / icon.cpp
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 /*
10  * $Logfile: /Freespace2/code/UI/icon.cpp $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * C++ class implementation for icon UI element
16  *
17  * $Log$
18  * Revision 1.4  2004/09/20 01:31:45  theoddone33
19  * GCC 3.4 fixes.
20  *
21  * Revision 1.3  2002/06/09 04:41:29  relnev
22  * added copyright header
23  *
24  * Revision 1.2  2002/05/07 03:16:53  theoddone33
25  * The Great Newline Fix
26  *
27  * Revision 1.1.1.1  2002/05/03 03:28:11  root
28  * Initial import.
29  *
30  * 
31  * 4     12/02/98 5:47p Dave
32  * Put in interface xstr code. Converted barracks screen to new format.
33  * 
34  * 3     10/13/98 9:29a Dave
35  * Started neatening up freespace.h. Many variables renamed and
36  * reorganized. Added AlphaColors.[h,cpp]
37  * 
38  * 2     10/07/98 10:54a Dave
39  * Initial checkin.
40  * 
41  * 1     10/07/98 10:51a Dave
42  * 
43  * 5     2/03/98 4:21p Hoffoss
44  * Made UI controls draw white text when disabled.
45  * 
46  * 4     1/20/98 10:36a Hoffoss
47  * Fixed optimized warnings.
48  * 
49  * 3     1/14/98 6:43p Hoffoss
50  * Massive changes to UI code.  A lot cleaner and better now.  Did all
51  * this to get the new UI_DOT_SLIDER to work properly, which the old code
52  * wasn't flexible enough to handle.
53  * 
54  * 2     9/07/97 10:05p Lawrance
55  * add icon class
56  * 
57  * 1     9/06/97 11:22p Lawrance
58  *
59  * $NoKeywords: $
60  */
61
62 #include "uidefs.h"
63 #include "ui.h"
64 #include "alphacolors.h"
65
66 // ---------------------------------------------------------------------------------------
67 // UI_ICON::create()
68 //
69 //
70 void UI_ICON::create(UI_WINDOW *wnd, char *_text, int _x, int _y, int _w, int _h)
71 {
72         if (_text)      
73                 text = strdup(_text);
74         else
75                 text = NULL;
76
77         base_create(wnd, UI_KIND_ICON, _x, _y, _w, _h);
78         m_flags = 0;
79 }
80
81 void UI_ICON::destroy()
82 {
83         if (text) {
84                 free(text);
85                 text = NULL;
86         }
87
88         UI_GADGET::destroy();
89 }
90
91 void UI_ICON::draw()
92 {
93         if (uses_bmaps) {
94                 gr_reset_clip();
95                 if (disabled_flag) {
96                         if (bmap_ids[ICON_DISABLED] != -1) {
97                                 gr_set_bitmap(bmap_ids[ICON_DISABLED], GR_ALPHABLEND_NONE, GR_BITBLT_MODE_NORMAL, 1.0f, -1, -1);
98                                 gr_bitmap(x,y);
99                         }
100
101                 } else if (this->is_mouse_on()) {
102                         if (B1_PRESSED) {
103                                 if (bmap_ids[ICON_SELECTED] != -1) {
104                                         gr_set_bitmap(bmap_ids[ICON_SELECTED], GR_ALPHABLEND_NONE, GR_BITBLT_MODE_NORMAL, 1.0f, -1, -1);
105                                         gr_bitmap(x, y);
106                                 }
107
108                         } else {
109                                 if (bmap_ids[ICON_HIGHLIGHT] != -1) {
110                                         gr_set_bitmap(bmap_ids[ICON_HIGHLIGHT], GR_ALPHABLEND_NONE, GR_BITBLT_MODE_NORMAL, 1.0f, -1, -1);
111                                         gr_bitmap(x, y);
112                                 }
113                         }
114
115                 } else {
116                         if (bmap_ids[ICON_NORMAL] != -1) {
117                                 gr_set_bitmap(bmap_ids[ICON_NORMAL], GR_ALPHABLEND_NONE, GR_BITBLT_MODE_NORMAL, 1.0f, -1, -1);
118                                 gr_bitmap(x, y);
119                         }
120                 }
121
122         } else {
123                 gr_set_font(my_wnd->f_id);
124                 gr_set_clip(x, y, w, h);
125
126                 ui_draw_box_out(0, 0, w-1, h-1);
127                 if (disabled_flag)
128                         gr_set_color_fast(&CDARK_GRAY);
129                 else 
130                         gr_set_color_fast(&CBLACK);
131
132                 if (text)
133                         ui_string_centered(Middle(w), Middle(h), text);
134
135                 gr_reset_clip();
136         }
137 }
138
139 // -----------------------------------------------------------------------
140 // process()
141 //
142 void UI_ICON::process(int focus)
143 {
144         int OnMe;
145
146         if (disabled_flag) {
147                 return;
148         }
149
150         OnMe = is_mouse_on();
151
152         if (!OnMe) {
153                 m_flags |= ICON_NOT_HIGHLIGHTED;
154
155         } else {
156                 if ( m_flags & ICON_NOT_HIGHLIGHTED ) {
157                         m_flags |= ICON_JUST_HIGHLIGHTED;
158                         // if a callback exists, call it
159                         m_flags &= ~ICON_NOT_HIGHLIGHTED;
160                 }
161         }
162 }
163