From: <pst...@us...> - 2008-03-30 16:09:20
|
Revision: 375 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=375&view=rev Author: pstieber Date: 2008-03-30 09:09:16 -0700 (Sun, 30 Mar 2008) Log Message: ----------- Removed "Help | About" from the tool bar. Modified Paths: -------------- trunk/jazz/src/TrackFrame.cpp Modified: trunk/jazz/src/TrackFrame.cpp =================================================================== --- trunk/jazz/src/TrackFrame.cpp 2008-03-30 15:37:16 UTC (rev 374) +++ trunk/jazz/src/TrackFrame.cpp 2008-03-30 16:09:16 UTC (rev 375) @@ -175,7 +175,6 @@ { wxID_REDO, false, redo_xpm, "redo"}, { wxID_RESET, false, panic_xpm, "all notes off"}, { wxID_HELP_CONTENTS, false, help_xpm, "help" }, - { wxID_ABOUT, false, help_xpm, "about" }, { JZToolBar::eToolBarEnd } }; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2008-04-06 23:00:41
|
Revision: 430 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=430&view=rev Author: pstieber Date: 2008-04-06 16:00:36 -0700 (Sun, 06 Apr 2008) Log Message: ----------- Updated the include path to the synthesizer dialog. Modified Paths: -------------- trunk/jazz/src/TrackFrame.cpp Modified: trunk/jazz/src/TrackFrame.cpp =================================================================== --- trunk/jazz/src/TrackFrame.cpp 2008-04-06 22:54:03 UTC (rev 429) +++ trunk/jazz/src/TrackFrame.cpp 2008-04-06 23:00:36 UTC (rev 430) @@ -36,7 +36,7 @@ #include "Configuration.h" #include "Harmony.h" #include "Dialogs/MetronomeSettingsDialog.h" -#include "SynthesizerSettingsDialog.h" +#include "Dialogs/SynthesizerSettingsDialog.h" #include "AboutDialog.h" // These are the tool bar icons. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2008-04-14 17:19:16
|
Revision: 462 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=462&view=rev Author: pstieber Date: 2008-04-14 10:19:13 -0700 (Mon, 14 Apr 2008) Log Message: ----------- Added the Linux version of setting the MIDI device. Modified Paths: -------------- trunk/jazz/src/TrackFrame.cpp Modified: trunk/jazz/src/TrackFrame.cpp =================================================================== --- trunk/jazz/src/TrackFrame.cpp 2008-04-14 17:18:22 UTC (rev 461) +++ trunk/jazz/src/TrackFrame.cpp 2008-04-14 17:19:13 UTC (rev 462) @@ -570,8 +570,8 @@ //----------------------------------------------------------------------------- void JZTrackFrame::OnSettingsMidiDevice(wxCommandEvent& Event) { - long InputDevice, OutputDevice; #ifdef __WXMSW__ + long InputDevice, OutputDevice; gpConfig->Get(C_WinInputDevice, InputDevice); gpConfig->Get(C_WinOutputDevice, OutputDevice); JZWindowsPlayer::SettingsDlg(InputDevice, OutputDevice); @@ -580,13 +580,12 @@ "Info", wxOK); #else -/* if (gpConfig->GetValue(C_MidiDriver) == eMidiDriverOss) { - int Device = mpMidiPlayer->FindMidiDevice(); + int Device = gpMidiPlayer->FindMidiDevice(); if (Device >= 0) { - SaveMidiDeviceSettings(Device); + gpConfig->Put(C_Seq2Device, Device); ::wxMessageBox( "Restart Jazz++ to activate changes in device settings", "Info", @@ -597,7 +596,6 @@ ::wxMessageBox("No midi device found", "Info", wxOK); } } -*/ #endif } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <pst...@us...> - 2008-06-11 15:03:06
|
Revision: 596 http://jazzplusplus.svn.sourceforge.net/jazzplusplus/?rev=596&view=rev Author: pstieber Date: 2008-06-11 08:03:03 -0700 (Wed, 11 Jun 2008) Log Message: ----------- Added a "Help | Contents" menu entry to the track frame. Modified Paths: -------------- trunk/jazz/src/TrackFrame.cpp Modified: trunk/jazz/src/TrackFrame.cpp =================================================================== --- trunk/jazz/src/TrackFrame.cpp 2008-06-11 15:01:58 UTC (rev 595) +++ trunk/jazz/src/TrackFrame.cpp 2008-06-11 15:03:03 UTC (rev 596) @@ -360,6 +360,7 @@ #endif wxMenu* mpHelpMenu = new wxMenu; + mpHelpMenu->Append(wxID_HELP_CONTENTS, "&Contents"); // mpHelpMenu->Append(MEN_HELP_JAZZ, "&Jazz"); // mpHelpMenu->Append(MEN_HELP_TWIN, "&Trackwin"); // mpHelpMenu->Append(MEN_HELP_MOUSE, "&Mouse"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |