fix rect redraw problem(s); make zoom range rect visible again at the right time; apply tim's window title patch

git-svn-id: svn://localhost/ardour2/trunk@1617 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2007-03-18 16:45:43 +00:00
parent c89eaf0297
commit c69ef10067
18 changed files with 177 additions and 77 deletions

View file

@ -32,12 +32,16 @@
#include <gtkmm/stock.h>
#include <gdkmm/cursor.h>
#include <gtkmm2ext/window_title.h>
using namespace Gtkmm2ext;
#include "opts.h"
NewSessionDialog::NewSessionDialog()
: ArdourDialog ("session control")
{
session_name_label = Gtk::manage(new class Gtk::Label(_("Name :")));
session_name_label = Gtk::manage(new class Gtk::Label(_("Name :")));
m_name = Gtk::manage(new class Gtk::Entry());
m_name->set_text(GTK_ARDOUR::session_name);
@ -338,7 +342,11 @@ NewSessionDialog::NewSessionDialog()
get_vbox()->set_homogeneous(false);
get_vbox()->set_spacing(0);
get_vbox()->pack_start(*m_notebook, Gtk::PACK_SHRINK, 0);
set_title(_("ardour: session control"));
WindowTitle title(Glib::get_application_name());
title += _("Session Control");
set_title(title.get_string());
//set_modal(false);
//property_window_position().set_value(Gtk::WIN_POS_NONE);
set_resizable(false);