4 * Copyright (C) 2004 Nathan Kurz
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #ifndef BCRECENTLIST_H
23 #define BCRECENTLIST_H
26 #include "bclistbox.h"
27 #include "bctextbox.inc"
29 // Maintain a list of text items (up to 'max') from session to session.
30 // List automatically saved to Cinelerra_rc as 'RECENT_prefix_0', etc.
31 // Item value is written to 'text_box' when item is selected (if textbox set)
33 #define RECENT_MAX_ITEMS 10
34 #define RECENT_POPUP_HEIGHT 100
36 class BC_RecentList : public BC_ListBox
39 BC_RecentList(const char *type, BC_Hash *defaults,
40 BC_TextBox *textbox, int max,
41 int x, int y, int w, int h);
42 BC_RecentList(const char *type, BC_Hash *defaults);
43 BC_RecentList(const char *type, BC_Hash *defaults,
49 int load_items(const char *prefix = NULL);
50 int add_item(const char *prefix, char *text);
52 ArrayList<BC_ListBoxItem*> items;
59 #endif /* BCRECENTLIST_H */