[trunk] NicoCommentのプラグイン設定を変更するとクラッシュするのを修正; コード冒頭の著作権表記(年)を更新

git-svn-id: http://svn.sourceforge.jp/svnroot/lipsync@20 b1f601f4-4f45-0410-8980-aecacb008692
This commit is contained in:
kbinani 2010-04-11 06:29:55 +00:00
parent f054572c0d
commit 440f1fc321
98 changed files with 135 additions and 114 deletions

View File

@ -115,9 +115,7 @@ namespace Boare.Lib.AppUtil {
public AuthorListEntry[] AuthorList { public AuthorListEntry[] AuthorList {
set { set {
m_credit = value; m_credit = value;
#if DEBUG
GenerateAuthorList(); GenerateAuthorList();
#endif
} }
} }
@ -129,25 +127,49 @@ namespace Boare.Lib.AppUtil {
Dimension size = Boare.Lib.AppUtil.Util.measureString( "Qjqp", font ); Dimension size = Boare.Lib.AppUtil.Util.measureString( "Qjqp", font );
float width = this.Width; float width = this.Width;
float height = size.height; float height = size.height;
//StringFormat sf = new StringFormat(); System.Drawing.StringFormat sf = new System.Drawing.StringFormat();
m_scroll = new BufferedImage( (int)width, (int)(40f + m_credit.Length * height * 1.1f), BufferedImage.TYPE_INT_BGR ); m_scroll = new BufferedImage( (int)width, (int)(40f + m_credit.Length * height * 1.1f), BufferedImage.TYPE_INT_BGR );
Graphics2D g = m_scroll.createGraphics(); Graphics2D g = m_scroll.createGraphics();
//sf.Alignment = StringAlignment.Center; g.setColor( Color.white );
g.setFont( new Font( font_name, java.awt.Font.BOLD, (int)(font_size * 1.1f) ) ); g.fillRect( 0, 0, m_scroll.getWidth(), m_scroll.getHeight() );
sf.Alignment = System.Drawing.StringAlignment.Center;
Font f = new Font( font_name, java.awt.Font.BOLD, (int)(font_size * 1.1f) );
g.setFont( f );
if ( m_shadow_enablde ) { if ( m_shadow_enablde ) {
g.setColor( new Color( 0, 0, 0, 40 ) ); g.setColor( new Color( 0, 0, 0, 40 ) );
g.drawString( m_app_name, shadow_shift, shadow_shift ); //, width, height ), sf ); g.nativeGraphics.DrawString(
m_app_name,
f.font,
g.brush,
new System.Drawing.RectangleF( shadow_shift, shadow_shift, width, height ),
sf );
} }
g.setColor( Color.black ); g.setColor( Color.black );
g.drawString( m_app_name, 0f, 0f ); //, width, height ), sf ); g.nativeGraphics.DrawString(
m_app_name,
f.font,
g.brush,
new System.Drawing.RectangleF( 0f, 0f, width, height ),
sf );
for ( int i = 0; i < m_credit.Length; i++ ) { for ( int i = 0; i < m_credit.Length; i++ ) {
g.setFont( new Font( font_name, m_credit[i].getStyle(), font_size ) ); Font f2 = new Font( font_name, m_credit[i].getStyle(), font_size );
g.setFont( f2 );
if ( m_shadow_enablde ) { if ( m_shadow_enablde ) {
g.setColor( new Color( 0, 0, 0, 40 ) ); g.setColor( new Color( 0, 0, 0, 40 ) );
g.drawString( m_credit[i].getName(), 0f + shadow_shift, 40f + i * height * 1.1f + shadow_shift ); //, width, height ), sf ); g.nativeGraphics.DrawString(
m_credit[i].getName(),
f2.font,
g.brush,
new System.Drawing.RectangleF( 0f + shadow_shift, 40f + i * height * 1.1f + shadow_shift, width, height ),
sf );
} }
g.setColor( Color.black ); g.setColor( Color.black );
g.drawString( m_credit[i].getName(), 0f, 40f + i * height * 1.1f );// , width, height ), sf ); g.nativeGraphics.DrawString(
m_credit[i].getName(),
f2.font,
g.brush,
new System.Drawing.RectangleF( 0f, 40f + i * height * 1.1f, width, height ),
sf );
} }
} }

View File

@ -1,6 +1,6 @@
/* /*
* Common.cs * Common.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* CurveEditor.cs * CurveEditor.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* CurveEditor.designer.cs * CurveEditor.designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* NumericUpDownEx.Designer.cs * NumericUpDownEx.Designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* NumericUpDownEx.cs * NumericUpDownEx.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* AppManager.cs * AppManager.cs
* Copyright (c) 2008-2009 kbinani * Copyright (c) 2008-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* AviOutput.cs * AviOutput.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* AviOutput.designer.cs * AviOutput.designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* AviOutputArguments.cs * AviOutputArguments.cs
* Copyright (c) 2008-2009 kbinani * Copyright (c) 2008-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* AviReaderEx.cs * AviReaderEx.cs
* Copyright (c) 2008-2009 kbinani * Copyright (c) 2008-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* BarLineType.cs * BarLineType.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* BugReport.Designer.cs * BugReport.Designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* BugReport.cs * BugReport.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Character.cs * Character.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Character3.cs * Character3.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* CharacterConfigCollection.cs * CharacterConfigCollection.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* CharacterConfigSpecifier.cs * CharacterConfigSpecifier.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* ColorSet.cs * ColorSet.cs
* Copyright (c) 2009 kbinani * Copyright (c) 2009-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Command.cs * Command.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* CommandType.cs * CommandType.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* DisplacementControl.cs * DisplacementControl.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* DisplacementControl.designer.cs * DisplacementControl.designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* EditEntry.Designer.cs * EditEntry.Designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* EditEntry.cs * EditEntry.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* EditMode.cs * EditMode.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* EditingBounds.cs * EditingBounds.cs
* Copyright (c) 2009 kbinani * Copyright (c) 2009-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* EnvConfiguration.Designer.cs * EnvConfiguration.Designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* EnvConfiguration.cs * EnvConfiguration.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* EnvSettings.cs * EnvSettings.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FontConfig.cs * FontConfig.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Form1.cs * Form1.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *
@ -87,6 +87,7 @@ namespace LipSync {
new AuthorListEntry( "ほとほと" ), new AuthorListEntry( "ほとほと" ),
new AuthorListEntry( "IGASIO" ), new AuthorListEntry( "IGASIO" ),
new AuthorListEntry( "PEX" ), new AuthorListEntry( "PEX" ),
new AuthorListEntry( "みけCAT" ),
new AuthorListEntry(), new AuthorListEntry(),
new AuthorListEntry( "and you.", bocoree.java.awt.Font.ITALIC | bocoree.java.awt.Font.BOLD ), new AuthorListEntry( "and you.", bocoree.java.awt.Font.ITALIC | bocoree.java.awt.Font.BOLD ),
}; };
@ -1549,11 +1550,7 @@ namespace LipSync {
bocoree.java.awt.Color vers = new bocoree.java.awt.Color(); bocoree.java.awt.Color vers = new bocoree.java.awt.Color();
vers.color = Color.DimGray; vers.color = Color.DimGray;
m_version_form.VersionColor = vers; m_version_form.VersionColor = vers;
#if !DEBUG
bocoree.java.awt.image.BufferedImage img = new bocoree.java.awt.image.BufferedImage( 1, 1, bocoree.java.awt.image.BufferedImage.TYPE_INT_RGB );
img.m_image = AppManager.author_list;
m_version_form.Credit = img;
#endif
m_version_form.FormClosed += new FormClosedEventHandler( m_version_form_FormClosed ); m_version_form.FormClosed += new FormClosedEventHandler( m_version_form_FormClosed );
m_version_form.Show(); m_version_form.Show();
} }

View File

@ -1,6 +1,6 @@
/* /*
* Form1.designer.cs * Form1.designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Form1Util.cs * Form1Util.cs
* Copyright (c) 2008-2009 kbinani * Copyright (c) 2008-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Form1_EventHandler.cs * Form1_EventHandler.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FormCommandHistory.Designer.cs * FormCommandHistory.Designer.cs
* Copyright (c) 2008-2009 kbinani * Copyright (c) 2008-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FormCommandHistory.cs * FormCommandHistory.cs
* Copyright (c) 2008-2009 kbinani * Copyright (c) 2008-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FormCurveExport.Designer.cs * FormCurveExport.Designer.cs
* Copyright (c) 2009 kbinani * Copyright (c) 2009-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FormCurveExport.cs * FormCurveExport.cs
* Copyright (c) 2009 kbinani * Copyright (c) 2009-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FormObjectList.Designer.cs * FormObjectList.Designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FormObjectList.cs * FormObjectList.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FormPreview.Designer.cs * FormPreview.Designer.cs
* Copyright (c) 2008-2009 kbinani * Copyright (c) 2008-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FormPreview.cs * FormPreview.cs
* Copyright (c) 2008-2009 kbinani * Copyright (c) 2008-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FormSeriesImage.Designer.cs * FormSeriesImage.Designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FormSeriesImage.cs * FormSeriesImage.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FormSetFrameRate.Designer.cs * FormSetFrameRate.Designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* FormSetFrameRate.cs * FormSetFrameRate.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* GenerateCharacter.cs * GenerateCharacter.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* GenerateCharacter.designer.cs * GenerateCharacter.designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* IDrawObject.cs * IDrawObject.cs
* Copyright (c) 2009 kbinani * Copyright (c) 2009-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* IMultiLanguageControl.cs * IMultiLanguageControl.cs
* Copyright (c) 2008-2009 kbinani * Copyright (c) 2008-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* ImageEntry.cs * ImageEntry.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* InputBox.cs * InputBox.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* InputBox.designer.cs * InputBox.designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Item.cs * Item.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* MListView.Designer.cs * MListView.Designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* MListView.cs * MListView.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* PasteModeDialog.Designer.cs * PasteModeDialog.Designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* PasteModeDialog.cs * PasteModeDialog.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* PluginConfig.cs * PluginConfig.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* PluginInfo.cs * PluginInfo.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Position.cs * Position.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* PositionConverter.cs * PositionConverter.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Previewer.Designer.cs * Previewer.Designer.cs
* Copyright (c) 2008-2009 kbinani * Copyright (c) 2008-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Previewer.cs * Previewer.cs
* Copyright (c) 2008-2009 kbinani * Copyright (c) 2008-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Property.Designer.cs * Property.Designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Property.cs * Property.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* QuantizeMode.cs * QuantizeMode.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* RsiImporter.cs * RsiImporter.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* RsiReader.cs * RsiReader.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* RsiWriter.cs * RsiWriter.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* RspImporter.cs * RspImporter.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* ScoreUnit.cs * ScoreUnit.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* SelectCharacter.cs * SelectCharacter.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* SelectCharacter.designer.cs * SelectCharacter.designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* SetSize.cs * SetSize.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* SetSize.designer.cs * SetSize.designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Settings.cs * Settings.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* SettingsEx.cs * SettingsEx.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *
@ -951,9 +951,11 @@ namespace LipSync {
case CommandType.changePluginConfig: case CommandType.changePluginConfig:
ret = Command.GCommandChangePluginConfig( track, m_plugins_config[track].Config ); ret = Command.GCommandChangePluginConfig( track, m_plugins_config[track].Config );
m_plugins_config[command.track].Config = command.str; m_plugins_config[command.track].Config = command.str;
// キャラクタ描画用プラグインの場合は、該当キャラクタトラックのグループ番号に応じて、command.group(>=0)に値がセットされる // キャラクタ描画用プラグインの場合は、該当キャラクタトラックのグループ番号に応じて、command.group(>=0)に値がセットされる
if ( command.group >= 0 ) { if ( command.group >= 0 ) {
m_groups_character[command.group].Character.PluginConfig.Config = command.str; // 今のところ使えない
//m_groups_character[command.group].Character.PluginConfig.Config = command.str;
} }
AppManager.plugins[command.track].Instance.Config = command.str; AppManager.plugins[command.track].Instance.Config = command.str;
break; break;

View File

@ -1,6 +1,6 @@
/* /*
* TagForTreeNode.cs * TagForTreeNode.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Telop.cs * Telop.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* TimeSig.cs * TimeSig.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* TimeSigType.cs * TimeSigType.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* TimeTable.cs * TimeTable.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* TimeTableEntry.cs * TimeTableEntry.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* TimeTableGroup.cs * TimeTableGroup.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* TimeTableType.cs * TimeTableType.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* TrackSelecter.cs * TrackSelecter.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* TrackSelecter.designer.cs * TrackSelecter.designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* VersionBox.cs * VersionBox.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* VersionInfo.designer.cs * VersionInfo.designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* VowelType.cs * VowelType.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Winker.Designer.cs * Winker.Designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* Winker.cs * Winker.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* ZOrder.Designer.cs * ZOrder.Designer.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* ZOrder.cs * ZOrder.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -1,6 +1,6 @@
/* /*
* ZorderItem.cs * ZorderItem.cs
* Copyright (c) 2007-2009 kbinani * Copyright (c) 2007-2010 kbinani
* *
* This file is part of LipSync. * This file is part of LipSync.
* *

View File

@ -10,7 +10,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration( "" )] [assembly: AssemblyConfiguration( "" )]
[assembly: AssemblyCompany( "Boare" )] [assembly: AssemblyCompany( "Boare" )]
[assembly: AssemblyProduct( "LipSync" )] [assembly: AssemblyProduct( "LipSync" )]
[assembly: AssemblyCopyright( "Copyright (C) 2007-2009 kbinani. All Rights Reserved." )] [assembly: AssemblyCopyright( "Copyright (C) 2007-2010 kbinani. All Rights Reserved." )]
[assembly: AssemblyTrademark( "" )] [assembly: AssemblyTrademark( "" )]
[assembly: AssemblyCulture( "" )] [assembly: AssemblyCulture( "" )]
@ -30,4 +30,4 @@ using System.Runtime.InteropServices;
// Revision // Revision
// //
[assembly: AssemblyVersion( "1.0.0.0" )] [assembly: AssemblyVersion( "1.0.0.0" )]
[assembly: AssemblyFileVersion( "2.4.9_DRAFT_07Sep2009" )] [assembly: AssemblyFileVersion( "2.4.9_DRAFT_11Apr2010" )]