0eb39c2a77a1a766108fe3871f655851c4175a83
[goodguy/history.git] / cinelerra-5.1 / cinelerra / folderlistmenu.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
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 #include "awindow.h"
23 #include "awindowgui.h"
24 #include "folderlistmenu.h"
25 #include "edl.h"
26 #include "edlsession.h"
27 #include "language.h"
28 #include "mwindow.h"
29
30
31 FolderListMenu::FolderListMenu(MWindow *mwindow, AWindowGUI *gui)
32  : BC_PopupMenu(0, 0, 0, "", 0)
33 {
34         this->mwindow = mwindow;
35         this->gui = gui;
36 }
37
38 FolderListMenu::~FolderListMenu()
39 {
40 }
41
42 void FolderListMenu::create_objects()
43 {
44         add_item(format = new FolderListFormat(mwindow, this));
45         update_titles();
46 }
47
48
49 void FolderListMenu::update_titles()
50 {
51         format->set_text(mwindow->edl->session->folderlist_format == FOLDERS_TEXT ?
52                 (char*)_("Display icons") : (char*)_("Display text"));
53 }
54
55
56
57 FolderListFormat::FolderListFormat(MWindow *mwindow, FolderListMenu *menu)
58  : BC_MenuItem("")
59 {
60         this->mwindow = mwindow;
61         this->menu = menu;
62 }
63
64 int FolderListFormat::handle_event()
65 {
66         switch(mwindow->edl->session->folderlist_format) {
67         case FOLDERS_TEXT:
68                 mwindow->edl->session->folderlist_format = FOLDERS_ICONS;
69                 break;
70         case FOLDERS_ICONS:
71                 mwindow->edl->session->folderlist_format = FOLDERS_TEXT;
72                 break;
73         }
74
75         mwindow->awindow->gui->folder_list->update_format(
76                 mwindow->edl->session->folderlist_format, 1);
77         menu->update_titles();
78
79         return 1;
80 }
81