823c9f3105df2c85e5a53e40f161c6ac887642de
[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         add_item(new FolderListSort(mwindow, this));
46         update_titles();
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 FolderListFormat::FolderListFormat(MWindow *mwindow, FolderListMenu *menu)
57  : BC_MenuItem("")
58 {
59         this->mwindow = mwindow;
60         this->menu = menu;
61 }
62
63 int FolderListFormat::handle_event()
64 {
65         switch(mwindow->edl->session->folderlist_format) {
66         case FOLDERS_TEXT:
67                 mwindow->edl->session->folderlist_format = FOLDERS_ICONS;
68                 break;
69         case FOLDERS_ICONS:
70                 mwindow->edl->session->folderlist_format = FOLDERS_TEXT;
71                 break;
72         }
73
74         mwindow->awindow->gui->folder_list->update_format(
75                 mwindow->edl->session->folderlist_format, 1);
76         menu->update_titles();
77
78         return 1;
79 }
80
81
82 FolderListSort::FolderListSort(MWindow *mwindow, FolderListMenu *menu)
83  : BC_MenuItem(_("Sort items"))
84 {
85         this->mwindow = mwindow;
86         this->menu = menu;
87 }
88
89 int FolderListSort::handle_event()
90 {
91         mwindow->awindow->gui->sort_folders();
92         return 1;
93 }
94