hard edges rework, add hard edge in gwdw, config.ac nv/cuda tweaks, message log warn...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / labeledit.C
1 /*
2  * CINELERRA
3  * Copyright (C) 2006 Pierre Dumuid
4  * Copyright (C) 1997-2012 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 "bcdialog.h"
25 #include "labeledit.h"
26 #include "language.h"
27 #include "mwindow.h"
28 #include "mwindowgui.h"
29 #include "vwindow.h"
30 #include "vwindowgui.h"
31
32
33 LabelEdit::LabelEdit(MWindow *mwindow, AWindow *awindow, VWindow *vwindow)
34  : BC_DialogThread()
35 {
36         this->mwindow = mwindow;
37         this->awindow = awindow;
38         this->vwindow = vwindow;
39         label = 0;
40         label_edit_window = 0;
41 }
42
43 LabelEdit::~LabelEdit()
44 {
45         close_window();
46 }
47
48 void LabelEdit::start(Label *label, int x, int y)
49 {
50         this->label = label;
51         this->x = x;  this->y = y;
52
53         BC_DialogThread::start();
54 }
55
56 void LabelEdit::handle_close_event(int result)
57 {
58         label_edit_window = 0;
59 }
60
61
62 void LabelEdit::handle_done_event(int result)
63 {
64         if( !result ) {
65                 strcpy(label->textstr, label_edit_window->textbox->get_text());
66                 awindow->gui->async_update_assets();
67         }
68 }
69
70 BC_Window *LabelEdit::new_gui()
71 {
72         label_edit_window = new LabelEditWindow(mwindow, this);
73         label_edit_window->create_objects();
74         return label_edit_window;
75 }
76
77 LabelEditWindow::LabelEditWindow(MWindow *mwindow, LabelEdit *thread)
78  : BC_Window(_(PROGRAM_NAME ": Label Info"),
79         thread->x - 400/2, thread->y - 350/2,
80         400, 350, 400, 430, 0, 0, 1)
81 {
82         this->mwindow = mwindow;
83         this->thread = thread;
84 }
85
86 LabelEditWindow::~LabelEditWindow()
87 {
88 }
89
90 void LabelEditWindow::create_objects()
91 {
92         lock_window("LabelEditWindow::create_objects");
93         this->label = thread->label;
94
95         int x = 10, y = 10;
96         int x1 = x;
97         BC_Title *title;
98
99         add_subwindow(title = new BC_Title(x1, y, _("Label Text:")));
100         y += title->get_h() + 5;
101         add_subwindow(textbox = new LabelEditComments(this, x1, y, get_w() - x1 * 2,
102                 BC_TextBox::pixels_to_rows(this, MEDIUMFONT, get_h() - 10 - 40 - y)));
103
104         add_subwindow(new BC_OKButton(this));
105         add_subwindow(new BC_CancelButton(this));
106         show_window();
107         textbox->activate();
108         unlock_window();
109 }
110
111 LabelEditComments::LabelEditComments(LabelEditWindow *window, int x, int y, int w, int rows)
112  : BC_TextBox(x, y, w, rows, window->label->textstr,  1, MEDIUMFONT, 1)
113 {
114         this->window = window;
115 }
116
117 int LabelEditComments::handle_event()
118 {
119         return 1;
120 }
121