/* * CINELERRA * Copyright (C) 2008 Adam Williams * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ #ifndef BCPOPUPMENU_H #define BCPOPUPMENU_H #include "bcmenubar.inc" #include "bcmenuitem.inc" #include "bcmenupopup.inc" #include "bcsubwindow.h" // A menu that pops up in the middle of a window or under a button. class BC_PopupMenu : public BC_SubWindow { public: BC_PopupMenu(int x, int y, int w, const char *text, int use_title = 1, // Data for alternative title images VFrame **data = 0, // Alternative text margin int margin = -1); BC_PopupMenu(int x, int y, const char *text, int use_title = 1, // Data for alternative title images VFrame **data = 0); virtual ~BC_PopupMenu(); // Adds popupmenu_margin to width static int calculate_w(int margin, int text_width, int use_title); static int calculate_w(int text_width); static int calculate_h(VFrame **data = 0); virtual int handle_event() { return 0; }; virtual int draw_face(int dx, int color); char* get_text(); int initialize(); int add_item(BC_MenuItem *item); int del_item(BC_MenuItem *item); int remove_item(BC_MenuItem *item); int total_items(); BC_MenuItem* get_item(int i); int get_margin(); // Set title of menu void set_text(const char *text); // Set icon of menu. Disables text. void set_icon(BC_Pixmap *pixmap); // Draw title of menu int draw_title(int flush); int reposition_window(int x, int y); int deactivate(); int activate_menu(); int menu_activate(); int deactivate_menu(); int focus_out_event(); int repeat_event(int64_t duration); virtual int button_press_event(); virtual int button_release_event(); int cursor_leave_event(); int cursor_enter_event(); int cursor_motion_event(); int translation_event(); int drag_start_event(); int drag_stop_event(); int drag_motion_event(); int set_images(VFrame **data); private: char text[BCTEXTLEN]; int margin; VFrame **data; BC_Pixmap *images[9]; BC_Pixmap *icon; int highlighted; int popup_down; int use_title; BC_MenuPopup *menu_popup; // Remember cursor position when no title int button_press_x, button_press_y; int w_argument; int status; int pending; }; #endif