4 * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
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 MENUATTACHTRANSITION_H
23 #define MENUATTACHTRANSITION_H
28 #include "mwindow.inc"
29 #include "plugindialog.inc"
31 class TransitionDialogName;
32 class TransitionDialogThread;
33 class TransitionDialog;
35 class MenuAttachTransition : public BC_MenuItem
38 MenuAttachTransition(MWindow *mwindow, int data_type);
39 ~MenuAttachTransition();
45 TransitionDialogThread *thread;
49 class TransitionSetDefault : public BC_GenericButton
52 TransitionSetDefault(TransitionDialog *window, int x, int y);
53 ~TransitionSetDefault();
56 TransitionDialog *window;
59 class TransitionDefaultText : public BC_TextBox
62 TransitionDefaultText(TransitionDialog *window,
63 int x, int y, int w, const char *text);
64 ~TransitionDefaultText();
66 TransitionDialog *window;
70 class TransitionDialogThread : public BC_DialogThread
73 TransitionDialogThread(MWindow *mwindow, int data_type);
74 ~TransitionDialogThread();
76 void handle_close_event(int result);
79 char transition_title[BCTEXTLEN];
80 char transition_title_untranslated[BCTEXTLEN];
84 ArrayList<BC_ListBoxItem*> transition_names;
89 class TransitionDialog : public BC_Window
92 TransitionDialog(MWindow *mwindow,
93 TransitionDialogThread *thread,
97 void create_objects();
98 int resize_event(int w, int h);
101 TransitionDialogThread *thread;
102 TransitionDialogName *name_list;
103 BC_Title *name_title;
104 TransitionSetDefault *set_default;
105 TransitionDefaultText *set_default_text;
108 class TransitionDialogName : public BC_ListBox
111 TransitionDialogName(TransitionDialogThread *thread,
112 ArrayList<BC_ListBoxItem*> *standalone_data,
118 int selection_changed();
119 TransitionDialogThread *thread;