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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790
|
/*
* Copyright (C) Volition, Inc. 1999. All rights reserved.
*
* All source code herein is the property of Volition, Inc. You may not sell
* or otherwise commercially exploit the source or things you created based on the
* source.
*
*/
#ifndef _UI_H
#define _UI_H
#include "graphics/2d.h"
#include "graphics/font.h"
#include "io/cursor.h"
#define UI_KIND_BUTTON 1
#define UI_KIND_KEYTRAP 2
#define UI_KIND_CHECKBOX 3
#define UI_KIND_RADIO 4
#define UI_KIND_SCROLLBAR 5
#define UI_KIND_LISTBOX 6
#define UI_KIND_INPUTBOX 7
#define UI_KIND_SLIDER 8
#define UI_KIND_ICON 9
#define UI_KIND_DOT_SLIDER 10
#define UI_KIND_SLIDER2 11
#define UI_KIND_DOT_SLIDER_NEW 12
#define MAX_KEY_BUFFER 32 // for listboxes
#define MAX_BMAPS_PER_GADGET 15
#define UI_INPUTBOX_FLAG_INVIS (1 << 0) // don't draw the input box boarders
#define UI_INPUTBOX_FLAG_KEYTHRU (1 << 1) // pass all keypresses through to parent
#define UI_INPUTBOX_FLAG_ESC_CLR (1 << 2) // allow escape key to clear input box
#define UI_INPUTBOX_FLAG_ESC_FOC (1 << 3) // escape loses focus for the input box
#define UI_INPUTBOX_FLAG_PASSWD (1 << 4) // display all characters as special "password" characters
#define UI_INPUTBOX_FLAG_EAT_USED (1 << 5) // don't return any characters actually used by inputbox
#define UI_INPUTBOX_FLAG_LETTER_FIRST (1 << 6) // require input string to begin with a letter.
#define UI_INPUTBOX_FLAG_NO_LETTERS (1 << 7) // don't allow [a-z,A-Z] at all, no matter what
#define UI_INPUTBOX_FLAG_NO_NUMERALS (1 << 8) // don't allow [0-9] at all, no matter what
#define UI_INPUTBOX_FLAG_TEXT_CEN (1 << 9) // always draw text centered in the inputbox
#define UI_INPUTBOX_FLAG_NO_BACK (1 << 10) // don't draw a black background rectangle
#define UI_GF_MOUSE_CAPTURED (1 << 31) // gadget has all rights to the mouse
class UI_WINDOW;
class UI_BUTTON;
class UI_KEYTRAP;
class UI_CHECKBOX;
class UI_RADIO;
class UI_SCROLLBAR;
class UI_LISTBOX;
class UI_INPUTBOX;
class UI_SLIDER2;
class UI_DOT_SLIDER;
class UI_DOT_SLIDER_NEW;
class UI_GADGET
{
friend class UI_WINDOW;
friend class UI_BUTTON;
friend class UI_KEYTRAP;
friend class UI_CHECKBOX;
friend class UI_RADIO;
friend class UI_SCROLLBAR;
friend class UI_LISTBOX;
friend class UI_INPUTBOX;
friend class UI_SLIDER2;
friend class UI_DOT_SLIDER;
friend class UI_DOT_SLIDER_NEW;
protected:
const char *bm_filename;
int kind;
int hotkey;
int x, y, w, h;
int m_flags;
void (*user_function)(void);
int disabled_flag;
int base_dragging;
int base_drag_x, base_drag_y;
int base_start_x, base_start_y;
int hidden;
// Data for supporting linking controls to hotspots
int linked_to_hotspot;
int hotspot_num;
// Data for supporting bitmaps associated with different states of the control
int uses_bmaps;
int m_num_frames;
void drag_with_children( int dx, int dy );
void start_drag_with_children();
void stop_drag_with_children();
UI_GADGET *parent;
UI_GADGET *children;
UI_GADGET *prev;
UI_GADGET *next;
int is_mouse_on_children();
void remove_from_family();
void set_parent(UI_GADGET *_parent);
UI_GADGET *get_next();
UI_GADGET *get_prev();
UI_WINDOW *my_wnd;
virtual void process(int focus = 0);
virtual void destroy();
int check_move();
public:
int bmap_ids[MAX_BMAPS_PER_GADGET];
UI_GADGET(); // constructor
virtual ~UI_GADGET(); // destructor
void base_create( UI_WINDOW *wnd, int _kind, int _x, int _y, int _w, int _h );
virtual void draw();
void set_focus();
void clear_focus();
int has_focus();
void set_hotkey(int keycode);
void set_callback(void (*_user_function)(void));
void disable();
void enable(int n = 1);
void capture_mouse();
int mouse_captured(UI_GADGET *gadget = NULL);
int disabled();
int enabled();
virtual void hide(int n);
virtual void hide();
virtual void unhide();
void update_dimensions(int _x, int _y, int _w, int _h);
void get_dimensions(int *_x, int *_y, int *_w, int *_h);
int is_mouse_on();
void get_mouse_pos(int *xx, int *yy);
void link_hotspot(int num);
int get_hotspot();
int bmaps_used() { return uses_bmaps; }
// loads nframes bitmaps, starting at index start_frame.
// anything < start_frame will not be loaded.
// this keeps the loading code from trying to load bitmaps which don't exist
// and taking an unnecessary disk hit.
int set_bmaps(const char *ani_filename, int nframes = 3, int start_frame = 1); // extracts MAX_BMAPS_PER_GADGET from .ani file
void reset(); // zero out m_flags
virtual int is_hidden();
};
// xstrings for a window
#define UI_NUM_XSTR_COLORS 2
#define UI_XSTR_COLOR_GREEN 0 // shades of green/gray
#define UI_XSTR_COLOR_PINK 1 // pinkish hue
typedef struct UI_XSTR {
const char *xstr; // base string
int xstr_id; // xstring id
int x, y; // coords of the string
int clr; // color to use
int font_id; // font id
UI_GADGET *assoc; // the associated gadget
} UI_XSTR;
#define MAX_UI_XSTRS 100
// Button terminology:
// Up = button is in up state (also called pressed)
// Down = button is in down state (also called released)
// Just pressed = button has just gone from up to down state
// Just released = button has just gone from down to up state
// Clicked = a trigger type effect caused by 'just pressed' event or repeat while 'down'
// Double clicked = 2 'just pressed' events occuring within a short amount of time
// Button flags
#define BF_UP (1<<0)
#define BF_DOWN (1<<1)
#define BF_JUST_PRESSED (1<<2)
#define BF_JUST_RELEASED (1<<3)
#define BF_CLICKED (1<<4)
#define BF_DOUBLE_CLICKED (1<<5)
#define BF_HIGHLIGHTED (1<<6) // button is not highlighted (ie mouse is not over)
#define BF_JUST_HIGHLIGHTED (1<<7) // button has just been highlighted, true for 1 frame
#define BF_IGNORE_FOCUS (1<<8) // button should not use focus to accept space/enter keypresses
#define BF_HOTKEY_JUST_PRESSED (1<<9) // button hotkey was just pressed
#define BF_REPEATS (1<<10) // if held down, generates repeating presses
#define BF_SKIP_FIRST_HIGHLIGHT_CALLBACK (1<<11) // skip first callback for mouse over event
class UI_BUTTON : public UI_GADGET
{
friend class UI_SCROLLBAR;
friend class UI_SLIDER2;
friend class UI_DOT_SLIDER;
friend class UI_DOT_SLIDER_NEW;
char *text;
int position; // indicates position of button (0 - up, 1 - down by mouse click 2 - down by keypress
UI_TIMESTAMP next_repeat; // timestamp for next repeat if held down
UI_TIMESTAMP m_press_linger; // timestamp for hold a pressed state animation
int hotkey_if_focus; // hotkey for button that only works if it has focus
int force_draw_frame; // frame number to draw next time (override default)
int first_callback; // true until first time callback function is called for button highlight
// Used to index into bmap_ids[] array to locate right bitmap for button
enum { B_NORMAL = 0 };
enum { B_HIGHLIGHT = 1 };
enum { B_PRESSED = 2 };
enum { B_DISABLED = 3 };
enum { B_REPEAT_TIME = 100 }; // ms
void (*m_just_highlighted_function)(void); // call-back that gets called when button gets highlighted
void (*m_disabled_function)(void); // callback that gets called when disabled button gets pressed (sound, popup, etc)
void frame_reset();
void process(int focus = 0) override;
void destroy() override;
io::mouse::Cursor* custom_cursor; // bmap handle of special cursor used on mouseovers
io::mouse::Cursor* previous_cursor; // store old cursor
void maybe_show_custom_cursor(); // call this in process()
void restore_previous_cursor(); // called in frame_reset()
public:
void draw() override;
void set_hotkey_if_focus(int key);
int pressed(); // has it been selected (ie clicked on)
int double_clicked(); // button was double clicked on
int just_pressed(); // button has just been selected
int just_highlighted(); // button has just had mouse go over it
int button_down(); // is the button depressed?
int button_hilighted(); // is the mouse over this button?
void set_button_hilighted(); // force button to be highlighted
void press_button(); // force button to get pressed
void create(UI_WINDOW *wnd, const char *_text, int _x, int _y, int _w, int _h, int do_repeat=0, int ignore_focus = 0);
void set_highlight_action( void (*_user_function)(void) );
void set_disabled_action( void (*_user_function)(void) );
void draw_forced(int frame_num);
void reset_status();
void reset_timestamps();
void skip_first_highlight_callback();
void repeatable(int yes);
void set_custom_cursor(io::mouse::Cursor* cursor) { custom_cursor = cursor; };
};
class UI_KEYTRAP : public UI_GADGET
{
int pressed_down;
void draw() override;
void process(int focus = 0) override;
public:
int pressed();
void create(UI_WINDOW *wnd, int key, void (*_user_function)(void) );
};
/** TODO
class UI_USERBOX : public UI_GADGET
{
int b1_held_down;
int b1_clicked;
int b1_double_clicked;
int b1_dragging;
int b1_drag_x1, b1_drag_y1;
int b1_drag_x2, b1_drag_y2;
int b1_done_dragging;
int keypress;
int mouse_onme;
int mouse_x, mouse_y;
int bitmap_number;
};
*/
class UI_INPUTBOX : public UI_GADGET
{
char *text;
char *passwd_text;
int length;
int position;
int oldposition;
int pressed_down;
int changed_flag;
int flags;
int pixel_limit; // base max characters on how wide the string is (-1 to ignore) in pixels
int locked;
color *text_color;
char *valid_chars;
char *invalid_chars;
bool valid; // is invalid until created and then is valid until destroyed
// cursor drawing
int cursor_first_frame;
int cursor_nframes;
int cursor_fps;
int cursor_current_frame;
int cursor_elapsed_time;
os::events::ListenerIdentifier textListener;
bool handle_textInputEvent(const SDL_Event& event);
void add_input(int chr, int *key_used);
/**
* @brief Checks if the given chr is a valid character
*
* @param[in] chr The character to validate
*
* @return 0 If an invalid character was passed, or
* @return chr If the character is valid
*
* @details Rejects control characters and characters that are in the invalid_chars blacklist string, Accepts
* alphanumeric characters and characters that are in the valid_chars whitelist string
*/
int validate_input(int chr);
/**
* @brief Inits the cursor for the input box
*/
void init_cursor();
/**
* @brief Draws the input box according to its mode and settings.
*/
void draw() override;
/**
* @brief Processes mouse and keyboard input
*
* @param[in] focus Focus state of this widget
*
* @details If focus is not 0, or the widget is selected, the mouse and keyboard input is processed.
*/
void process(int focus = 0) override;
/**
* @brief De-inits the widget, vm_free'ing relevant strings and other relevant heap elements
*/
void destroy() override;
public:
/**
* @brief Creates an input box gadget
* @param[in] wnd Pointer to parent window
* @param[in] _x horizontal anchor position (pixels)
* @param[in] _y vertical anchor position (pixels)
* @param[in] _w width (pixels)
* @param[in] _textlen maximum number of characters acceptable in a line
* @param[in] _text initial text value
* @param[in] _flags any of UI_INPUTBOX_FLAG* flags
* @param[in] pixel_lim width, in pixels, to limit the input string. Set this to -1 to ignore.
* @param[in] clr color of the input text as defined in uidefs.h
*
* @note _h is not a specified param and is instead automatically determined by the font size of the input text
*/
void create(UI_WINDOW *wnd, int _x, int _y, int _w, int _textlen, const char *_text, int _flags = 0, int pixel_lim = -1, color *clr = NULL);
/**
* @brief Sets the whitelist of all characters allowed for input
*
* @param[in] vchars String of all characters that are whitelisted. May be nullptr.
*
* @note Alpha [a-z, A-Z] and Numeric [0-9] characters are implicity whitelisted. May be affected by locale.
*/
void set_valid_chars(const char *vchars);
/**
* @brief Sets the blacklist of all characters not allowed for input
*
* @param[in] ichars String of al lcharacters that are blacklisted. May be nullptr.
*
* @note Non-printable and control characters are implicitly blacklisted
*/
void set_invalid_chars(const char *ichars);
/**
* @brief Returns 1 if the input text has changed
*
* @return changed_flag, 0 for no change, 1 for change occured
*
* @note Does not clear changed_flag on use
*/
int changed();
/**
* @brief Returns 1 if the Enter key was pressed
*/
int pressed();
/**
* @brief Returns true if valid
*/
bool is_valid();
/**
* @brief Retrieves the string currently in the inputbox
* @param[out] out Destination char[] to copy the string to
* @param[max_out_len] max_out_len Maximum length of out string
*/
void get_text(char* out, size_t max_out_len);
/**
* @brief Retrieves the string currently in the inputbox
* @param[out] out Destination char[] to copy the string to
*/
template<size_t size>
inline void get_text(char (&out)[size])
{
get_text(out, size);
}
/**
* @brief Retrieves the string currently in the inputbox
* @param[out] out Destination SCP_String to copy the string to
*/
void get_text(SCP_string &out);
/**
* @brief Sets the string in the inputbox
* @param[in] in Source char[] to copy the string from
*/
void set_text(const char *in);
/**
* @brief Appends the given string to the input string
*
* @param in String to append
*
* @note Takes in as much of the input string as possible, truncating once textlen is exceeded
*/
void append_text(const char *in);
};
// Icon flags
#define ICON_NOT_HIGHLIGHTED (1<<0) // icon is not highlighted (ie mouse is not over)
#define ICON_JUST_HIGHLIGHTED (1<<1) // icon has just been highlighted, true for 1 frame
class UI_ICON : public UI_GADGET
{
char *text;
// Used to index into bmap_ids[] array to locate right bitmap for button
enum { ICON_NORMAL = 0 };
enum { ICON_HIGHLIGHT = 1 };
enum { ICON_SELECTED = 2 };
enum { ICON_DISABLED = 3 };
void draw() override;
void process(int focus = 0) override;
void destroy() override;
public:
void create(UI_WINDOW *wnd, char *_text, int _x, int _y, int _w, int _h);
};
class UI_CHECKBOX : public UI_GADGET
{
char *text;
int position;
int pressed_down;
int flag;
void draw() override;
void process(int focus = 0) override;
void destroy() override;
// Used to index into bmap_ids[] array to locate right bitmap for checkbox
enum { CBOX_UP_CLEAR = 0 };
enum { CBOX_DOWN_CLEAR = 1 };
enum { CBOX_UP_MARKED = 2 };
enum { CBOX_DOWN_MARKED = 3 };
enum { CBOX_DISABLED_CLEAR = 4 };
enum { CBOX_DISABLED_MARKED = 5 };
public:
int changed();
int checked();
void create(UI_WINDOW *wnd, const char *_text, int _x, int _y, int _state );
void set_state(int _state);
};
class UI_RADIO : public UI_GADGET
{
char *text;
int position;
int pressed_down;
int flag;
int group;
void draw() override;
void process(int focus = 0) override;
void destroy() override;
// Used to index into bmap_ids[] array to locate right bitmap for radio button
enum { RADIO_UP_CLEAR = 0 };
enum { RADIO_DOWN_CLEAR = 1 };
enum { RADIO_UP_MARKED = 2 };
enum { RADIO_DOWN_MARKED = 3 };
enum { RADIO_DISABLED_CLEAR = 4 };
enum { RADIO_DISABLED_MARKED = 5 };
public:
int changed();
int checked();
void create(UI_WINDOW *wnd, char *_text, int _x, int _y, int _state, int _group );
};
class UI_SCROLLBAR : public UI_GADGET
{
friend class UI_LISTBOX;
friend class UI_BUTTON;
int horz;
int start;
int stop;
int position;
int window_size;
int bar_length;
int bar_position;
int bar_size;
UI_BUTTON up_button;
UI_BUTTON down_button;
int last_scrolled;
int drag_x, drag_y;
int drag_starting;
int dragging;
int moved;
void draw() override;
void process(int focus = 0) override;
// Used to index into bmap_ids[] array to locate right bitmap for scrollbar
enum { SB_NORMAL = 0 };
enum { SB_DISABLED = 1 };
public:
void create(UI_WINDOW *wnd, int _x, int _y, int _h,int _start, int _stop, int _position, int _window_size );
int getpos();
int changed();
void hide() override;
void unhide() override;
void link_hotspot(int up_button_num, int down_button_num);
int set_bmaps(char *up_button_fname, char *down_button_fname, char *line_fname);
};
class UI_SLIDER2 : public UI_GADGET
{
friend class UI_BUTTON;
private:
int numberItems; // total range
int numberPositions; // total positions (height - bitmapbuttonheight)
int currentItem; // current item we are on
int currentPosition; // current position
int last_scrolled;
int mouse_locked;
int slider_mode; //
UI_BUTTON sliderBackground;// invisible button to detect clicks
int bitmapSliderControl; // this is the bitmap of the slider button itself
void (*upCallback)();
void (*downCallback)();
void (*captureCallback)(); // this is called when the mouse is released
UI_BUTTON *upButton, *downButton;
int slider_w, slider_h, slider_half_h; // this is the width and height and half height of the bitmap used for the slider
void draw() override;
void process(int focus = 0) override;
// Used to index into bmap_ids[] array to locate right bitmap for slider
enum { S2_NORMAL = 0 };
enum { S2_HIGHLIGHT = 1 };
enum { S2_PRESSED = 2 };
enum { S2_DISABLED = 3 };
// Used for slider mode
enum { S2M_ON_ME = 0 };
enum { S2M_MOVING = 1 };
enum { S2M_DEFAULT = 2 };
public:
// create the slider
void create(UI_WINDOW *wnd, int _x, int _y, int _w, int _h, int _numberItems, const char *_bitmapSliderControl,
void (*_upCallback)(), void (*_downCallback)(), void (*_captureCallback)());
// range management
int get_numberItems(); // return number of itmes
int get_currentPosition(); // return current position
int get_currentItem(); // return current item
void set_numberItems(int _numberItems, int _reset = 1); // change range. maybe reset back to position 0
void set_currentItem(int _currentItem); // force slider to new position manually
void force_currentItem(int _currentItem); // force slider to new position manually, _not_ calling any callbacks
// force down
void forceDown();
// force up
void forceUp();
};
// to be phased out eventually in FS2
class UI_DOT_SLIDER : public UI_GADGET
{
friend class UI_BUTTON;
UI_BUTTON button;
UI_BUTTON up_button;
UI_BUTTON down_button;
int first_frame, total_frames;
int has_end_buttons;
int num_pos;
public:
int pos; // 0 thru 10
void create(UI_WINDOW *wnd, int _x, int _y, char *bm, int id, int end_buttons = 1, int _num_pos = 10);
void draw() override;
void process(int focus = 0) override;
void destroy() override;
};
class UI_DOT_SLIDER_NEW : public UI_GADGET
{
friend class UI_BUTTON;
UI_BUTTON button;
UI_BUTTON up_button;
UI_BUTTON down_button;
int has_end_buttons;
int num_pos;
int dot_width;
public:
int pos; // 0 thru 10
void create(UI_WINDOW *wnd, int _x, int _y, int _num_pos, const char *bm_slider, int slider_mask,
const char *bm_left = NULL, int left_mask = -1, int left_x = -1, int left_y = -1,
const char *bm_right = NULL, int right_mask = -1, int right_x = -1, int right_y = -1,
int _dot_width = 19);
void draw() override;
void process(int focus = 0) override;
};
class UI_LISTBOX : public UI_GADGET
{
private:
char **list;
char *check_list;
int max_items;
int num_items;
int num_items_displayed;
int first_item;
int old_first_item;
int current_item;
int selected_item;
int toggled_item;
int old_current_item;
int last_scrolled;
int dragging;
int textheight;
int has_scrollbar;
char key_buffer[MAX_KEY_BUFFER];
int key_buffer_count;
int last_typed;
UI_SCROLLBAR scrollbar;
// kazan
int draw_frame;
void draw() override;
void process(int focus = 0) override;
// Used to index into bmap_ids[] array to locate right bitmap for listbox
enum { LBOX_NORMAL = 0 };
enum { LBOX_DISABLED = 1 };
public:
void create(UI_WINDOW *wnd, int _x, int _y, int _w, int _h, int _numitem, char **_list, char *_check_list = NULL, int _max_items = -1);
int selected(); // selected: Returns >= 0 if an item was selected
int current(); // current: Returns which item listbox bar is currently on. This could be -1, if none selected!
int toggled(); // toggled: Returns which item was toggled with spacebr or mouse click of check_list is not NULL
void set_current(int _index); // sets the current item in the list box
void set_first_item(int _index);
char *get_string(int _index);
void clear_all_items(); // deletes all the items in the list (makes them empty strings)
int add_string(char *str);
int sel_changed(); // returns > 0 if the selected item has changed
void set_new_list(int _numitems, char **_list);
// kazan
void set_drawframe(int mode);
int CurSize();
int MaxSize();
void RemoveFirstItem();
void ScrollEnd();
int set_bmaps(char *lbox_fname, char *b_up_fname, char *b_down_fname, char *sb_fname);
void link_hotspot(int up_button_num, int down_button_num);
};
#define WIN_BORDER 1
#define WIN_FILLED 2
#define WIN_SAVE_BG 4
#define WIN_DIALOG (4+2+1)
class UI_WINDOW
{
friend class UI_GADGET;
friend class UI_BUTTON;
friend class UI_KEYTRAP;
friend class UI_CHECKBOX;
friend class UI_RADIO;
friend class UI_SCROLLBAR;
friend class UI_LISTBOX;
friend class UI_INPUTBOX;
friend class UI_SLIDER2;
friend class UI_DOT_SLIDER;
friend class UI_DOT_SLIDER_NEW;
friend class UI_ICON;
protected:
int flags;
int x, y;
int w, h;
int f_id; // font id
int last_tooltip_hotspot;
uint last_tooltip_time;
int tt_group; // which tooltip group this window uses, or -1 if none
int ignore_gadgets;
UI_GADGET *first_gadget;
UI_GADGET *selected_gadget;
UI_GADGET *mouse_captured_gadget;
int mask_bmap_id; // bitmap id of the mask bitmap to define hotspots
int foreground_bmap_id; // bitmap id of the foreground bitmap to display
bitmap *mask_bmap_ptr; // pointer to bitmap of the mask
ubyte *mask_data; // points to raw mask bitmap data
int mask_w, mask_h; // width and height of the mask
UI_XSTR *xstrs[MAX_UI_XSTRS]; // strings for drawing in code instead of in artwork
int keypress; // filled in each frame
void capture_mouse(UI_GADGET *gadget = NULL);
void release_bitmaps(); // called internally when window destroys gadgets
void check_focus_switch_keys();
void do_dump_check();
void draw_xstrs(); // draw xstrs
void draw_one_xstr(UI_XSTR *xstr, int frame);
public:
UI_WINDOW(); // constructor
~UI_WINDOW(); // destructor
void set_mask_bmap(const char *fname);
void set_mask_bmap(int bmap, const char *name);
void set_foreground_bmap(const char *fname);
void create( int _x, int _y, int _w, int _h, int _flags, int _f_id = -1 );
int process( int key_in = -1,int process_mouse = 1);
void draw();
void draw_tooltip();
void draw_XSTR_forced(UI_GADGET *owner, int frame);
int get_current_hotspot();
void destroy();
ubyte *get_mask_data(int *w_md, int *h_md) { *w_md = mask_w; *h_md = mask_h; return mask_data; }
void render_tooltip(char *str);
void set_ignore_gadgets(int state);
void add_XSTR(const char *string, int _xstr_id, int _x, int _y, UI_GADGET *_assoc, int _color_type, int _font_id = -1);
void add_XSTR(UI_XSTR *xstr);
const char *(*tooltip_handler)(const char *text);
int last_keypress; // filled in each frame
int ttx, tty;
int use_hack_to_get_around_stupid_problem_flag;
};
// 2 extremely useful structs
typedef struct ui_button_info {
const char *filename;
int x, y, xt, yt;
int hotspot;
UI_BUTTON button; // because we have a class inside this struct, we need the constructor below..
ui_button_info(const char *name, int x1, int y1, int xt1, int yt1, int h) : filename(name), x(x1), y(y1), xt(xt1), yt(yt1), hotspot(h) {}
} ui_button_info;
int ui_getfilelist( int MaxNum, char **list, char *filespec );
void ui_sort_filenames( int n, char **list );
#endif
|