Update to gtk2_ardour Czech translation from Pavel Fric
[ardour.git] / gtk2_ardour / splash.cc
1 /*
2     Copyright (C) 2008 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <string>
21
22 #include "pbd/failed_constructor.h"
23 #include "pbd/file_utils.h"
24
25 #include "ardour/ardour.h"
26 #include "ardour/filesystem_paths.h"
27
28 #include "gui_thread.h"
29 #include "splash.h"
30
31 #include "i18n.h"
32
33 using namespace Gtk;
34 using namespace Glib;
35 using namespace PBD;
36 using namespace std;
37 using namespace ARDOUR;
38
39 Splash* Splash::the_splash = 0;
40
41 Splash::Splash ()
42 {
43         assert (the_splash == 0);
44         
45         std::string splash_file;
46
47         if (!find_file_in_search_path (ardour_data_search_path(), "splash.png", splash_file)) {
48                 cerr << "Cannot find splash screen image file\n";
49                 throw failed_constructor();
50         }
51
52         try {
53                 pixbuf = Gdk::Pixbuf::create_from_file (splash_file);
54         }
55
56         catch (...) {
57                 cerr << "Cannot construct splash screen image\n";
58                 throw failed_constructor();
59         }
60
61         darea.set_size_request (pixbuf->get_width(), pixbuf->get_height());
62         pop_front ();
63         set_position (WIN_POS_CENTER);
64         darea.add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
65         darea.set_double_buffered (false);
66
67         layout = create_pango_layout ("");
68         string str = "<b>";
69         string i18n = string_compose (_("%1 loading ..."), PROGRAM_NAME);
70         str += i18n;
71         str += "</b>";
72
73         layout->set_markup (str);
74
75         darea.show ();
76         darea.signal_expose_event().connect (sigc::mem_fun (*this, &Splash::expose));
77
78         add (darea);
79
80         set_default_size (pixbuf->get_width(), pixbuf->get_height());
81         set_resizable (false);
82         the_splash = this;
83
84         expose_done = false;
85
86         ARDOUR::BootMessage.connect (msg_connection, invalidator (*this), boost::bind (&Splash::boot_message, this, _1), gui_context());
87 }
88
89 Splash::~Splash ()
90 {
91         the_splash = 0;
92 }
93
94 void
95 Splash::pop_back_for (Gtk::Window& win)
96 {
97         set_keep_above (false);
98         get_window()->restack (win.get_window(), false);
99         win.signal_hide().connect (sigc::mem_fun (*this, &Splash::pop_front));
100 }
101
102 void
103 Splash::pop_front ()
104 {
105         set_keep_above (true);
106 }
107
108 void
109 Splash::on_realize ()
110 {
111         Window::on_realize ();
112         get_window()->set_decorations (Gdk::WMDecoration(0));
113         layout->set_font_description (get_style()->get_font());
114 }
115
116 bool
117 Splash::on_button_release_event (GdkEventButton* ev)
118 {
119         RefPtr<Gdk::Window> window = get_window();
120         
121         if (!window || ev->window != window->gobj()) {
122                 return false;
123         }
124         
125         hide ();
126         return true;
127 }
128
129 bool
130 Splash::expose (GdkEventExpose* ev)
131 {
132         RefPtr<Gdk::Window> window = darea.get_window();
133
134         /* note: height & width need to be constrained to the pixbuf size
135            in case a WM provides us with a screwy allocation
136         */
137
138         window->draw_pixbuf (get_style()->get_bg_gc (STATE_NORMAL), pixbuf,
139                              ev->area.x, ev->area.y,
140                              ev->area.x, ev->area.y,
141                              min ((pixbuf->get_width() - ev->area.x), ev->area.width),
142                              min ((pixbuf->get_height() - ev->area.y), ev->area.height),
143                              Gdk::RGB_DITHER_NONE, 0, 0);
144
145         Glib::RefPtr<Gtk::Style> style = darea.get_style();
146         Glib::RefPtr<Gdk::GC> white = style->get_white_gc();
147
148         window->draw_layout (white, 10, pixbuf->get_height() - 30, layout);
149        
150         Glib::signal_idle().connect (sigc::mem_fun (this, &Splash::idle_after_expose));
151
152         return true;
153 }
154
155 void
156 Splash::boot_message (std::string msg)
157 {
158         message (msg);
159 }
160
161 bool
162 Splash::idle_after_expose ()
163 {
164         expose_done = true;
165         return false;
166 }
167
168 void
169 Splash::display ()
170 {
171         bool was_mapped = is_mapped ();
172         
173         if (!was_mapped) {
174                 expose_done = false;
175         }
176
177         pop_front ();
178         present ();
179         
180         if (!was_mapped) {
181                 while (!expose_done) {
182                         gtk_main_iteration ();
183                 }
184         }
185 }
186
187 void
188 Splash::message (const string& msg)
189 {
190         string str ("<b>");
191         str += msg;
192         str += "</b>";
193
194         layout->set_markup (str);
195         Glib::RefPtr<Gdk::Window> win = darea.get_window();
196
197         if (win) {
198                 expose_done = false;
199                 
200                 win->invalidate_rect (Gdk::Rectangle (0, darea.get_height() - 30, darea.get_width(), 30), true);
201
202                 while (!expose_done) {
203                         gtk_main_iteration ();
204                 }
205         }
206 }