Use consistent font size for marker text, unset CAN_FOCUS on some more buttons, initial edit point clock is BBT. back to clearlooks for sae light theme.

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4146 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Nick Mainsbridge 2008-11-13 09:34:38 +00:00
parent d0ca995b4d
commit e00460b1d7
6 changed files with 17 additions and 3 deletions

View File

@ -73,7 +73,7 @@ style "verbose_canvas_cursor"
style "marker_text"
{
font_name = "%FONT_SMALL%"
font_name = "%FONT_SMALLER%"
}
style "time_axis_view_item_name"

View File

@ -73,7 +73,7 @@ style "verbose_canvas_cursor"
style "marker_text"
{
font_name = "%FONT_SMALL%"
font_name = "%FONT_SMALLER%"
}
style "time_axis_view_item_name"

View File

@ -117,7 +117,7 @@ style "default_base" = "medium_text"
base[INSENSITIVE] = "#4c5159"
base[SELECTED] = { 0.60, 0.60, 0.80 }
engine "default"
engine "clearlooks"
{
menubarstyle = 0 # 0 = flat, 1 = sunken, 2 = flat gradient
menuitemstyle = 0 # 0 = flat, 1 = 3d-ish (gradient), 2 = 3d-ish (button)

View File

@ -201,6 +201,14 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[])
ignore_dual_punch = false;
_mixer_on_top = false;
roll_button.unset_flags (Gtk::CAN_FOCUS);
stop_button.unset_flags (Gtk::CAN_FOCUS);
goto_start_button.unset_flags (Gtk::CAN_FOCUS);
goto_end_button.unset_flags (Gtk::CAN_FOCUS);
auto_loop_button.unset_flags (Gtk::CAN_FOCUS);
play_selection_button.unset_flags (Gtk::CAN_FOCUS);
rec_button.unset_flags (Gtk::CAN_FOCUS);
last_configure_time= 0;
shuttle_grabbed = false;

View File

@ -92,6 +92,11 @@ AutomationTimeAxisView::AutomationTimeAxisView (Session& s, boost::shared_ptr<Ro
clear_button.set_name ("TrackVisualButton");
hide_button.set_name ("TrackRemoveButton");
height_button.unset_flags (Gtk::CAN_FOCUS);
auto_button.unset_flags (Gtk::CAN_FOCUS);
clear_button.unset_flags (Gtk::CAN_FOCUS);
hide_button.unset_flags (Gtk::CAN_FOCUS);
controls_table.set_no_show_all();
ARDOUR_UI::instance()->tooltips().set_tip(height_button, _("track height"));

View File

@ -1223,6 +1223,7 @@ Editor::connect_to_session (Session *t)
edit_groups_changed ();
edit_point_clock.set_mode(AudioClock::BBT);
edit_point_clock.set_session (session);
zoom_range_clock.set_session (session);
_playlist_selector->set_session (session);