b607ebdb64fef8a266a942d7d02a1f609aeeb4d4
[ardour.git] / gtk2_ardour / utils.h
1 /*
2     Copyright (C) 2002 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     $Id$
19 */
20
21 #ifndef __ardour_gtk_utils_h__
22 #define __ardour_gtk_utils_h__
23
24 #include <string>
25 #include <cmath>
26 #include <ardour/types.h>
27 #include <libgnomecanvasmm/line.h>
28 #include <gdkmm/types.h>
29 #include "canvas.h"
30
31 namespace Gtk {
32         class Window;
33         class ComboBoxText;
34         class Paned;
35 }
36
37 static inline double 
38 gain_to_slider_position (ARDOUR::gain_t g)
39 {
40         if (g == 0) return 0;
41         return pow((6.0*log(g)/log(2.0)+192.0)/198.0, 8.0);
42
43 }
44
45 static inline ARDOUR::gain_t 
46 slider_position_to_gain (double pos)
47 {
48         /* XXX Marcus writes: this doesn't seem right to me. but i don't have a better answer ... */
49         if (pos == 0.0) return 0;
50         return pow (2.0,(sqrt(sqrt(sqrt(pos)))*198.0-192.0)/6.0);
51 }
52
53 std::string short_version (std::string, std::string::size_type target_length);
54 std::string fit_to_pixels (const std::string &, int pixel_width, const std::string & font);
55
56 int    atoi (const std::string&);
57 double atof (const std::string&);
58 void   url_decode (std::string&);
59 gint   just_hide_it (GdkEventAny*, Gtk::Window*);
60 void   allow_keyboard_focus (bool);
61
62 unsigned char* xpm2rgb  (const char** xpm, uint32_t& w, uint32_t& h);
63 unsigned char* xpm2rgba (const char** xpm, uint32_t& w, uint32_t& h);
64
65 ArdourCanvas::Points* get_canvas_points (std::string who, uint32_t npoints);
66
67 Pango::FontDescription get_font_for_style (std::string widgetname);
68
69 gint pane_handler (GdkEventButton*, Gtk::Paned*);
70 uint32_t rgba_from_style (std::string, uint32_t, uint32_t, uint32_t, uint32_t, std::string = "fg", int = Gtk::STATE_NORMAL, bool = true);
71
72 void decorate (Gtk::Window& w, Gdk::WMDecoration d);
73
74 bool canvas_item_visible (ArdourCanvas::Item* item);
75
76 void set_color (Gdk::Color&, int);
77
78 #endif /* __ardour_gtk_utils_h__ */