additional Andrew provided Termux mods +
[goodguy/cinelerra.git] / cinelerra-5.1 / guicast / bcrecentlist.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2004 Nathan Kurz
5  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #ifndef BCRECENTLIST_H
23 #define BCRECENTLIST_H
24
25 #include "bchash.inc"
26 #include "bclistbox.h"
27 #include "bctextbox.inc"
28
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)
32
33 #define RECENT_MAX_ITEMS 10
34 #define RECENT_POPUP_HEIGHT 100
35
36 class BC_RecentList : public BC_ListBox
37 {
38  public:
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,
44                       BC_TextBox *textbox);
45
46         ~BC_RecentList();
47
48         int handle_event();
49         int load_items(const char *prefix = NULL);
50         int add_item(const char *prefix, const char *text);
51
52         ArrayList<BC_ListBoxItem*> items;
53  private:
54         const char *type;
55         BC_TextBox *textbox;
56         BC_Hash *defaults;
57 };
58
59 #endif /* BCRECENTLIST_H */